Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-tools/
Date: Fri, 08 May 2020 04:36:17
Message-Id: 1588912572.a6536e1226c20495cd281fd3b08d4c396c3bd822.robbat2@gentoo
1 commit: a6536e1226c20495cd281fd3b08d4c396c3bd822
2 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 8 04:36:02 2020 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Fri May 8 04:36:12 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6536e12
7
8 dev-vcs/git-tools: bump
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
12
13 dev-vcs/git-tools/Manifest | 1 +
14 dev-vcs/git-tools/git-tools-2019.11.ebuild | 29 +++++++++++++++++++++++++++++
15 2 files changed, 30 insertions(+)
16
17 diff --git a/dev-vcs/git-tools/Manifest b/dev-vcs/git-tools/Manifest
18 index 38d383b8c74..270fa4cf04a 100644
19 --- a/dev-vcs/git-tools/Manifest
20 +++ b/dev-vcs/git-tools/Manifest
21 @@ -1 +1,2 @@
22 DIST git-tools-2017.10.tar.gz 28049 BLAKE2B 64b5f90468226dbeb4222f0f7be77846deffa836d6743e970c9bffced699c563712c24851e112a922faf3ae4b56ecc8daf0f5f772936c43a95c3907a244a6efa SHA512 60b3006de64a4c26f00241b60d45ef8258999dabfc0a8ad1c7d6d6b386dc56caf8c3b6cd0edbce5e27277c8f900b736fe1e26c6a68ee2179f563d00d65fd7cfe
23 +DIST git-tools-2019.11.tar.gz 28769 BLAKE2B 97dc7dd238b921075cd82cce9a0368309c9cbfd946715063cc05d0638987c81ae81dda10a6a24f8753a6e84bd558c86efea0bbc743d0a63265187924b66536d7 SHA512 091186d78f69bbc5c7b4673d1a3018d642aaf1b6820d7d995712bb41e9da861576f1ad780c5d2380ba75f80843e7cf101bc9e2409bd36f7dcbdb78fe923a8736
24
25 diff --git a/dev-vcs/git-tools/git-tools-2019.11.ebuild b/dev-vcs/git-tools/git-tools-2019.11.ebuild
26 new file mode 100644
27 index 00000000000..37ed8e1ea2d
28 --- /dev/null
29 +++ b/dev-vcs/git-tools/git-tools-2019.11.ebuild
30 @@ -0,0 +1,29 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=( python3_{6,7,8} )
36 +inherit python-r1
37 +
38 +DESCRIPTION="Assorted git-related scripts"
39 +HOMEPAGE="https://github.com/MestreLion/git-tools"
40 +SRC_URI="https://github.com/MestreLion/git-tools/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-3+"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
45 +IUSE=""
46 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
47 +
48 +DEPEND="${PYTHON_DEPS}"
49 +RDEPEND="${DEPEND}
50 + >=dev-vcs/git-2.5
51 + >=app-shells/bash-4.0"
52 +
53 +src_install() {
54 + dobin git-branches-rename git-clone-subset git-find-uncommitted-repos
55 + dobin git-rebase-theirs git-strip-merge
56 + python_foreach_impl python_doscript git-restore-mtime
57 + doman man1/*.1
58 + einstalldocs
59 +}