Gentoo Archives: gentoo-commits

From: Yixun Lan <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/repo/
Date: Thu, 11 Apr 2019 04:37:31
Message-Id: 1554957413.d3fe96695eb73271fe2a092fbc2ebda03f94c9f6.dlan@gentoo
1 commit: d3fe96695eb73271fe2a092fbc2ebda03f94c9f6
2 Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 11 04:35:54 2019 +0000
4 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 11 04:36:53 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3fe9669
7
8 dev-util/repo: version bump 1.13.2
9
10 which is the lastest stable version
11
12 Package-Manager: Portage-2.3.62, Repoman-2.3.12
13 Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
14
15 dev-util/repo/Manifest | 1 +
16 dev-util/repo/repo-1.13.2.ebuild | 29 +++++++++++++++++++++++++++++
17 2 files changed, 30 insertions(+)
18
19 diff --git a/dev-util/repo/Manifest b/dev-util/repo/Manifest
20 index 9920652fd04..1eb0d2e8660 100644
21 --- a/dev-util/repo/Manifest
22 +++ b/dev-util/repo/Manifest
23 @@ -1 +1,2 @@
24 DIST repo-1.12.37.tar.gz 115098 BLAKE2B 7a54afad5a3355edfab09be62c6881b4c0d3bc521c04313bb1dd428fc7a1c9a82a65186d20fd05d67227c88d2f6a30fd70f53f35dbfc0b6e7e668252ce6fbd9d SHA512 3ff6b5c3bcc8fba1861102035b86b59137e7dcebeab7a0fb01672da28473e1912c3cbac7c085e9b8d3fce404bd18095ba022d4978d83833f666bd31d621d5953
25 +DIST repo-1.13.2.tar.xz 103068 BLAKE2B 055ca4ffb55aa304a466e32e84e4ed23781f5be4dc82ce854a0f2352e4b785bec55a3ea23cacd06f758ace4b5351c33cd3e32ecfa0fbb04eb5f4b45349ff7196 SHA512 acd02ded7d817c718e29e1c61dcd83b4e40380de8d3450f5b30aef47f9c1ea4872f04e83299e57999318d43a26d407bf73159394d82700a4a2b30611e5f2e2c1
26
27 diff --git a/dev-util/repo/repo-1.13.2.ebuild b/dev-util/repo/repo-1.13.2.ebuild
28 new file mode 100644
29 index 00000000000..1123c98edd3
30 --- /dev/null
31 +++ b/dev-util/repo/repo-1.13.2.ebuild
32 @@ -0,0 +1,29 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +# 3.x is currently very buggy, only 2.7 actually works
39 +PYTHON_COMPAT=( python2_7 )
40 +
41 +inherit python-r1
42 +
43 +DESCRIPTION="Google tool for managing git, particularly multiple repos"
44 +HOMEPAGE="https://android.googlesource.com/tools/repo"
45 +# Should be:
46 +#SRC_URI="https://android.googlesource.com/tools/repo/+archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 +SRC_URI="https://dev.gentoo.org/~dlan/distfiles/repo-${PV}.tar.xz"
48 +
49 +LICENSE="Apache-2.0"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~x86"
52 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
53 +
54 +RDEPEND="${PYTHON_DEPS}
55 + !app-admin/radmind"
56 +DEPEND="${RDEPEND}"
57 +
58 +src_install() {
59 + python_foreach_impl python_fix_shebang ./repo
60 + python_foreach_impl python_doexe ./repo
61 +}