commit: 74766628c28b7286e83bde756f1ea5bbf7799117
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 12 07:35:50 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 12 07:35:50 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74766628
dev-python/flit-core: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/flit-core/Manifest | 1 -
dev-python/flit-core/flit-core-3.11.0.ebuild | 45 ----------------------------
2 files changed, 46 deletions(-)
diff --git a/dev-python/flit-core/Manifest b/dev-python/flit-core/Manifest
index 655b4ff5b5b4..cf5c2428e8ac 100644
--- a/dev-python/flit-core/Manifest
+++ b/dev-python/flit-core/Manifest
@@ -1,2 +1 @@
-DIST flit_core-3.11.0.tar.gz 52038 BLAKE2B
6b6e0c606429fdb8123aa2dc17336003d8348f576bf26745ffa116a5e0159e20be5b8a20c541c570a825cdb2c970380f290599a09fdcc9e3bcf4158329aff9d2
SHA512
628ffd0950da88f1775c1b193ee5c6f1af06046877ca0ad66d7ae5af7df4b49759f19a4494cf15d7a1480d34c19925ce11205e7359df9fc223bca6595f94525d
DIST flit_core-3.12.0.tar.gz 53690 BLAKE2B
2dbc8cb1803d2b05693d458ab29d141631af268ad1620ccd91d7fe1636eab6c776c5482d94fdd2006dafa8b5cb45cb41d29fb80ac91e29877b43ba8e94ac2bd5
SHA512
189dcd674722164b165e18b11c4dc72b8309fa2e3c82fc1ed6a9160bb5c6c1f86e2b2cfa111603cf73dca0dba74a496a664d5cbb6242587b47f139c42f7ae8bd
diff --git a/dev-python/flit-core/flit-core-3.11.0.ebuild
b/dev-python/flit-core/flit-core-3.11.0.ebuild
deleted file mode 100644
index 1a99d146663b..000000000000
--- a/dev-python/flit-core/flit-core-3.11.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 2019-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# please keep this ebuild at EAPI 8 -- sys-apps/portage dep
-EAPI=8
-
-DISTUTILS_USE_PEP517=standalone
-PYTHON_COMPAT=( python3_{10..13} python3_13t pypy3 pypy3_11 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Simplified packaging of Python modules (core module)"
-HOMEPAGE="
- https://pypi.org/project/flit-core/
- https://github.com/pypa/flit/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv
~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos
~x64-solaris"
-
-RDEPEND="
- $(python_gen_cond_dep '
- dev-python/tomli[${PYTHON_USEDEP}]
- ' 3.{9..10})
-"
-BDEPEND="
- test? ( dev-python/testpath[${PYTHON_USEDEP}] )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
- distutils-r1_src_prepare
-
- # unbundle deps
- rm -r flit_core/vendor || die
- sed -i -e 's:from \.vendor ::' flit_core/*.py || die
- sed -i -e '/license-files/d' pyproject.toml || die
-}
-
-python_test() {
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest
-}