commit: e6ea30b9567c6668c048e3461d5ff5002218d202
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 19 23:16:16 2025 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Fri Sep 19 23:16:31 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6ea30b9
dev-vcs/git-tools: bump; fixes upstream git what-changed deprecation
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
dev-vcs/git-tools/Manifest | 1 +
dev-vcs/git-tools/git-tools-2025.08.ebuild | 31 ++++++++++++++++++++++++++++++
2 files changed, 32 insertions(+)
diff --git a/dev-vcs/git-tools/Manifest b/dev-vcs/git-tools/Manifest
index cd6ce6e05081..1016f4a9e09c 100644
--- a/dev-vcs/git-tools/Manifest
+++ b/dev-vcs/git-tools/Manifest
@@ -1 +1,2 @@
DIST git-tools-2022.12.tar.gz 38072 BLAKE2B
3a7c1b4b4082af4ba4e6b6c5e061bf1c10cf58c8f25b7a3acac009fbac67ad10f68819bcd93561b8f76556bb4edf8ed3210300cd4e4733e1a777cf79e5c8532f
SHA512
ecd9cef6d4811b701d6770ae04bcd7c6811ed1e0086f96f3108d5d683816ea46b343e1eb653e3a529a5b540168775f458a48f85175292245257b063163904700
+DIST git-tools-2025.08.tar.gz 39070 BLAKE2B
9fc0cbafe6b1ccf1077a94768d173515d56418d2356ff44ef73bb4446eae78b3a36294e796fb9bb02ee91a8bad80a6d80af12eef03cb3a4478cbf08d8d6316ce
SHA512
0daa0865dcf75717203da09f1be4566772906451fcce2686d8f49dca3a2e87972ee9015c8f1c81c089e807dd5cb31fda9cb1be8b6b63c81e014a932063b9ca41
diff --git a/dev-vcs/git-tools/git-tools-2025.08.ebuild
b/dev-vcs/git-tools/git-tools-2025.08.ebuild
new file mode 100644
index 000000000000..5e11b2548a8b
--- /dev/null
+++ b/dev-vcs/git-tools/git-tools-2025.08.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..14} )
+inherit python-r1
+
+DESCRIPTION="Assorted git-related scripts"
+HOMEPAGE="https://github.com/MestreLion/git-tools"
+SRC_URI="https://github.com/MestreLion/git-tools/archive/v${PV}.tar.gz ->
${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}"
+RDEPEND="
+ ${DEPEND}
+ >=app-shells/bash-4.0
+ >=dev-vcs/git-2.49.1
+"
+
+src_install() {
+ dobin git-branches-rename git-clone-subset git-find-uncommitted-repos
+ dobin git-rebase-theirs git-strip-merge
+ python_foreach_impl python_doscript git-restore-mtime
+ doman man1/*.1
+ einstalldocs
+}