Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/repo/
Date: Tue, 23 Aug 2022 15:59:02
Message-Id: 1661270327.4283dbfebf6e8a84509268a3b5acb6d6be7b8a43.vapier@gentoo
1 commit: 4283dbfebf6e8a84509268a3b5acb6d6be7b8a43
2 Author: Mike Frysinger <vapier <AT> chromium <DOT> org>
3 AuthorDate: Tue Aug 23 15:56:11 2022 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 23 15:58:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4283dbfe
7
8 dev-vcs/repo: version bump to 2.29
9
10 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
11
12 dev-vcs/repo/Manifest | 1 +
13 dev-vcs/repo/repo-2.29.ebuild | 34 ++++++++++++++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-vcs/repo/Manifest b/dev-vcs/repo/Manifest
17 index c70161526a6d..11f2abce51d2 100644
18 --- a/dev-vcs/repo/Manifest
19 +++ b/dev-vcs/repo/Manifest
20 @@ -1 +1,2 @@
21 DIST repo-2.21.tar.gz 232514 BLAKE2B e77555164e754f9d2c2392965512127593ae8073d3f317e483187f06f67df784127511e36c4c32bef05db98ddb333e9fa72804ec89761cafa86529174e902677 SHA512 08b49b450eef087ac00e603bf0f394442998a076034418b7af60b9a5b293df4f1fc340844dfd2dfff1fcc61eb99885ec02f331d4fb2b0ba1e347af0674fa063a
22 +DIST repo-2.29.tar.gz 248253 BLAKE2B 6b51a0416634eab52f44410fe156c736a6c69234345b4cf5115692a9b56d479c0bce780583fb2ee6b9ca206e5163adbf6ded85ff5d7f2b174a7e7cd6dc37dd57 SHA512 7323b52709164999a80172bc39398ad9989c3eb97bcfda66a675c3f94792cdd742068d47bbcc66dc8fffbe3b661c2fb19332a72a7f889a249f73fa448fcb32d1
23
24 diff --git a/dev-vcs/repo/repo-2.29.ebuild b/dev-vcs/repo/repo-2.29.ebuild
25 new file mode 100644
26 index 000000000000..f65cdd0c6678
27 --- /dev/null
28 +++ b/dev-vcs/repo/repo-2.29.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +# NB: The ${PV} tracks the *repo launcher version*, not the last signed release
34 +# of the repo project. The launcher only gets a new update when changes are
35 +# made in it.
36 +
37 +EAPI="7"
38 +
39 +PYTHON_COMPAT=( python3_{8..10} )
40 +
41 +inherit bash-completion-r1 python-r1
42 +
43 +DESCRIPTION="Google tool for managing git, particularly multiple repos"
44 +HOMEPAGE="https://gerrit.googlesource.com/git-repo"
45 +SRC_URI="https://github.com/GerritCodeReview/git-repo/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
50 +IUSE=""
51 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
52 +
53 +RDEPEND="${PYTHON_DEPS}
54 + !app-admin/radmind
55 + !dev-util/repo"
56 +
57 +S="${WORKDIR}/git-${P}"
58 +
59 +src_install() {
60 + python_foreach_impl python_doscript ${PN}
61 + newbashcomp completion.bash ${PN}
62 + doman man/*.[0-9]
63 +}