dev-python/pysaml2: add 7.1.2, drop 7.1.0

Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
Alessandro Barbieri
2022-03-14 03:28:14 +01:00
parent 991de7b1b7
commit b9249a5886
2 changed files with 16 additions and 14 deletions

View File

@@ -1 +1 @@
DIST pysaml2-7.1.0.tar.gz 6014410 BLAKE2B 0ba8645d30aed9e1403dab25ab2a81984bfe8777750e25def242fbc3f2f2d5bc00559e5d911d7593c7bf2d6dfb8224533adfd5396fd713091b5881fafb50eb3b SHA512 7b4016221bba17b3819e4b8ad0b7c2c4f3b44035998f3357473c643d96b8d2b31226d83a2b5df06618a9891bf06a9a59a35cbdbe8cbe622680d399dec478039c
DIST pysaml2-7.1.2.tar.gz 6017150 BLAKE2B e14bff119e5f6e477244820887ed76531acad5d7207cfc6ca398eaeaa0f5649e168bd6322d50e29560e8ad78e8da66d47b9d293ffcedee4358e288640931df96 SHA512 cf13ef0f74785bac357b2871f1ab521e60720cb236881fbc6c93d0eaca5323d198952392fa8a13850060a54757b1ff06a959e723bc7aeb5db9c8b2522b3c859b

View File

@@ -1,9 +1,10 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python implementation of SAML Version 2 to be used in a WSGI environment"
@@ -15,30 +16,31 @@ SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-python/cryptography[${PYTHON_USEDEP}]
>=dev-python/cryptography-1.4[${PYTHON_USEDEP}]
dev-python/defusedxml[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
dev-python/python-xmlsec[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
>=dev-python/requests-1.0.0[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
dev-python/xmlschema[${PYTHON_USEDEP}]
$(python_gen_cond_dep \
'dev-python/importlib_resources[${PYTHON_USEDEP}]' python3.8)
$(python_gen_cond_dep 'dev-python/importlib_resources[${PYTHON_USEDEP}]' python3.8)
"
BDEPEND="
test? (
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pyasn1[${PYTHON_USEDEP}]
>=dev-python/pymongo-3[${PYTHON_USEDEP}]
dev-python/responses[${PYTHON_USEDEP}]
dev-python/toml[${PYTHON_USEDEP}]
)
"
BDEPEND="test? (
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pyasn1[${PYTHON_USEDEP}]
dev-python/pymongo[${PYTHON_USEDEP}]
dev-python/responses[${PYTHON_USEDEP}]
dev-python/toml[${PYTHON_USEDEP}]
)"
distutils_enable_tests --install pytest
python_prepare_all() {
# No module named 'pymongo.mongo_replica_set_client'
# No module named 'pymongo.mongo_replica_set_client' because pymongo should be <4 but we only have >=4
rm tests/test_{75_mongodb,76_metadata_in_mdb}.py || die
distutils-r1_python_prepare_all
}