summaryrefslogtreecommitdiff
path: root/dev-python/aiodns
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-06-24 14:47:38 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-06-24 14:47:38 +0100
commitb4d43e8c611df4a8061b6f88d9e9f6b1e3c83903 (patch)
tree911928b566777494d08ebe2c16cb64f15af71901 /dev-python/aiodns
parent61f10f985e19dfe20a4d9552902625edd5b6eabb (diff)
gentoo resync : 24.06.2021
Diffstat (limited to 'dev-python/aiodns')
-rw-r--r--dev-python/aiodns/Manifest4
-rw-r--r--dev-python/aiodns/aiodns-2.0.0-r1.ebuild33
-rw-r--r--dev-python/aiodns/aiodns-3.0.0.ebuild2
3 files changed, 2 insertions, 37 deletions
diff --git a/dev-python/aiodns/Manifest b/dev-python/aiodns/Manifest
index 4548d6fa86a3..84a0fd772566 100644
--- a/dev-python/aiodns/Manifest
+++ b/dev-python/aiodns/Manifest
@@ -1,5 +1,3 @@
-DIST aiodns-2.0.0.tar.gz 5948 BLAKE2B 70944ffbfa3fa1c591c5aab6ce2c4c59564a7665fd2eda1b544616a4481e58464f918081dfb21f74db08ebe4c7e43eebd17e0dc314cf79423835a182a257cd11 SHA512 d80b8f7641234c4d367e4554b10c5a66265e75ee82c58adf2a36f9e369bb1dbf4341dd6459f10540b771de3f102454511ca81eddf3082733e88c09bbdf125fe0
DIST aiodns-3.0.0.tar.gz 6743 BLAKE2B 2a3c61156069fa598df58191b35383da3e054396cdeb1bc8916cc0414bb6efc89d45789883a5b4f33e3a08a6ee544356b02d6c697c096deae3398f0ff4d3c316 SHA512 8c1016f3b0cb461e70e9a55034f9ad3b3db705a845bf20bb6503c7a5d592b4c5d2e8ddc60b375c5fafdc559dc4566736f4c93f26710be2dcbd181284ef039825
-EBUILD aiodns-2.0.0-r1.ebuild 831 BLAKE2B 6b7422cd8ee8dcc3df52174ac4f52e063555532f0ffeff3d80f0a839b7889100d4bd2f03cc9efd8b23148e8d7bb6a5ebc5c8939528e2a88e0171d69e15600381 SHA512 bfcacc10463026e52465f78689049d78699697cdd8f4738109f2a096a62b89313c6fdb3fb7e992603522679f33c738e704813cd99ea69e4c1ba9afc1dc7b8df5
-EBUILD aiodns-3.0.0.ebuild 611 BLAKE2B 25a4eda7ae668df1222686959583a252eb879837de0b59d0d6cb2cd275ffda6ae49c8f21e1c4f693e53d8610984a687b9e59f1cbfab1422a2475484e4e13e472 SHA512 3e11226b09fc6e6008f8e38956b8c774cb57359f5d927e3bd5dbb6f09bf497f761af0632c2b46325fa71d29dff1243f8f1a37a29eaedd665e5670ac5a047d523
+EBUILD aiodns-3.0.0.ebuild 610 BLAKE2B 781e29313aaf735487da828ceb6abf3cebc5593285049d1f278f464451a3f9fe914f1dd467ef8819ea8619499b530ceedd5eabf9a83af4221f05f78acba66d13 SHA512 c1baf4dd27ef0f09542efa459683510b80cbe104b8c269382697aa2caaf914bc5780ccf8f7f840b917d412fd8941e5e98b69afe8f3756628d73a15425e05b4df
MISC metadata.xml 340 BLAKE2B e607777274ea754605542b7ade5ba3d118ff366ae3bc57f586031450dd54e43189e0e1b3fd8305e351380bda96289e0cd95e074fdebaa7816da757329203775f SHA512 b77ba4eb56072b4801832400361bcc80e73c2f0f1507e9abfd8c9beaa255594554b4a2555e3304307af6c515bea097311c70f515f875a7a98cc197e5cf538ce3
diff --git a/dev-python/aiodns/aiodns-2.0.0-r1.ebuild b/dev-python/aiodns/aiodns-2.0.0-r1.ebuild
deleted file mode 100644
index a37c4e402e81..000000000000
--- a/dev-python/aiodns/aiodns-2.0.0-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Simple DNS resolver for asyncio"
-HOMEPAGE="https://github.com/saghul/aiodns/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
-IUSE=""
-# Tests fail with network-sandbox, since they try to resolve google.com
-RESTRICT="test"
-
-RDEPEND=">=dev-python/pycares-3[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
- distutils-r1_python_prepare_all
-
- #692720 apply https://github.com/saghul/aiodns/pull/73
- sed -e 's|typing; python_version<"3.7"|typing; python_version<"3.5"|' -i setup.py || die
-}
-
-python_test() {
- "${EPYTHON}" tests.py -v || die
-}
diff --git a/dev-python/aiodns/aiodns-3.0.0.ebuild b/dev-python/aiodns/aiodns-3.0.0.ebuild
index efbb87aaa6a7..59ee54a21755 100644
--- a/dev-python/aiodns/aiodns-3.0.0.ebuild
+++ b/dev-python/aiodns/aiodns-3.0.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
IUSE=""
# Tests fail with network-sandbox, since they try to resolve google.com
PROPERTIES="test_network"