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/zipp/
Date: Sun, 27 Feb 2022 18:53:00
Message-Id: 1645987940.aa6a798087550df710dd8a241a371e394b2d34c7.mgorny@gentoo
1 commit: aa6a798087550df710dd8a241a371e394b2d34c7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 18:52:20 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 18:52:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa6a7980
7
8 dev-python/zipp: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/zipp/zipp-3.7.0.ebuild | 42 ---------------------------------------
13 1 file changed, 42 deletions(-)
14
15 diff --git a/dev-python/zipp/zipp-3.7.0.ebuild b/dev-python/zipp/zipp-3.7.0.ebuild
16 deleted file mode 100644
17 index cc4d1d62a53a..000000000000
18 --- a/dev-python/zipp/zipp-3.7.0.ebuild
19 +++ /dev/null
20 @@ -1,42 +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=( pypy3 python3_{8..10} )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Backport of pathlib-compatible object wrapper for zip files"
30 -HOMEPAGE="https://github.com/jaraco/zipp"
31 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
36 -
37 -BDEPEND="
38 - >=dev-python/setuptools_scm-3.4.2[${PYTHON_USEDEP}]
39 - test? ( dev-python/jaraco-itertools[${PYTHON_USEDEP}] )
40 -"
41 -
42 -distutils_enable_sphinx docs \
43 - ">=dev-python/jaraco-packaging-3.2" \
44 - ">=dev-python/rst-linker-1.9"
45 -distutils_enable_tests pytest
46 -
47 -EPYTEST_DESELECT=(
48 - # speed tests are flaky by design
49 - test_zipp.py::TestPath::test_implied_dirs_performance
50 -)
51 -
52 -EPYTEST_IGNORE=(
53 - # Ignoring zipp.py from ${S} avoids ImportPathMismatchError with Python < 3.8
54 - # by ensuring only zipp from ${BUILD_DIR} is loaded
55 - zipp.py
56 -)
57 -
58 -python_prepare_all() {
59 - # dep of disabled test
60 - sed -i -e '/func_timeout/d' test_zipp.py || die
61 - distutils-r1_python_prepare_all
62 -}