commit:     36cee1d7f0e796eb6c344e3dcf3031be58783339
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 13 15:54:27 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 13 15:54:27 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36cee1d7

dev-python/frozenlist: Remove old

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

 dev-python/frozenlist/Manifest                |  4 --
 dev-python/frozenlist/frozenlist-1.5.0.ebuild | 53 ---------------------------
 dev-python/frozenlist/frozenlist-1.6.0.ebuild | 53 ---------------------------
 dev-python/frozenlist/frozenlist-1.6.1.ebuild | 53 ---------------------------
 dev-python/frozenlist/frozenlist-1.6.2.ebuild | 53 ---------------------------
 5 files changed, 216 deletions(-)

diff --git a/dev-python/frozenlist/Manifest b/dev-python/frozenlist/Manifest
index be7617b4366b..106c2ed96585 100644
--- a/dev-python/frozenlist/Manifest
+++ b/dev-python/frozenlist/Manifest
@@ -1,5 +1 @@
-DIST frozenlist-1.5.0.gh.tar.gz 46957 BLAKE2B 
385b6439985256c5fd074582001a9c3d8ae82a0b839abfb3c2ff054ba3f5904d17740d7e49a17c96c571a0d8940933d292cc980c5a7bb30ae25fe88484ade185
 SHA512 
4486a3132038cf3eb29184bc27baab2f166078d25163da29114cb0595bd97c88848d88241cef39d42be9da5e2a99d14141d899bc5f268690c97bf38bf07c54dd
-DIST frozenlist-1.6.0.gh.tar.gz 49920 BLAKE2B 
e7f03eb3779e048d921f8383d34d82af82828ac587378c148d9f555cf69aa1324f63fb1a53e42bc3d411a647ccd3eabf5b276a9c2ebd7af14d03245c8f4d4721
 SHA512 
f7e3d8741335c5ebdb3e78684c6e4a91c2f7f389134f4b869d8ea67d167472814867f14e303211045977f0d409d6b1b9478b7cfa7718af5ae9bacb49d147af58
-DIST frozenlist-1.6.1.gh.tar.gz 49838 BLAKE2B 
99e2bf456e9127b79940c53958f8aec377e00788d0778b08a55898f72d1f08ec1646ae7596d650687859d68b502e22360eebc33b82913b57f1877f15ba81bc22
 SHA512 
63776f6bbbc710d25a47a634df8020c347656d452d1912970ba9e94ffdaba28c999fe12ee6e9dca1622f9e7ab7ce60deda540bc3797f0ca6ec079c0d26b6cc84
-DIST frozenlist-1.6.2.gh.tar.gz 49853 BLAKE2B 
88daf2ba5476902fbd1c49a547bfa1d2b6aca4892f3476c275bb7cfddd04c186a7db2dd85d810ef4f8a9ba097ea79a10f9b3604a575b693b3a011e50a17cf101
 SHA512 
98af12defa65033f42a1ead3012dc6a2df5b018fc96fb02449aeb42465bd22c86edb28663d35c5a2bdbcda71649c99e8edae98836de6ace6957599474a00dda7
 DIST frozenlist-1.7.0.gh.tar.gz 51128 BLAKE2B 
8ce7444524bcc1d3bc0c4288a21a06830fb461dbb2c6226995dddca5574f90a88aac03bf21caa0401ffacf5d069096c2f7430325c74ae26105d03c6ff7348c06
 SHA512 
007118195032ebeeba172d2113b8e0af330d6a1ed67ad3ab4313c01b4948a3d5890e526fb3258e930e3ea8a221f239fd061abe3eead0c6b6196a95e78fb29422

diff --git a/dev-python/frozenlist/frozenlist-1.5.0.ebuild 
b/dev-python/frozenlist/frozenlist-1.5.0.ebuild
deleted file mode 100644
index 35e500c74c91..000000000000
--- a/dev-python/frozenlist/frozenlist-1.5.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2021-2025 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..13} pypy3 pypy3_11 )
-
-inherit distutils-r1
-
-DESCRIPTION="A list-like structure which implements 
collections.abc.MutableSequence"
-HOMEPAGE="
-       https://pypi.org/project/frozenlist/
-       https://github.com/aio-libs/frozenlist/
-"
-SRC_URI="
-       https://github.com/aio-libs/frozenlist/archive/v${PV}.tar.gz
-               -> ${P}.gh.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
-IUSE="+native-extensions"
-
-BDEPEND="
-       dev-python/expandvars[${PYTHON_USEDEP}]
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       dev-python/wheel[${PYTHON_USEDEP}]
-       native-extensions? (
-               $(python_gen_cond_dep '
-                       dev-python/cython[${PYTHON_USEDEP}]
-               ' 'python*')
-       )
-"
-
-distutils_enable_tests pytest
-
-python_compile() {
-       # pypy is not using the C extension
-       if ! use native-extensions || [[ ${EPYTHON} != python* ]]; then
-               local -x FROZENLIST_NO_EXTENSIONS=1
-       fi
-
-       distutils-r1_python_compile
-}
-
-python_test() {
-       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-       rm -rf frozenlist || die
-       epytest -o addopts=
-}

diff --git a/dev-python/frozenlist/frozenlist-1.6.0.ebuild 
b/dev-python/frozenlist/frozenlist-1.6.0.ebuild
deleted file mode 100644
index 2a17dd89fc38..000000000000
--- a/dev-python/frozenlist/frozenlist-1.6.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2021-2025 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_{11..14} python3_13t pypy3_11 )
-
-inherit distutils-r1
-
-DESCRIPTION="A list-like structure which implements 
collections.abc.MutableSequence"
-HOMEPAGE="
-       https://pypi.org/project/frozenlist/
-       https://github.com/aio-libs/frozenlist/
-"
-SRC_URI="
-       https://github.com/aio-libs/frozenlist/archive/v${PV}.tar.gz
-               -> ${P}.gh.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 
~sparc x86"
-IUSE="+native-extensions"
-
-BDEPEND="
-       dev-python/expandvars[${PYTHON_USEDEP}]
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       dev-python/wheel[${PYTHON_USEDEP}]
-       native-extensions? (
-               $(python_gen_cond_dep '
-                       dev-python/cython[${PYTHON_USEDEP}]
-               ' 'python*')
-       )
-"
-
-distutils_enable_tests pytest
-
-python_compile() {
-       # pypy is not using the C extension
-       if ! use native-extensions || [[ ${EPYTHON} != python* ]]; then
-               local -x FROZENLIST_NO_EXTENSIONS=1
-       fi
-
-       distutils-r1_python_compile
-}
-
-python_test() {
-       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-       rm -rf frozenlist || die
-       epytest -o addopts=
-}

diff --git a/dev-python/frozenlist/frozenlist-1.6.1.ebuild 
b/dev-python/frozenlist/frozenlist-1.6.1.ebuild
deleted file mode 100644
index 214b343915d0..000000000000
--- a/dev-python/frozenlist/frozenlist-1.6.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2021-2025 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_{11..14} python3_13t pypy3_11 )
-
-inherit distutils-r1
-
-DESCRIPTION="A list-like structure which implements 
collections.abc.MutableSequence"
-HOMEPAGE="
-       https://pypi.org/project/frozenlist/
-       https://github.com/aio-libs/frozenlist/
-"
-SRC_URI="
-       https://github.com/aio-libs/frozenlist/archive/v${PV}.tar.gz
-               -> ${P}.gh.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
-IUSE="+native-extensions"
-
-BDEPEND="
-       dev-python/expandvars[${PYTHON_USEDEP}]
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       dev-python/wheel[${PYTHON_USEDEP}]
-       native-extensions? (
-               $(python_gen_cond_dep '
-                       dev-python/cython[${PYTHON_USEDEP}]
-               ' 'python*')
-       )
-"
-
-distutils_enable_tests pytest
-
-python_compile() {
-       # pypy is not using the C extension
-       if ! use native-extensions || [[ ${EPYTHON} != python* ]]; then
-               local -x FROZENLIST_NO_EXTENSIONS=1
-       fi
-
-       distutils-r1_python_compile
-}
-
-python_test() {
-       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-       rm -rf frozenlist || die
-       epytest -o addopts=
-}

diff --git a/dev-python/frozenlist/frozenlist-1.6.2.ebuild 
b/dev-python/frozenlist/frozenlist-1.6.2.ebuild
deleted file mode 100644
index 9927aa4aee6f..000000000000
--- a/dev-python/frozenlist/frozenlist-1.6.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2021-2025 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_{11..14} python3_13t pypy3_11 )
-
-inherit distutils-r1
-
-DESCRIPTION="A list-like structure which implements 
collections.abc.MutableSequence"
-HOMEPAGE="
-       https://pypi.org/project/frozenlist/
-       https://github.com/aio-libs/frozenlist/
-"
-SRC_URI="
-       https://github.com/aio-libs/frozenlist/archive/v${PV}.tar.gz
-               -> ${P}.gh.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 
~sparc x86"
-IUSE="+native-extensions"
-
-BDEPEND="
-       dev-python/expandvars[${PYTHON_USEDEP}]
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       dev-python/wheel[${PYTHON_USEDEP}]
-       native-extensions? (
-               $(python_gen_cond_dep '
-                       dev-python/cython[${PYTHON_USEDEP}]
-               ' 'python*')
-       )
-"
-
-distutils_enable_tests pytest
-
-python_compile() {
-       # pypy is not using the C extension
-       if ! use native-extensions || [[ ${EPYTHON} != python* ]]; then
-               local -x FROZENLIST_NO_EXTENSIONS=1
-       fi
-
-       distutils-r1_python_compile
-}
-
-python_test() {
-       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-       rm -rf frozenlist || die
-       epytest -o addopts=
-}

Reply via email to