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, 29 Mar 2020 12:22:14
Message-Id: 1585484403.186836294436d6ecfc90ded0ea302b41061bb956.mgorny@gentoo
1 commit: 186836294436d6ecfc90ded0ea302b41061bb956
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 12:14:30 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 12:20:03 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18683629
7
8 dev-python/zipp: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/zipp/Manifest | 1 -
13 dev-python/zipp/zipp-3.0.0.ebuild | 38 --------------------------------------
14 2 files changed, 39 deletions(-)
15
16 diff --git a/dev-python/zipp/Manifest b/dev-python/zipp/Manifest
17 index afbfda7b4b8..e1a69bebce8 100644
18 --- a/dev-python/zipp/Manifest
19 +++ b/dev-python/zipp/Manifest
20 @@ -1,4 +1,3 @@
21 DIST zipp-1.0.0.tar.gz 10821 BLAKE2B f5e0476cb0ca01054abc0c56f1a9581a6f537c002791c4a363238555ce9a211fe13114041374c1bfef426544545e3c654e5b0a7e0541c30b775757c43df6d756 SHA512 dbfadfedd30ca4cb31ac4163f367134d96e57405ef00d5f4c19c0af7a141f78487dec29a0ba94975584fcb462d22c8b536bf29c67b7e298368072e897b0e9d82
22 DIST zipp-2.0.1.tar.gz 12790 BLAKE2B 107079d2cbe73c4d0d7053696181d99636192374eac4598a8f2007b8197c007e90ef39a56d193052d484b36247d73d5712d878ea35d222895e5b3ff21963ba13 SHA512 ac49f0c0aa83398ad0892932b1f067df94e2108691338c80400235053834bcbcb1a58b2b7b5807f398088a09e9d1cb591d94153a2a44ef3ef96506271d817e05
23 -DIST zipp-3.0.0.tar.gz 14501 BLAKE2B c0dc7534a3b1dd59e9f275e2dda95119061b26b0426964b7f01ef6721db108255e2ca9734097380e87d19449284d9335405357650f0a69edb87dff1e2223bbe2 SHA512 16ea46ee456416333ab4d25ae0d6099fa30eb93ad9a3485504ac3448c8669dc6020e0ec19830b8204af8ba6851e8336827d238c87cc389e4f2b40345c2877ff2
24 DIST zipp-3.1.0.tar.gz 14808 BLAKE2B fb5524c2619e51c5f8c1b85fa819d1001e6296df6c9d5320c6ab3ec88fa5c932c139161e621d51b2827ef40402bb2492b8b08e470b7333e847495ec690024879 SHA512 bb8dea71eccc4f3b18fc816dae700582c3feb72f346e115bb2d1adc336f121304a285e4d5dad48d15b386b9e137c6e1d1793ef50d22b6bd697812a661817684e
25
26 diff --git a/dev-python/zipp/zipp-3.0.0.ebuild b/dev-python/zipp/zipp-3.0.0.ebuild
27 deleted file mode 100644
28 index c3effeb47ea..00000000000
29 --- a/dev-python/zipp/zipp-3.0.0.ebuild
30 +++ /dev/null
31 @@ -1,38 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
38 -# [options.entry_points] is present in setup.cfg but it is empty
39 -DISTUTILS_USE_SETUPTOOLS=manual
40 -
41 -inherit distutils-r1
42 -
43 -DESCRIPTION="Backport of pathlib-compatible object wrapper for zip files"
44 -HOMEPAGE="https://github.com/jaraco/zipp"
45 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
50 -IUSE="test"
51 -
52 -BDEPEND="
53 - dev-python/setuptools[${PYTHON_USEDEP}]
54 - dev-python/toml[${PYTHON_USEDEP}]
55 - >=dev-python/setuptools_scm-3.4.2[${PYTHON_USEDEP}]
56 - test? ( dev-python/jaraco-itertools[${PYTHON_USEDEP}] )
57 -"
58 -
59 -distutils_enable_sphinx docs \
60 - ">=dev-python/jaraco-packaging-3.2" \
61 - ">=dev-python/rst-linker-1.9"
62 -distutils_enable_tests pytest
63 -
64 -python_prepare_all() {
65 - # Skip a potentially flaky performance test
66 - sed -i -e '/^import func_timeout\|^ *@func_timeout\.func_set_timeout/d' \
67 - -e 's/test_implied_dirs_performance/_&/' test_zipp.py || die
68 - distutils-r1_python_prepare_all
69 -}