Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/git-review/
Date: Fri, 24 Jun 2022 02:29:08
Message-Id: 1656037729.63b4524a5b2a5a49584c4281a57205402c545f08.prometheanfire@gentoo
1 commit: 63b4524a5b2a5a49584c4281a57205402c545f08
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 24 02:28:49 2022 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 24 02:28:49 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63b4524a
7
8 dev-python/git-review: 2.3.1 bump
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 dev-python/git-review/Manifest | 1 +
14 dev-python/git-review/git-review-2.3.1.ebuild | 34 +++++++++++++++++++++++++++
15 2 files changed, 35 insertions(+)
16
17 diff --git a/dev-python/git-review/Manifest b/dev-python/git-review/Manifest
18 index acc6ae826514..da74fff27a82 100644
19 --- a/dev-python/git-review/Manifest
20 +++ b/dev-python/git-review/Manifest
21 @@ -1 +1,2 @@
22 DIST git-review-2.3.0.tar.gz 66005 BLAKE2B b074811614093058525ec817770d9d1d0d0adc4f154ec7a8882406c1954672063e3cd58df28d0ce17735b5a135f0a6be97657207e16dbe8b7719e9b6f77aea28 SHA512 841ea039e73e2571ee01ba08781d82c5ee0c136be092d2f7ff44e59284f2e77d57537ef5aef3eaf24a0f93f63106fd2404e1ec89745a723386944b5e0b32faf0
23 +DIST git-review-2.3.1.tar.gz 66400 BLAKE2B 67b2bf60e91a127144995231b94a48eaa03cfe8cb8e27513183f21b4cae1fbe2eeaa00a23d21da2dd7258aa794ce4cb0ee06e91510d707116699da1702bbebac SHA512 b3fe0ab40c473c80da20c42b4104e82115c9ea02bda01580aedb69622e117d733160eb42027432eec12379250186ea7b6f9eb4cb86b128a591816243a0c0fadc
24
25 diff --git a/dev-python/git-review/git-review-2.3.1.ebuild b/dev-python/git-review/git-review-2.3.1.ebuild
26 new file mode 100644
27 index 000000000000..16e5454edee8
28 --- /dev/null
29 +++ b/dev-python/git-review/git-review-2.3.1.ebuild
30 @@ -0,0 +1,34 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Tool to submit code to Gerrit"
42 +HOMEPAGE="https://git.openstack.org/cgit/openstack-infra/git-review"
43 +if [[ ${PV} == 9999* ]]; then
44 + inherit git-r3
45 + EGIT_REPO_URI="https://opendev.org/opendev/${PN}.git"
46 +else
47 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
48 + KEYWORDS="~amd64 ~x86 ~x64-cygwin ~amd64-linux ~x86-linux"
49 +fi
50 +
51 +LICENSE="Apache-2.0"
52 +SLOT="0"
53 +
54 +BDEPEND="
55 + >=dev-python/pbr-4.1.0[${PYTHON_USEDEP}]
56 +"
57 +RDEPEND="
58 + >=dev-python/requests-1.1[${PYTHON_USEDEP}]
59 +"
60 +
61 +python_prepare_all() {
62 + sed -i -e '/manpages/,+1d' setup.cfg || die
63 + distutils-r1_python_prepare_all
64 +}