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: Wed, 19 Feb 2020 23:46:42
Message-Id: 1582155772.8f9b20902029858d5f2b55dfd5ab4a6ed3768c78.vapier@gentoo
1 commit: 8f9b20902029858d5f2b55dfd5ab4a6ed3768c78
2 Author: Mike Frysinger <vapier <AT> chromium <DOT> org>
3 AuthorDate: Wed Feb 19 23:42:46 2020 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 19 23:42:52 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f9b2090
7
8 dev-vcs/repo: add 1.27 for frozen python2 branch
9
10 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
11
12 dev-vcs/repo/Manifest | 1 +
13 dev-vcs/repo/repo-1.27.ebuild | 31 +++++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/dev-vcs/repo/Manifest b/dev-vcs/repo/Manifest
17 index 7099d301c88..917cc976b13 100644
18 --- a/dev-vcs/repo/Manifest
19 +++ b/dev-vcs/repo/Manifest
20 @@ -1,2 +1,3 @@
21 DIST repo-1.26 29829 BLAKE2B c5dc74214d404e6c11189a3d34c9a771ed5689da14e64588b5db144b6ea3ec38a727238d7dc6e609a22edb5b84d350210564615016f6b36599cf9e3fc3b34ef9 SHA512 1398fab95b4fb4a24fda93d4054384a801b5b70e3dca3a794f458d8e19582ef833ef5a3a0f3a571121d2d9172ce0e70f8b3c6719f6c2f47643ffe6de181e34b4
22 +DIST repo-1.27 29945 BLAKE2B 930fa876b8889d64c8d12444f4cd59bebbdf9848d455e114fc9306922d931aa721320db65a07c38f705c39950538a1d5ae5ca66e359d2f2e38061d144ac11cb2 SHA512 a9f651e5fd1da1c74b31aebf32d03cf868183fa529eaf2b079015f9e778a2bb7c1ef49e06564703534c45fa1bd7bc5bd3d91a91477c336e549c1208afa74ace6
23 DIST repo-2.3 31280 BLAKE2B b637a226c19bd04350f25c27924b8c4951be1ae09c3ee3f12643d5e2d983e51ee181b22c553ad7fbf6cc0457e0621fe083e21d8e577cd2b87c74d3cfd107ee69 SHA512 3c83799fbc1846730c085a43c603938b8daa8bb7792e130a55cd508cf416b67fa025e77f20770c6b65f9ee3fa1aa7240d47bfb8e9a3835ac5ea11e1fce9112e2
24
25 diff --git a/dev-vcs/repo/repo-1.27.ebuild b/dev-vcs/repo/repo-1.27.ebuild
26 new file mode 100644
27 index 00000000000..280f73384ee
28 --- /dev/null
29 +++ b/dev-vcs/repo/repo-1.27.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 1999-2020 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. They are confusingly different currently.
36 +
37 +EAPI="7"
38 +
39 +PYTHON_COMPAT=( python2_7 )
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 +}