diff options
author | Andrew Ammerlaan <andrewammerlaan@riseup.net> | 2021-01-02 14:00:32 +0100 |
---|---|---|
committer | Horea Christian <chr@chymera.eu> | 2021-01-02 23:30:37 -0500 |
commit | d6133943e08c64daf155af08523fd1221fedc6dd (patch) | |
tree | bb9277099b8f18ef281fab2c144fb2f78d64f1ab /dev-python/delegator | |
parent | dev-python/matrix2latex: bump python targets, enable tests and sphinx (diff) | |
download | sci-d6133943e08c64daf155af08523fd1221fedc6dd.tar.gz sci-d6133943e08c64daf155af08523fd1221fedc6dd.tar.bz2 sci-d6133943e08c64daf155af08523fd1221fedc6dd.zip |
dev-python/delegator: drop py3.6, keyword x86
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
Signed-off-by: Horea Christian <chr@chymera.eu>
Diffstat (limited to 'dev-python/delegator')
-rw-r--r-- | dev-python/delegator/Manifest | 2 | ||||
-rw-r--r-- | dev-python/delegator/delegator-0.1.1.ebuild | 21 |
2 files changed, 7 insertions, 16 deletions
diff --git a/dev-python/delegator/Manifest b/dev-python/delegator/Manifest index dcc9ef698..674027f35 100644 --- a/dev-python/delegator/Manifest +++ b/dev-python/delegator/Manifest @@ -1 +1 @@ -DIST delegator-0.1.1.tar.gz 5518 BLAKE2B 668bbb210b27f4d6b694901f7ca564f0fc5a0e743dc145deb819f154316de231870a54c43e7bad3e8b1cf02194df9fe35adafd382f2304419d7cc8a7e3ef21f0 SHA512 fbf9690d877f3a3d8514ebac209c4eccba81dbed6fef5beb9e838db9b16ed988667bc98991d8c0f4691697c0b69a7d0e3e85e15a622f65a82e153401ffe352b1 +DIST delegator.py-0.1.1.tar.gz 6260 BLAKE2B 2a5c70aa0e07390e801e69ba4ce130ea8da8d98f9dc6bc43e34fdf19386c0402c1d5ba128878c9c7b3bda9f99eeb6aab1b26160e8dab5a4945b411a7dffc9dcb SHA512 7af16f553fafc272056b1bd715ff41c821e0eeccfd6c5e5dcec819333373c9f7daaa95afe9b9aa796244f280869ccb1ddacb075b9fa196ed47a6699096abc143 diff --git a/dev-python/delegator/delegator-0.1.1.ebuild b/dev-python/delegator/delegator-0.1.1.ebuild index 202272a97..f56de2340 100644 --- a/dev-python/delegator/delegator-0.1.1.ebuild +++ b/dev-python/delegator/delegator-0.1.1.ebuild @@ -1,29 +1,20 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{6..9} ) +PYTHON_COMPAT=( python3_{7..9} ) inherit distutils-r1 DESCRIPTION="Subprocesses for Humans 2.0." HOMEPAGE="https://github.com/amitt001/delegator.py" -SRC_URI="https://github.com/amitt001/delegator.py/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}.py/${PN}.py-${PV}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64" -IUSE="test" -RESTRICT="test" +KEYWORDS="~amd64 ~x86" -DEPEND=" - test? ( dev-python/pytest[${PYTHON_USEDEP}] ) - " -RDEPEND="" +RDEPEND="dev-python/pexpect[${PYTHON_USEDEP}]" -S="${WORKDIR}/delegator.py-${PV}" - -python_test() { - pytest -vv || die "Tests failed under ${EPYTHON}" -} +S="${WORKDIR}/${PN}.py-${PV}" |