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: Thu, 01 Oct 2020 07:59:28
Message-Id: 1601539159.b21d8fabfdeed659258ecc21bdc01e5ec01c9fc7.mgorny@gentoo
1 commit: b21d8fabfdeed659258ecc21bdc01e5ec01c9fc7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 1 06:57:20 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 1 07:59:19 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b21d8fab
7
8 dev-python/zope-interface: Bump to 5.1.1
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-5.1.1.ebuild | 53 ++++++++++++++++++++++
14 2 files changed, 54 insertions(+)
15
16 diff --git a/dev-python/zope-interface/Manifest b/dev-python/zope-interface/Manifest
17 index fae56776040..d78a0dac486 100644
18 --- a/dev-python/zope-interface/Manifest
19 +++ b/dev-python/zope-interface/Manifest
20 @@ -1 +1,2 @@
21 DIST zope.interface-5.1.0.tar.gz 225400 BLAKE2B 6ad412bbf3c0327d2b8f37899c1e71fe4bf63c3840c9f2c7e776e3208ec8999c4812aaae89cb9a78724b40ef3dd883323b00eeccab44714eabef6c33c171be48 SHA512 be8319913222ada47a22559e22322ec12dff3adf17f45335d007c5aa3509d84a7d0a7e6c113967b91810b3613344b5c60e002eb740af2bbb454b2807de8dad98
22 +DIST zope.interface-5.1.1.tar.gz 228612 BLAKE2B 4452a9e75feb496e933add5b15c17a782c78aaa0274eae09955ce618dd5946997d29aedbd4856952467e243ccdda923b66925af27afefeda03aff78f5f8f1fe4 SHA512 9cf195154592f5bac3335420eb01c55914b856e4b135b1756c9d812aa9418dcbd82a7e8438d3d1b5891867ca655c722641eb4d1606c47132aa8f9523b67c5725
23
24 diff --git a/dev-python/zope-interface/zope-interface-5.1.1.ebuild b/dev-python/zope-interface/zope-interface-5.1.1.ebuild
25 new file mode 100644
26 index 00000000000..5de915fb7e9
27 --- /dev/null
28 +++ b/dev-python/zope-interface/zope-interface-5.1.1.ebuild
29 @@ -0,0 +1,53 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +# pkg_resources namespace
36 +DISTUTILS_USE_SETUPTOOLS=rdepend
37 +PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
38 +
39 +inherit distutils-r1 flag-o-matic
40 +
41 +MY_PN=${PN/-/.}
42 +MY_P=${MY_PN}-${PV}
43 +
44 +DESCRIPTION="Interfaces for Python"
45 +HOMEPAGE="https://pypi.org/project/zope.interface/ https://github.com/zopefoundation/zope.interface"
46 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
47 +
48 +LICENSE="ZPL"
49 +SLOT="0"
50 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
51 +
52 +RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
53 +BDEPEND="
54 + test? (
55 + dev-python/zope-event[${PYTHON_USEDEP}]
56 + dev-python/zope-testing[${PYTHON_USEDEP}]
57 + )
58 +"
59 +
60 +S="${WORKDIR}/${MY_P}"
61 +
62 +PATCHES=(
63 + "${FILESDIR}"/5.1.0-drop-coverage.patch
64 +)
65 +
66 +distutils_enable_tests setup.py
67 +
68 +python_compile() {
69 + if ! python_is_python3; then
70 + local CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
71 + append-flags -fno-strict-aliasing
72 + fi
73 +
74 + distutils-r1_python_compile
75 +}
76 +
77 +python_install_all() {
78 + distutils-r1_python_install_all
79 +
80 + # remove .pth files since dev-python/namespace-zope handles the ns
81 + find "${D}" -name '*.pth' -delete || die
82 +}