repo/gentoo:master commit in: dev-vcs/repo/
"Viorel Munteanu" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1786604863.2ce4fc33cc720f7d8e109bb03b76932fe6ba5133.ceamac@gentoo> |
commit: 2ce4fc33cc720f7d8e109bb03b76932fe6ba5133
Author: Mohsen Tahmasebi <moh53n <AT> moh53n <DOT> net>
AuthorDate: Wed Aug 5 12:17:08 2026 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Thu Aug 13 07:07:43 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ce4fc33
dev-vcs/repo: add 2.65
Signed-off-by: Mohsen Tahmasebi <moh53n <AT> moh53n.net>
Part-of: https://github.com/gentoo/gentoo/pull/46648
Closes: https://github.com/gentoo/gentoo/pull/46648
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
dev-vcs/repo/Manifest | 1 +
dev-vcs/repo/repo-2.65.ebuild | 34 ++++++++++++++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/dev-vcs/repo/Manifest b/dev-vcs/repo/Manifest
index 338592fd6a82..617acb0d42f4 100644
--- a/dev-vcs/repo/Manifest
+++ b/dev-vcs/repo/Manifest
@@ -1,3 +1,4 @@
DIST repo-2.53.tar.gz 289327 BLAKE2B 608c2d6f01fd25c5d51234a40c0305091a2a70081f5b3e60840a7ade8edfa9889f859d5de9d6449355e2cf0308dfa33250f4fb37e351fda3614ea08a3f73e6bc SHA512 d86d66774894369a514966cc11f46f7cfa464be65f7829a8189a92bb403657aea9f422397f977d2aa1b6e29b52f74bc5dccbad693419e37db92ab41281e9f24c
DIST repo-2.54.tar.gz 290193 BLAKE2B 248198614c88193926a467a4d7cda40a909d1f1e4756eeaeccb0b2df6e30b3419f62a70aa3b36e2780e8cb31ac192b1d165223ba22093658ead0b0d674eac158 SHA512 49c21dcd79442f4c595f75b7d0e301c095c37262b629688c626244c9e6c775f2127038a4302e87a3cc26628b82aaf7d3db457c0a15c1e3fc79080198cdfd1fdb
DIST repo-2.61.tar.gz 308528 BLAKE2B 359267cdd0b0fd92cc2444c70e9e0216f8a97cac024a8e1937b8195226d850c9ee69b8403b48599b92ec3940a0b09a876e2da383d2a44d65b72cbe3b87d40724 SHA512 e25b018f0f53eed78808f331d11d174b979e8d2d114be1c8fd49d4c4be751b5abbeabb76120ff05b5a7221785eb1b8ec700e3777176785c648ef42411d7c1cc0
+DIST repo-2.65.tar.gz 421634 BLAKE2B 3e999fd803497b66d756b2b3d8fcf985db628dc8624447aaa263d89d13182861847d4b2b060cb9173fc87e8ed5ee866f2cc2ae7dc47c45c87f6f0d1e0688e47a SHA512 77df8c7d6f332508d970b7c09cc7c927a99fdae14943ffe79387ba78695b59854a47b7deaad9b24ae37122ab182c1f4b639362e45d45d549bc4515b738f2c5a5
diff --git a/dev-vcs/repo/repo-2.65.ebuild b/dev-vcs/repo/repo-2.65.ebuild
new file mode 100644
index 000000000000..1a9e2b18cc1c
--- /dev/null
+++ b/dev-vcs/repo/repo-2.65.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# NB: The ${PV} tracks the *repo launcher version*, not the last signed release
+# of the repo project. The launcher only gets a new update when changes are
+# made in it.
+
+EAPI="8"
+
+PYTHON_COMPAT=( python3_{12..14} )
+
+inherit python-r1 shell-completion
+
+DESCRIPTION="Google tool for managing git, particularly multiple repos"
+HOMEPAGE="https://gerrit.googlesource.com/git-repo"
+SRC_URI="https://github.com/GerritCodeReview/git-repo/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+S="${WORKDIR}/git-${P}"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+ !app-admin/radmind
+"
+
+src_install() {
+ python_foreach_impl python_doscript ${PN}
+ newbashcomp completion.bash ${PN}
+ doman man/*.[0-9]
+}