back to updates

This commit is contained in:
Mario Fetka
2021-06-30 18:45:43 +02:00
parent 7576f0a9e2
commit 701156bcf9
103 changed files with 2590 additions and 688 deletions

View File

@@ -0,0 +1,2 @@
DIST pypubsub-4.0.3.zip 220240 BLAKE2B 6f155bb5a3e165f28c76dcd7f9b3bd8a18fb0c13db77254abd4eda02cda95a5bb2a3295e82ec4b6e68461c85f240045d84ab27dd7565826f75b32cf761134079 SHA512 a5b12c308ec6be5596b4c4cf71f735f583ab96ad9de9841fd97e1bae33a6f14566f610a9cbccd567d427cd037c96609528679cf90f3c6bb90afd5d841341f0b4
EBUILD pypubsub-4.0.3.ebuild 753 BLAKE2B 3b5704145dfda773b726a54338471ea2cddff4207065ff0e329969099a8c06cccc0f9199e83b8f2f75eb49841f2bd9a0d47de547e2c8b10b46543af4ed055d0e SHA512 f50ff390e8bed16fda65d0114d0ac9f2c9a89ad6d5b15442b7eafe2d8d3bd132a94250e953ab3c8dfc51dbb419c36fcda369b269ea971f4936aaa4c8f6c60f77

View File

@@ -0,0 +1,31 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Python Publish-Subscribe Package"
HOMEPAGE="https://github.com/schollii/pypubsub https://pypi.org/project/PyPubSub/"
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
SRC_URI="https://github.com/schollii/${PN}/archive/v${PV}.zip -> ${P}.zip"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}