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: Sat, 03 Jul 2021 06:35:58
Message-Id: 1625294017.6fbbb91a29b8fe5436dc6e87543f74dd08e6514f.mgorny@gentoo
1 commit: 6fbbb91a29b8fe5436dc6e87543f74dd08e6514f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 3 06:33:37 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 3 06:33:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fbbb91a
7
8 dev-python/zipp: Bump to 3.5.0
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.5.0.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/dev-python/zipp/Manifest b/dev-python/zipp/Manifest
17 index a0af4c9ace8..823621fdc50 100644
18 --- a/dev-python/zipp/Manifest
19 +++ b/dev-python/zipp/Manifest
20 @@ -1 +1,2 @@
21 DIST zipp-3.4.1.tar.gz 16545 BLAKE2B 5ebdc4d1e932d72502866701db8b0f352aca3194890d9ed340722bb2a65c4e3be0f6bb54f49567e4fd46faaec3379d0c1d668e1a55f63bea6c57e4ef0c2f9e01 SHA512 2ba50109efd0ceea9eb1d57e2d839f522b5a78a8dae344d6da54b79305dd46bff23f1116f562127290152c0b100369439c17fe9dc3fb14d0b42beaa48348ebe6
22 +DIST zipp-3.5.0.tar.gz 13270 BLAKE2B ba3b6f82ed0f1a902050ee8a89b6876a839d180dc048dd19cd31ddbaf89ec0494b9444f2ac082ed347e3183ccaf2e8342748737c2a29e1a2bbc492a0bc34767c SHA512 676d7e9a7fde386b57a213975121aba015461453f0809a97d39d030b06918a4c54ba1cad21877ddf007560941ae285883098d81d5e6f17eb4636379345b4513d
23
24 diff --git a/dev-python/zipp/zipp-3.5.0.ebuild b/dev-python/zipp/zipp-3.5.0.ebuild
25 new file mode 100644
26 index 00000000000..4ceef32cedf
27 --- /dev/null
28 +++ b/dev-python/zipp/zipp-3.5.0.ebuild
29 @@ -0,0 +1,39 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( pypy3 python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Backport of pathlib-compatible object wrapper for zip files"
39 +HOMEPAGE="https://github.com/jaraco/zipp"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
45 +
46 +BDEPEND="
47 + dev-python/toml[${PYTHON_USEDEP}]
48 + >=dev-python/setuptools_scm-3.4.2[${PYTHON_USEDEP}]
49 + test? ( dev-python/jaraco-itertools[${PYTHON_USEDEP}] )
50 +"
51 +
52 +distutils_enable_sphinx docs \
53 + ">=dev-python/jaraco-packaging-3.2" \
54 + ">=dev-python/rst-linker-1.9"
55 +distutils_enable_tests pytest
56 +
57 +python_prepare_all() {
58 + # Skip a potentially flaky performance test
59 + sed -i -e '/^import func_timeout\|^ *@func_timeout\.func_set_timeout/d' \
60 + -e 's/test_implied_dirs_performance/_&/' test_zipp.py || die
61 + distutils-r1_python_prepare_all
62 +}
63 +
64 +python_test() {
65 + # Ignoring zipp.py from ${S} avoids ImportPathMismatchError with Python < 3.8
66 + # by ensuring only zipp from ${BUILD_DIR} is loaded
67 + epytest --ignore zipp.py
68 +}