commit:     989449b7669fdcde6b0609395f40078807866f01
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 16 03:18:01 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 16 04:01:54 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=989449b7

dev-python/yarl: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/yarl/Manifest          |  2 --
 dev-python/yarl/yarl-1.9.2.ebuild | 57 ---------------------------------------
 dev-python/yarl/yarl-1.9.3.ebuild | 37 -------------------------
 3 files changed, 96 deletions(-)

diff --git a/dev-python/yarl/Manifest b/dev-python/yarl/Manifest
index 61f2c7d9bae4..5fc801df3ff9 100644
--- a/dev-python/yarl/Manifest
+++ b/dev-python/yarl/Manifest
@@ -1,3 +1 @@
-DIST yarl-1.9.2.tar.gz 184673 BLAKE2B 
bb94131059d0cfaf88f04d62a44181245ebcb660cb44904f0b7e8d497905a16d0026aeff454b8179fab5342c6bf9c8d6aadade0d9f7c70321c71bbcc3998e9a3
 SHA512 
ffbb6df94220bb1561333f1ad69a70334328e2273ec5e91c2741f6fd5ca2f6dd38d5b5f617728797fce490accc2394a406a5f9b5b665af4746746229af0d7c5f
-DIST yarl-1.9.3.tar.gz 135606 BLAKE2B 
f73b41227c08c791442c4c96ec961bcdbc8078f72082a842b6537a28b212c8612d700f2245e8c431008b652afd59a08be36137e92ebb15f1ea2c733bfc00dd4f
 SHA512 
44dcc51c0b01eda024d9e6a236b95999a6be5989958362060b6b21c3d98fcb862824f7ec1897ac8c164ad2cb9362a2df4d40dcc980f57eaeefb0eddfc19b4741
 DIST yarl-1.9.4.tar.gz 141869 BLAKE2B 
367eac4674bf1190122f10bb1dc1c4f3d5e4263e1d95ff2b871067d55a894dc19a6bb5a6c673d1bed28b3c5f77c704799568edfe639d50f0ae10313eb847352d
 SHA512 
e4f7917f1625b40125abae9a13d61795f97e8cf489735e15cf58476e97c3bcf840b1452482f1f7a737fbb2bdd1dc7bbcfa882d0a7f76a27dfb3aea72b7a66c82

diff --git a/dev-python/yarl/yarl-1.9.2.ebuild 
b/dev-python/yarl/yarl-1.9.2.ebuild
deleted file mode 100644
index 4fc30d5ec478..000000000000
--- a/dev-python/yarl/yarl-1.9.2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Yet another URL library"
-HOMEPAGE="
-       https://github.com/aio-libs/yarl/
-       https://pypi.org/project/yarl/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-macos"
-
-RDEPEND="
-       >=dev-python/multidict-4.0[${PYTHON_USEDEP}]
-       >=dev-python/idna-2.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       dev-python/cython
-"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs \
-       dev-python/alabaster
-
-src_configure() {
-       set -- cython -3 yarl/_quoting_c.pyx
-       echo "${*}" >&2
-       "${@}" || die
-}
-
-python_test() {
-       local EPYTEST_DESELECT=()
-       if [[ ${EPYTHON} == python3.12 ]]; then
-               EPYTEST_DESELECT+=(
-                       # tests for seemingly invalid addresses, unlikely to 
affect
-                       # real world use
-                       # https://github.com/aio-libs/yarl/issues/876
-                       tests/test_url.py::test_ipv6_zone
-                       tests/test_url.py::test_human_repr_delimiters
-                       tests/test_url_parsing.py::TestHost::test_masked_ipv4
-                       tests/test_url_parsing.py::TestHost::test_strange_ip
-                       
tests/test_url_parsing.py::TestUserInfo::test_weird_user3
-               )
-       fi
-
-       cd tests || die
-       epytest --override-ini=addopts=
-}

diff --git a/dev-python/yarl/yarl-1.9.3.ebuild 
b/dev-python/yarl/yarl-1.9.3.ebuild
deleted file mode 100644
index b79589d8f530..000000000000
--- a/dev-python/yarl/yarl-1.9.3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=standalone
-PYTHON_COMPAT=( python3_{10..12} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Yet another URL library"
-HOMEPAGE="
-       https://github.com/aio-libs/yarl/
-       https://pypi.org/project/yarl/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~ia64 ~riscv ~sparc ~x86"
-
-RDEPEND="
-       >=dev-python/multidict-4.0[${PYTHON_USEDEP}]
-       >=dev-python/idna-2.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       dev-python/cython[${PYTHON_USEDEP}]
-       dev-python/expandvars[${PYTHON_USEDEP}]
-       dev-python/setuptools[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-       cd tests || die
-       epytest --override-ini=addopts=
-}

Reply via email to