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, 10 Feb 2020 15:35:45
Message-Id: 1581348911.8008db53fdd68e204d91c9e3fcb87dbb1331f122.vapier@gentoo
1 commit: 8008db53fdd68e204d91c9e3fcb87dbb1331f122
2 Author: Mike Frysinger <vapier <AT> chromium <DOT> org>
3 AuthorDate: Mon Feb 10 15:32:39 2020 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 10 15:35:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8008db53
7
8 dev-vcs/repo: version bump to 2.0
9
10 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
11
12 dev-vcs/repo/Manifest | 1 +
13 dev-vcs/repo/repo-2.0.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-vcs/repo/Manifest b/dev-vcs/repo/Manifest
17 index 71ea0be1a2e..d1a31630684 100644
18 --- a/dev-vcs/repo/Manifest
19 +++ b/dev-vcs/repo/Manifest
20 @@ -1 +1,2 @@
21 DIST repo-1.26 29829 BLAKE2B c5dc74214d404e6c11189a3d34c9a771ed5689da14e64588b5db144b6ea3ec38a727238d7dc6e609a22edb5b84d350210564615016f6b36599cf9e3fc3b34ef9 SHA512 1398fab95b4fb4a24fda93d4054384a801b5b70e3dca3a794f458d8e19582ef833ef5a3a0f3a571121d2d9172ce0e70f8b3c6719f6c2f47643ffe6de181e34b4
22 +DIST repo-2.0 30067 BLAKE2B 23aaae97c8512e329a4293d82c4e65583861d515dc079fdddbb73473ea0aeb3951315fa7595c70695cf94f030ed2bc97b134ff2aafe774b552132ac8cf4f4045 SHA512 a83525fa87a3fba8d78af1305dd92f5e51f58430bff20f63b8b743ad94d382ecf3edc1888c78f9da4be4d379bfa3ccde79aae5c1d8c173f928d3593ea42156bb
23
24 diff --git a/dev-vcs/repo/repo-2.0.ebuild b/dev-vcs/repo/repo-2.0.ebuild
25 new file mode 100644
26 index 00000000000..1632716eecc
27 --- /dev/null
28 +++ b/dev-vcs/repo/repo-2.0.ebuild
29 @@ -0,0 +1,32 @@
30 +# Copyright 1999-2020 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=( python{3_6,3_7,3_8} )
40 +
41 +inherit 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://storage.googleapis.com/git-repo-downloads/${P}"
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~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}
58 +
59 +src_install() {
60 + python_foreach_impl python_newscript "${DISTDIR}/${P}" ${PN}
61 +}