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/pbr/
Date: Tue, 31 Jan 2023 11:55:04
Message-Id: 1675166094.35f0eb07a670cbbe8ac260b8f8d8895c88225f06.mgorny@gentoo
1 commit: 35f0eb07a670cbbe8ac260b8f8d8895c88225f06
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 31 11:52:20 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 31 11:54:54 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35f0eb07
7
8 dev-python/pbr: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pbr/Manifest | 1 -
13 dev-python/pbr/pbr-5.11.0.ebuild | 73 ----------------------------------------
14 2 files changed, 74 deletions(-)
15
16 diff --git a/dev-python/pbr/Manifest b/dev-python/pbr/Manifest
17 index 176c9088cc42..4b45e1658cfc 100644
18 --- a/dev-python/pbr/Manifest
19 +++ b/dev-python/pbr/Manifest
20 @@ -1,2 +1 @@
21 -DIST pbr-5.11.0.tar.gz 127505 BLAKE2B 201fcd04ded1f909f4792886ddf79a5a764318645ff6b6245543cde2940d502ab711820cb6e999894a339df933e43e6a8394bd8ec1e978d930710a3085b131fd SHA512 bdb442e8ef7bda90a65c5fb7f0696041808278fcc643eb0c15d5401b7da7d64cd3566018b1046145f55bc5683791ee182bec92461801004b02a35b8bf4c5abf0
22 DIST pbr-5.11.1.tar.gz 127597 BLAKE2B 4ed433f271b4cbed3e7baca66cbeef057d575b7b061507c45a65ba93704edbed7b6f8668e9b9766f03079aaf06dbd6c394960c1c528b1beb992db65d0c3b89e4 SHA512 466dc5ce2622c43451186698f00d405141878449ffe9f7771b0057e8356bf12b426a9bfefff7e5843f1b3f963af3ffc9c4a42fa91a9407b79617abea046ff438
23
24 diff --git a/dev-python/pbr/pbr-5.11.0.ebuild b/dev-python/pbr/pbr-5.11.0.ebuild
25 deleted file mode 100644
26 index 1ebeff6fa025..000000000000
27 --- a/dev-python/pbr/pbr-5.11.0.ebuild
28 +++ /dev/null
29 @@ -1,73 +0,0 @@
30 -# Copyright 1999-2023 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_TESTED=( python3_{9..11} )
37 -PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" pypy3 )
38 -PYTHON_REQ_USE="threads(+)"
39 -
40 -inherit distutils-r1
41 -
42 -DESCRIPTION="Inject some useful and sensible default behaviors into setuptools"
43 -HOMEPAGE="
44 - https://opendev.org/openstack/pbr/
45 - https://github.com/openstack/pbr/
46 - https://pypi.org/project/pbr/
47 -"
48 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
49 -
50 -LICENSE="Apache-2.0"
51 -SLOT="0"
52 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux"
53 -
54 -RDEPEND="
55 - >=dev-python/setuptools-60.5.0[${PYTHON_USEDEP}]
56 -"
57 -# git is needed for tests, see https://bugs.launchpad.net/pbr/+bug/1326682 and https://bugs.gentoo.org/show_bug.cgi?id=561038
58 -# docutils is needed for sphinx exceptions... https://bugs.gentoo.org/show_bug.cgi?id=603848
59 -# stestr is run as external tool
60 -BDEPEND="
61 - test? (
62 - $(python_gen_cond_dep '
63 - >=dev-python/wheel-0.32.0[${PYTHON_USEDEP}]
64 - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
65 - >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
66 - >=dev-python/six-1.12.0[${PYTHON_USEDEP}]
67 - dev-python/sphinx[${PYTHON_USEDEP}]
68 - >=dev-python/testresources-2.0.0[${PYTHON_USEDEP}]
69 - >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
70 - >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
71 - >=dev-python/virtualenv-20.0.3[${PYTHON_USEDEP}]
72 - dev-vcs/git
73 - ' "${PYTHON_TESTED[@]}")
74 - )
75 -"
76 -
77 -distutils_enable_tests unittest
78 -
79 -python_prepare_all() {
80 - # TODO: investigate
81 - sed -e 's:test_console_script_develop:_&:' \
82 - -e 's:test_console_script_install:_&:' \
83 - -e 's:test_setup_py_keywords:_&:' \
84 - -i pbr/tests/test_core.py || die
85 - # network
86 - rm pbr/tests/test_wsgi.py || die
87 - # installs random packages via pip from the Internet
88 - sed -e 's:test_requirement_parsing:_&:' \
89 - -e 's:test_pep_517_support:_&:' \
90 - -i pbr/tests/test_packaging.py || die
91 -
92 - distutils-r1_python_prepare_all
93 -}
94 -
95 -python_test() {
96 - if ! has "${EPYTHON}" "${PYTHON_TESTED[@]/_/.}"; then
97 - einfo "Testing on ${EPYTHON} is not supported at the moment"
98 - return
99 - fi
100 -
101 - eunittest -b
102 -}