From bb262580ec0b56a32797f121e627928d103e6bb1 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 30 Dec 2023 23:46:05 +0000 Subject: gentoo auto-resync : 30:12:2023 - 23:46:05 --- dev-python/dns-lexicon/Manifest | 2 - dev-python/dns-lexicon/dns-lexicon-3.16.1.ebuild | 71 ------------------------ 2 files changed, 73 deletions(-) delete mode 100644 dev-python/dns-lexicon/dns-lexicon-3.16.1.ebuild (limited to 'dev-python/dns-lexicon') diff --git a/dev-python/dns-lexicon/Manifest b/dev-python/dns-lexicon/Manifest index e0e5c6ba68ef..9a1cc71a5ea1 100644 --- a/dev-python/dns-lexicon/Manifest +++ b/dev-python/dns-lexicon/Manifest @@ -1,5 +1,3 @@ -DIST dns-lexicon-3.16.1.gh.tar.gz 6199830 BLAKE2B 0965fbb325232e7d0f8cc5f0eb34eb8821b42de4aa16e7e96adb8bd88e329756768347a3a174daeccac6d4576f7b88f252516a4b3a416c0be23b4ec78525e472 SHA512 7cf2392ec94871076f13e443a6f8c1e9486ceed44c7a23f28e29a98ad0ee8b5f3ae534d3627b4f04fc77894059a2f8a49b12bae3f6faa52a4cbd175bd6cd6e99 DIST dns-lexicon-3.17.0.gh.tar.gz 6200497 BLAKE2B 8f423d4d44517b3186ec7f5cfc5d1e0560d4c98360f8a9d6caab429e0b0e5abe8ee42545b0d7c4cdaf1e2a6a9af41b095198144fda386a207f4f98c7693bb2ba SHA512 1bc182f5881d6acfac72b84331ba50da1219178d274c92e532ed11e73aa79696681d28a002cd1e23f48590953f48e50b62c2ef2db020a07ecf88547717508c0c -EBUILD dns-lexicon-3.16.1.ebuild 1905 BLAKE2B c5fabe1777226bbbba6da9efabf3f6008ab9c2471c6fb90b0149defd3ceedcb35a060d9d46f498aecd3c3967a90ef28027e27ed6523dc52eafafeda1d6b1ae4e SHA512 fc6165145019d12e814c9b54dfee7c9dbecf3e0420cd0dac7da1737969a177a972b090fa6195d812cd6514b678f008f2d7db2527b9d6f1a33fe670e3e88c3793 EBUILD dns-lexicon-3.17.0.ebuild 1924 BLAKE2B a2108951cb37dee0b5dfd79f487095f61ff8423b0de47b194962d4f169ec66f1a46bce74a7dbd997abbe12034b56d6d8ab929b84819bc250898c0dc91013c5fc SHA512 84957b8ca26cf78e56e8eb436297aac121630c0b5babf41d6a6b8535de4be6cc1a0407feb50aa067fd218a7e90dab09caa174698219d98f1001722412bfdcdda MISC metadata.xml 541 BLAKE2B a22266eac0bc7b4c22d9552cf64cbf88bbc1c2953e3ef0daaf059b81519909e0f8808e0d74cec6db3296e43f98082d57b8ae3779d694432e8578112ac18c3ea6 SHA512 79e2b43a685bfcc8dace1faa1c1a08cc648b39a3fef2834a57b6e801f72e7309276604253089db7a2fbe1d5d776b2ba1427c90a9cb9c44a0c1b2812d4e1901db diff --git a/dev-python/dns-lexicon/dns-lexicon-3.16.1.ebuild b/dev-python/dns-lexicon/dns-lexicon-3.16.1.ebuild deleted file mode 100644 index c3b422c0944f..000000000000 --- a/dev-python/dns-lexicon/dns-lexicon-3.16.1.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{10..12} ) - -inherit distutils-r1 optfeature - -DESCRIPTION="Manipulate DNS records on various DNS providers in a standardized/agnostic way" -HOMEPAGE=" - https://github.com/AnalogJ/lexicon/ - https://pypi.org/project/dns-lexicon/ -" -SRC_URI=" - https://github.com/AnalogJ/lexicon/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" -S="${WORKDIR}/lexicon-${PV}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - dev-python/beautifulsoup4[${PYTHON_USEDEP}] - dev-python/cryptography[${PYTHON_USEDEP}] - >=dev-python/pyotp-2[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/tldextract[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - >=dev-python/boto3-1.25[${PYTHON_USEDEP}] - dev-python/dnspython[${PYTHON_USEDEP}] - dev-python/zeep[${PYTHON_USEDEP}] - dev-python/vcrpy[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -EPYTEST_IGNORE=( - # Requires the "localzone" module - tests/providers/test_localzone.py - # Requires the "softlayer" module - tests/providers/test_softlayer.py - # Requires the "transip" module - tests/providers/test_transip.py - # Requires the "oci" module - tests/providers/test_oci.py - # Uses tldextract which needs Internet access to download its database - tests/providers/test_auto.py - # All recordings seem to be broken - tests/providers/test_namecheap.py - # Broken by minor vcrpy / urllib3-2 incompatibility - # https://github.com/kevin1024/vcrpy/issues/714 - tests/providers/test_route53.py -) - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]]; then - optfeature_header \ - "Install the following packages to enable support for additional DNS providers:" - optfeature Gransy dev-python/zeep - optfeature Route53 dev-python/boto3 - optfeature DDNS dev-python/dnspython - fi -} -- cgit v1.2.3