Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zipp/
Date: Wed, 29 Jan 2020 11:05:10
Message-Id: 1580295735.3414aec8a12689c444e79ff6fb79b9f4bb796eb8.sbraz@gentoo
1 commit: 3414aec8a12689c444e79ff6fb79b9f4bb796eb8
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 27 13:17:59 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 29 11:02:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3414aec8
7
8 dev-python/zipp: remove old
9
10 Package-Manager: Portage-2.3.85, Repoman-2.3.20
11 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
12
13 dev-python/zipp/Manifest | 1 -
14 dev-python/zipp/zipp-0.5.2.ebuild | 45 ---------------------------------------
15 2 files changed, 46 deletions(-)
16
17 diff --git a/dev-python/zipp/Manifest b/dev-python/zipp/Manifest
18 index 5c0187528c2..e72fa1dc338 100644
19 --- a/dev-python/zipp/Manifest
20 +++ b/dev-python/zipp/Manifest
21 @@ -1,4 +1,3 @@
22 -DIST zipp-0.5.2.tar.gz 10875 BLAKE2B 97e56b8e1cbff2344ee6b385085e6c821d61bd2c2510ac54e50a3f706515f1e22789168c97599787787b47f09dabe55abb594f5724d1d540f62d8d68fc32e36f SHA512 8c84b620844315ab1f1aa3c5bb29dcdf1271a0139198b5c3d6aa31ecb9a86f0dcef963819403d971ae0461c737312c064572c57ecf32d73dc973a5f69cf0375c
23 DIST zipp-0.6.0.tar.gz 10778 BLAKE2B 165ae85f51fe0c0232f6cf2dde70e2d7f8064413c15616d15e1ebd65cfe3c345bbd5b1b9713fa1171cad18015b605862509790bedd734edf5a7d8c80c5378af3 SHA512 18bef5aa3388ab3901bf08888127fc9cc17d8972a52f23ccf9a8035f09ee5598e17ddff833a10b81b2118461e0c517e88413518736763425a728cd0b19cc2052
24 DIST zipp-1.0.0.tar.gz 10821 BLAKE2B f5e0476cb0ca01054abc0c56f1a9581a6f537c002791c4a363238555ce9a211fe13114041374c1bfef426544545e3c654e5b0a7e0541c30b775757c43df6d756 SHA512 dbfadfedd30ca4cb31ac4163f367134d96e57405ef00d5f4c19c0af7a141f78487dec29a0ba94975584fcb462d22c8b536bf29c67b7e298368072e897b0e9d82
25 DIST zipp-2.0.1.tar.gz 12790 BLAKE2B 107079d2cbe73c4d0d7053696181d99636192374eac4598a8f2007b8197c007e90ef39a56d193052d484b36247d73d5712d878ea35d222895e5b3ff21963ba13 SHA512 ac49f0c0aa83398ad0892932b1f067df94e2108691338c80400235053834bcbcb1a58b2b7b5807f398088a09e9d1cb591d94153a2a44ef3ef96506271d817e05
26
27 diff --git a/dev-python/zipp/zipp-0.5.2.ebuild b/dev-python/zipp/zipp-0.5.2.ebuild
28 deleted file mode 100644
29 index 5bfbbf4ef3a..00000000000
30 --- a/dev-python/zipp/zipp-0.5.2.ebuild
31 +++ /dev/null
32 @@ -1,45 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -PYTHON_COMPAT=( pypy3 python{2_7,3_{6,7}} )
39 -
40 -inherit distutils-r1
41 -
42 -DESCRIPTION="Backport of pathlib-compatible object wrapper for zip files"
43 -HOMEPAGE="https://github.com/jaraco/zipp"
44 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 -
46 -LICENSE="MIT"
47 -SLOT="0"
48 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
49 -IUSE="doc test"
50 -RESTRICT="!test? ( test )"
51 -
52 -BDEPEND="
53 - dev-python/setuptools[${PYTHON_USEDEP}]
54 - >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
55 - test? (
56 - dev-python/contextlib2[${PYTHON_USEDEP}]
57 - dev-python/pathlib2[${PYTHON_USEDEP}]
58 - dev-python/pytest[${PYTHON_USEDEP}]
59 - dev-python/unittest2[${PYTHON_USEDEP}]
60 - )
61 - doc? (
62 - >=dev-python/jaraco-packaging-3.2[${PYTHON_USEDEP}]
63 - >=dev-python/rst-linker-1.9[${PYTHON_USEDEP}]
64 - dev-python/sphinx[${PYTHON_USEDEP}]
65 - )
66 -"
67 -
68 -python_compile_all() {
69 - if use doc; then
70 - sphinx-build docs docs/_build/html || die
71 - HTML_DOCS=( docs/_build/html/. )
72 - fi
73 -}
74 -
75 -python_test() {
76 - pytest -vv || die "tests failed with ${EPYTHON}"
77 -}