diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-05-31 20:59:14 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-05-31 20:59:14 +0100 |
commit | e748ba9741f6540f4675c23e3e37b73e822c13a4 (patch) | |
tree | 23dece8beabb3a3d7c6c0273b0eb40b21c62a889 /dev-python/ropemode | |
parent | 908778078736bd36f7a60a2d576d415cb8e000fa (diff) |
gentoo resync : 31.05.2021
Diffstat (limited to 'dev-python/ropemode')
-rw-r--r-- | dev-python/ropemode/Manifest | 2 | ||||
-rw-r--r-- | dev-python/ropemode/ropemode-0.5.ebuild | 15 |
2 files changed, 7 insertions, 10 deletions
diff --git a/dev-python/ropemode/Manifest b/dev-python/ropemode/Manifest index f06ed20da1d7..0508b59ae86b 100644 --- a/dev-python/ropemode/Manifest +++ b/dev-python/ropemode/Manifest @@ -1,3 +1,3 @@ DIST ropemode-0.5.tar.gz 15328 BLAKE2B 051c92a6105c0226c2a2daafbb55485327fcb8777467fc4ff86e1491f9fbbe39cec90100c212ebc64d08d6b1803638597eea0852222f29187b6fe92542a80b3c SHA512 50740982a731045734150171e0c3ae26ccf64bef4699fc7062204c68750b760a373d5b2b0e00b8ba8057d3955059ca1dce2a41cc1878775698184d78f921b76c -EBUILD ropemode-0.5.ebuild 810 BLAKE2B 17a68cc74c05233118cbf7651e775f27f517b2234b60d54ecca270417700fe664a9f8cb1f5d8f9a52c0ebe3f8200e58c187f73299e76de9a4268d894ba837d71 SHA512 a6e079c5439bb5668d750c2a5cf673163d7b41b20f31a140299a522e2d7124ade4d8200c3fbf9c1b6f2b44bc7cd7796e4abf962bf57ad8129bced293d326dcd3 +EBUILD ropemode-0.5.ebuild 660 BLAKE2B 809cc6be9319601dd03dbbabfac0f5ac570cf7ed5345a346ede517ae4c74d9f3c3242d9cfcd2f7e89c985f8da0299f493f946ce04437578afe4901b8c6c9009b SHA512 e188b470f4bd804ceff4b8e7496a4b18a45368b47bef39e6c790416a1a998d8092d24e9bd898fd52b28c93d7debf2baa1df53325fdfe8c9de8bb78066b983380 MISC metadata.xml 371 BLAKE2B 74b3b1353d032431c5e82332cb821f124c2b55ddfbeb605deb8c04a14a32063c354125748c6576b808c21468446620beaa1011dd2e6130e7a68568909d92e68d SHA512 49cea17b2dda7be620a34c956349a316e71ddfca6f93b5c9130a47326787ac67f22cd4421cc1a84882756bb1de07d34b42443bbd2f8759348605cfb241a657bd diff --git a/dev-python/ropemode/ropemode-0.5.ebuild b/dev-python/ropemode/ropemode-0.5.ebuild index eb540c46a0a4..52d9fc458cb5 100644 --- a/dev-python/ropemode/ropemode-0.5.ebuild +++ b/dev-python/ropemode/ropemode-0.5.ebuild @@ -1,28 +1,25 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -# Currently (2020-11-04) rope is blocking -# support for python 3.9. -# For details see -# https://github.com/python-rope/rope/issues/299 -PYTHON_COMPAT=( python3_{7,8} ) +PYTHON_COMPAT=( python3_{7..9} ) inherit distutils-r1 DESCRIPTION="A helper for using rope refactoring library in IDEs" HOMEPAGE="https://github.com/python-rope/ropemode https://pypi.org/project/ropemode/" SRC_URI="https://github.com/python-rope/ropemode/archive/${PV}.tar.gz -> ${P}.tar.gz" -# pypi releases don't include tests -#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" RDEPEND="dev-python/rope[${PYTHON_USEDEP}]" +BDEPEND="test? ( ${RDEPEND} )" python_test() { - "${PYTHON}" ropemodetest.py || die "tests failed with ${EPYTHON}" + "${PYTHON}" ropemodetest.py -v || die "tests failed with ${EPYTHON}" } |