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/zope-interface/
Date: Tue, 18 Aug 2020 08:17:29
Message-Id: 1597738407.973e219f9103252aa557678e306851f7ccf36802.mgorny@gentoo
1 commit: 973e219f9103252aa557678e306851f7ccf36802
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 18 08:12:39 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 18 08:13:27 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=973e219f
7
8 dev-python/zope-interface: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/zope-interface/Manifest | 1 -
13 .../zope-interface/zope-interface-4.7.1.ebuild | 43 ----------------------
14 2 files changed, 44 deletions(-)
15
16 diff --git a/dev-python/zope-interface/Manifest b/dev-python/zope-interface/Manifest
17 index 84d792f65ea..fae56776040 100644
18 --- a/dev-python/zope-interface/Manifest
19 +++ b/dev-python/zope-interface/Manifest
20 @@ -1,2 +1 @@
21 -DIST zope.interface-4.7.1.tar.gz 151374 BLAKE2B 87900329d4634456287fe0fc78093df02f9b0e27fe2fd9f6dc039253f5814f2a00936e0f49e6001754c192eed323cfad068cf863d3e52ed31bad6352d83e1d0e SHA512 cb99cdf9733cdd2fb6637163167da0073145db1ed1788ae147098a23a9cafb4d661368a1780a44a231a2ea9f1adfa4fd6acac423a4a8d9cf026ee3a603ca7767
22 DIST zope.interface-5.1.0.tar.gz 225400 BLAKE2B 6ad412bbf3c0327d2b8f37899c1e71fe4bf63c3840c9f2c7e776e3208ec8999c4812aaae89cb9a78724b40ef3dd883323b00eeccab44714eabef6c33c171be48 SHA512 be8319913222ada47a22559e22322ec12dff3adf17f45335d007c5aa3509d84a7d0a7e6c113967b91810b3613344b5c60e002eb740af2bbb454b2807de8dad98
23
24 diff --git a/dev-python/zope-interface/zope-interface-4.7.1.ebuild b/dev-python/zope-interface/zope-interface-4.7.1.ebuild
25 deleted file mode 100644
26 index 3e1a770841b..00000000000
27 --- a/dev-python/zope-interface/zope-interface-4.7.1.ebuild
28 +++ /dev/null
29 @@ -1,43 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 )
36 -
37 -inherit distutils-r1 flag-o-matic
38 -
39 -MY_PN=${PN/-/.}
40 -MY_P=${MY_PN}-${PV}
41 -
42 -DESCRIPTION="Interfaces for Python"
43 -HOMEPAGE="https://pypi.org/project/zope.interface/ https://github.com/zopefoundation/zope.interface"
44 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
45 -
46 -LICENSE="ZPL"
47 -SLOT="0"
48 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
49 -
50 -RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
51 -BDEPEND="<dev-python/setuptools-46.0.0[${PYTHON_USEDEP}]
52 - test? ( dev-python/zope-event[${PYTHON_USEDEP}] )"
53 -
54 -S="${WORKDIR}/${MY_P}"
55 -
56 -distutils_enable_tests setup.py
57 -
58 -python_compile() {
59 - if ! python_is_python3; then
60 - local CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
61 - append-flags -fno-strict-aliasing
62 - fi
63 -
64 - distutils-r1_python_compile
65 -}
66 -
67 -python_install_all() {
68 - distutils-r1_python_install_all
69 -
70 - # remove .pth files since dev-python/namespace-zope handles the ns
71 - find "${D}" -name '*.pth' -delete || die
72 -}