Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-extras/
Date: Sat, 01 Jan 2022 09:39:01
Message-Id: 1641029906.0d2c426d256a4abb904294125d7d6332aad423b5.sam@gentoo
1 commit: 0d2c426d256a4abb904294125d7d6332aad423b5
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 1 09:33:06 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 1 09:38:26 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d2c426d
7
8 dev-vcs/git-extras: drop 6.2.0
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-vcs/git-extras/Manifest | 1 -
13 dev-vcs/git-extras/git-extras-6.2.0.ebuild | 55 ------------------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/dev-vcs/git-extras/Manifest b/dev-vcs/git-extras/Manifest
17 index 7195a2e25fc9..7ea512d9e657 100644
18 --- a/dev-vcs/git-extras/Manifest
19 +++ b/dev-vcs/git-extras/Manifest
20 @@ -1,2 +1 @@
21 -DIST git-extras-6.2.0.tar.gz 156703 BLAKE2B 71e3be3f56ca049d2060c79b8dd52aacf613d9157fc5d6fa76c827b59e9355f16903cce94e09dcf73e0c7c4f81b422a37234dbc8f9eb146ca9925da8778ea2dc SHA512 b2e36f887eb101b56734a824f2a3068c568dfca19172733e9263234c1a0f241440727d79bb37aa22c201fd679f37e87c10e521f68a914ec6345b294964fd3d08
22 DIST git-extras-6.3.0.tar.gz 159258 BLAKE2B 263e192015e46da7867f131c19ae47243e60355cba02b1860b45abafdc4fc6adf916dffce58b853960d8bb22f5da067e1dca6ed0b02f108953571896d1c981c4 SHA512 2be0a6f3f3907754638ffd975b0b28908e8c9490418fa170f47a73a2cdc9d0b8fd5d11e4734440ffe3114cd63aa7decf8b1cafc78a63d2794d06f7fcd2925ead
23
24 diff --git a/dev-vcs/git-extras/git-extras-6.2.0.ebuild b/dev-vcs/git-extras/git-extras-6.2.0.ebuild
25 deleted file mode 100644
26 index 8076a70196d7..000000000000
27 --- a/dev-vcs/git-extras/git-extras-6.2.0.ebuild
28 +++ /dev/null
29 @@ -1,55 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -DESCRIPTION="Git utilities -- repo summary, repl, changelog population, author commit percentages and more"
36 -HOMEPAGE="https://github.com/tj/git-extras"
37 -SRC_URI="https://github.com/tj/git-extras/archive/${PV}.tar.gz -> ${P}.tar.gz"
38 -
39 -LICENSE="MIT"
40 -SLOT="0"
41 -KEYWORDS="~amd64 ~x64-macos"
42 -
43 -RDEPEND="
44 - app-shells/bash
45 - dev-vcs/git
46 -"
47 -
48 -PATCHES=(
49 - "${FILESDIR}"/${PN}-6.1.0-no-bash-completion-install.patch
50 -)
51 -
52 -src_prepare() {
53 - default
54 -
55 - # For now, don't force including the git completion
56 - # sed -i -e "1 i source $(get_bashcompdir)\/git" etc/bash_completion.sh || die
57 -}
58 -
59 -src_configure() {
60 - return
61 -}
62 -
63 -src_compile() {
64 - return
65 -}
66 -
67 -src_install() {
68 - emake \
69 - DESTDIR="${D}" \
70 - PREFIX="${EPREFIX}/usr" \
71 - SYSCONFDIR="${EPREFIX}/etc" \
72 - install
73 -
74 - # TODO: Unfortunately, none of the completion seems to
75 - # actually work for me yet(?)
76 -
77 - #newbashcomp "${S}"/etc/bash_completion.sh ${PN}
78 -
79 - #insinto /usr/share/zsh/site-functions
80 - #newins "${S}"/etc/${PN}-completion.zsh _${PN}
81 -
82 - #insinto /usr/share/fish/vendor_completions.d
83 - #doins "${S}"/etc/${PN}.fish
84 -}