Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wheel/
Date: Sun, 27 Feb 2022 18:58:53
Message-Id: 1645988221.501ea2c1b1f866687d91c0c6333962c34a261686.mgorny@gentoo
1 commit: 501ea2c1b1f866687d91c0c6333962c34a261686
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 18:57:01 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 18:57:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=501ea2c1
7
8 dev-python/wheel: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/wheel/wheel-0.37.1.ebuild | 33 ---------------------------------
13 1 file changed, 33 deletions(-)
14
15 diff --git a/dev-python/wheel/wheel-0.37.1.ebuild b/dev-python/wheel/wheel-0.37.1.ebuild
16 deleted file mode 100644
17 index d44720c3b267..000000000000
18 --- a/dev-python/wheel/wheel-0.37.1.ebuild
19 +++ /dev/null
20 @@ -1,33 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="A built-package format for Python"
30 -HOMEPAGE="https://pypi.org/project/wheel/"
31 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
32 -SRC_URI="https://github.com/pypa/wheel/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
33 -
34 -LICENSE="MIT"
35 -SLOT="0"
36 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
37 -
38 -RDEPEND="
39 - dev-python/packaging[${PYTHON_USEDEP}]"
40 -
41 -distutils_enable_tests --install pytest
42 -
43 -src_prepare() {
44 - sed \
45 - -e 's:--cov --cov-config=setup.cfg::g' \
46 - -i setup.cfg || die
47 -
48 - # unbundle packaging
49 - rm -r src/wheel/vendored || die
50 - sed -i -e 's:\.vendored\.::' src/wheel/*.py || die
51 -
52 - distutils-r1_src_prepare
53 -}