Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pbr/
Date: Tue, 20 Jun 2017 19:01:00
Message-Id: 1497984761.e9b4c8dd45e7b35d7e60f9b280b02046b9a4a3d1.prometheanfire@gentoo
1 commit: e9b4c8dd45e7b35d7e60f9b280b02046b9a4a3d1
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 20 18:52:41 2017 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 20 18:52:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9b4c8dd
7
8 dev-python/pbr: 3.1.0 bup
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 dev-python/pbr/Manifest | 1 +
13 dev-python/pbr/pbr-3.1.0.ebuild | 75 +++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 76 insertions(+)
15
16 diff --git a/dev-python/pbr/Manifest b/dev-python/pbr/Manifest
17 index 5fa618ca80f..b1c569f1cd5 100644
18 --- a/dev-python/pbr/Manifest
19 +++ b/dev-python/pbr/Manifest
20 @@ -5,3 +5,4 @@ DIST pbr-1.9.1.tar.gz 113439 SHA256 3997406c90894ebf3d1371811c1e099721440a901f94
21 DIST pbr-2.0.0.tar.gz 98568 SHA256 0ccd2db529afd070df815b1521f01401d43de03941170f8a800e7531faba265d SHA512 39540f54de674d4e50d6e9239328c0ac11ae6218a1483b023ab282efb797fc143d22334f60697ba81e2309c525860525ed0ce4858d66b187d2581fab9fae6b7d WHIRLPOOL 049df8e4fee3c65c04362cbbcda88047f9fa672caa1d1319bac5dfdf2452ddfd442e9e46bc832fad57831844eed1f0da4267fe3ae40b148948a9413aa5b155a2
22 DIST pbr-2.1.0.tar.gz 100858 SHA256 f71359a7e2de2f5ea1eceea7c1e3222f2560ee48e21eef6f96957bb5c2ebb94a SHA512 a4a7b1c96545bd25f63a439608f22bc04309c518f78f0044d18f10ce7c9ceeca3da97be527f0330c65d875900a3729dea99dade95787fb2ea75c3ae387b36938 WHIRLPOOL f82152ebb34ed21438853289c66ce326d39a57f6da7c28a31b9e43c26ab2a54ed9978cd398d5e7f28cdd94abcdc0017557d15af3458ec8f66b181fd5ef6de836
23 DIST pbr-3.0.1.tar.gz 100518 SHA256 d7e8917458094002b9a2e0030ba60ba4c834c456071f2d0c1ccb5265992ada91 SHA512 30ffb8f0c0184c7613add7094ff065d709d9c83e829f7e65ea60f5d1e0fbd267c3067aed8eff0c7767110b079e118141743f4f63185f8617925566ff14a40412 WHIRLPOOL eca2d4335399c2fe10ba7d5dd0ccda28d57d6c0ce8890f625765eab1e593c5b1a200a3cf433355ef898a9d2d5b9a67ce99ab88a13591a9cc363b0c6ee8b4fb40
24 +DIST pbr-3.1.0.tar.gz 102185 SHA256 b8af6ec309f4f3ab419b998b22073d66da55b36414e0b729cb04a408f6d73697 SHA512 23c69210485768e4acade72eff1c5be3168495c252d91d3c19128b73d4038e25f4e9a2516f61f0112f5f9ca327b1a4b8d3132cc272d93823129b4f563682d0b5 WHIRLPOOL 5608426a0e76d3507ec8b79f95eca0f15750ecb460e90fcc7ce42e7eed6b81efc1c7c9f15a486d84aecc5be1b358d4c063c1ae455b58c5405b348aa3977b3f9f
25
26 diff --git a/dev-python/pbr/pbr-3.1.0.ebuild b/dev-python/pbr/pbr-3.1.0.ebuild
27 new file mode 100644
28 index 00000000000..be0c6f6a459
29 --- /dev/null
30 +++ b/dev-python/pbr/pbr-3.1.0.ebuild
31 @@ -0,0 +1,75 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy 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="https://github.com/openstack-dev/pbr"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="Apache-2.0"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~x86 ~amd64-linux ~x86-linux"
49 +#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
50 +IUSE="test"
51 +
52 +# git is needed for tests, see https://bugs.launchpad.net/pbr/+bug/1326682 and https://bugs.gentoo.org/show_bug.cgi?id=561038
53 +# docutils is needed for sphinx exceptions... https://bugs.gentoo.org/show_bug.cgi?id=603848
54 +DEPEND="
55 + dev-python/setuptools[${PYTHON_USEDEP}]
56 + test? (
57 + >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
58 + !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
59 + >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
60 + >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
61 + >=dev-python/subunit-0.0.18[${PYTHON_USEDEP}]
62 + >=dev-python/sphinx-1.5.1[$(python_gen_usedep 'python2_7' 'python3_4' 'python3_5' 'python3_6')]
63 + !~dev-python/sphinx-1.6.1[$(python_gen_usedep 'python2_7' 'python3_4' 'python3_5' 'python3_6')]
64 + >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
65 + >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
66 + >=dev-python/testresources-0.2.4[${PYTHON_USEDEP}]
67 + >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
68 + >=dev-python/testtools-1.4.0[${PYTHON_USEDEP}]
69 + >=dev-python/virtualenv-13.1.0[${PYTHON_USEDEP}]
70 + dev-python/wheel[${PYTHON_USEDEP}]
71 + dev-python/docutils[${PYTHON_USEDEP}]
72 + dev-vcs/git
73 + )"
74 +PDEPEND=""
75 +
76 +# This normally actually belongs here.
77 +python_prepare_all() {
78 + # This test passes when run within the source and doesn't represent a failure, but rather
79 + # a gentoo sandbox constraint
80 + # Rm tests that rely upon the package being already installed and fail
81 + sed -e s':test_console_script_develop:_&:' \
82 + -e s':test_console_script_install:_&:' \
83 + -e s':test_sdist_extra_files:_&:' \
84 + -e s':test_command_hooks:_&:' \
85 + -e s':test_sdist_git_extra_files:_&:' \
86 + -i pbr/tests/test_core.py || die
87 + sed -e s':test_command_hooks:_&:' \
88 + -e s':test_global_setup_hooks:_&:' \
89 + -i pbr/tests/test_hooks.py || die
90 + sed \
91 + -e "s:test_wsgi_script_install:_&:" \
92 + -i pbr/tests/test_wsgi.py || die
93 + einfo "rogue tests disabled"
94 + sed -i '/^hacking/d' test-requirements.txt || die
95 +
96 + distutils-r1_python_prepare_all
97 +}
98 +
99 +python_test() {
100 + distutils_install_for_testing
101 +
102 + rm -rf .testrepository || die "couldn't remove '.testrepository' under ${EPTYHON}"
103 +
104 + testr init || die "testr init failed under ${EPYTHON}"
105 + testr run || die "testr run failed under ${EPYTHON}"
106 +}