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: Mon, 01 Mar 2021 16:20:26
Message-Id: 1614615553.7af267ce25a26015c4d37cb24d81807d3c827419.vapier@gentoo
1 commit: 7af267ce25a26015c4d37cb24d81807d3c827419
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 1 16:19:13 2021 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 1 16:19:13 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7af267ce
7
8 dev-vcs/repo: version bump to 2.12
9
10 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
11
12 dev-vcs/repo/Manifest | 1 +
13 dev-vcs/repo/repo-2.12.ebuild | 34 ++++++++++++++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-vcs/repo/Manifest b/dev-vcs/repo/Manifest
17 index 39fa8ed9ddb..6d6d5d43254 100644
18 --- a/dev-vcs/repo/Manifest
19 +++ b/dev-vcs/repo/Manifest
20 @@ -1,2 +1,3 @@
21 DIST repo-2.11 39791 BLAKE2B 535de238d934eb2717af7bddd960c158501a56dd400ae02f3665e30c34bd68a1973de4c84e2ea76f48aa027249dfd4270153f1a7d4c4a2d5d883b580f02664e9 SHA512 1889ee9c782a6dc90b782c8ca9c5411b97c4495e0d27add62b9661a5961a782096037e081e984c965e44d33459e8fe4428528b5ebfff9fe356ce401cb610480a
22 +DIST repo-2.12 43035 BLAKE2B 3a3b1997a09f08093aa2d5cf6c7a3747d6a9a6c29e6c199574757d4d87fdd57b7cc8b18bb1ddfa7c47392f73a22211f996f6ba8175448162e305106c9ac6cafe SHA512 409525040ec8fe6c6a6d923c4e23ab93f5ccc62d01d310ad6b56d55f45d88c2bf469e9b46943e799b8d5238cbc0a9610d0f64f35cf0f3a68b79cbd8c92f044a3
23 DIST repo-2.8 39134 BLAKE2B af52a2c06e09de83100cb297d585f89bcbe85d6e9e5c358024a371ee4d47c59992745d1088b164fc670cdd9db7394a5f3521967e3eb80840c53993af8b0172b1 SHA512 6d577fce34eb298035a7b98c24fc21521c8c9efbdf02abc37af8a54552893ecf8cdce2db5efbc5398d7f99226408f6cc9ce2f81c2961d9d5dd21fb0264194431
24
25 diff --git a/dev-vcs/repo/repo-2.12.ebuild b/dev-vcs/repo/repo-2.12.ebuild
26 new file mode 100644
27 index 00000000000..ff627b49534
28 --- /dev/null
29 +++ b/dev-vcs/repo/repo-2.12.ebuild
30 @@ -0,0 +1,34 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +# NB: The $PV tracks the *repo launcher version*, not the last signed release
35 +# of the repo project. The launcher only gets a new update when changes are
36 +# made in it.
37 +
38 +EAPI="7"
39 +
40 +PYTHON_COMPAT=( python3_{7..9} )
41 +
42 +inherit python-r1
43 +
44 +DESCRIPTION="Google tool for managing git, particularly multiple repos"
45 +HOMEPAGE="https://gerrit.googlesource.com/git-repo"
46 +SRC_URI="https://storage.googleapis.com/git-repo-downloads/${P}"
47 +
48 +LICENSE="Apache-2.0"
49 +SLOT="0"
50 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
51 +IUSE=""
52 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
53 +
54 +RDEPEND="${PYTHON_DEPS}
55 + !app-admin/radmind
56 + !dev-util/repo"
57 +
58 +S=${WORKDIR}
59 +
60 +src_unpack() { :; }
61 +
62 +src_install() {
63 + python_foreach_impl python_newscript "${DISTDIR}/${P}" ${PN}
64 +}