diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-06-04 17:19:11 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-06-04 17:19:14 +0200 |
commit | a2dcf8d7c0866b2b919dd583008c50e609beb2d6 (patch) | |
tree | 0be28628f67e033969414e1a883e37f12e9dc2f8 /dev-python/jsonschema | |
parent | dev-python/rfc3986-validator: Enable py3.10 (diff) | |
download | gentoo-a2dcf8d7c0866b2b919dd583008c50e609beb2d6.tar.gz gentoo-a2dcf8d7c0866b2b919dd583008c50e609beb2d6.tar.bz2 gentoo-a2dcf8d7c0866b2b919dd583008c50e609beb2d6.zip |
dev-python/jsonschema: Enable py3.10, clean up
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/jsonschema')
-rw-r--r-- | dev-python/jsonschema/jsonschema-3.2.0.ebuild | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/dev-python/jsonschema/jsonschema-3.2.0.ebuild b/dev-python/jsonschema/jsonschema-3.2.0.ebuild index 64e6301f0482..0c4030cc4684 100644 --- a/dev-python/jsonschema/jsonschema-3.2.0.ebuild +++ b/dev-python/jsonschema/jsonschema-3.2.0.ebuild @@ -3,7 +3,8 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{8..10} ) +DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 @@ -14,18 +15,14 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="test" BDEPEND=" dev-python/attrs[${PYTHON_USEDEP}] dev-python/pyrsistent[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] dev-python/six[${PYTHON_USEDEP}] $(python_gen_cond_dep ' dev-python/importlib_metadata[${PYTHON_USEDEP}] - ' python{2_7,3_{5,6,7}} pypy{,3}) - $(python_gen_cond_dep \ - 'dev-python/functools32[${PYTHON_USEDEP}]' -2) + ' pypy3) test? ( dev-python/twisted[${PYTHON_USEDEP}] ) " @@ -39,19 +36,12 @@ RDEPEND="${BDEPEND} dev-python/rfc3339-validator[${PYTHON_USEDEP}] " -RESTRICT="!test? ( test )" +BDEPEND+=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] +" PATCHES=( "${FILESDIR}"/${P}-add-webcolors-1.11-compat.patch ) distutils_enable_tests unittest - -python_prepare_all() { - # avoid a setuptools_scm dependency - sed -i "s:use_scm_version=True:version='${PV}',name='${PN//-/.}':" setup.py || die - sed -r -i "s:setuptools_scm[[:space:]]*([><=]{1,2}[[:space:]]*[0-9.a-zA-Z]+|)[[:space:]]*::" \ - setup.cfg || die - - distutils-r1_python_prepare_all -} |