summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-04-25 02:43:16 +0100
committerSam James <sam@gentoo.org>2023-04-25 02:57:11 +0100
commit39b103de845be0c0d67657e9a53515cfe20eef7b (patch)
tree68877019fc9786cd55719848fa35a0fae8340e35 /dev-vcs/git-extras
parentsys-boot/palo: drop 2.15 (diff)
downloadgentoo-39b103de845be0c0d67657e9a53515cfe20eef7b.tar.gz
gentoo-39b103de845be0c0d67657e9a53515cfe20eef7b.tar.bz2
gentoo-39b103de845be0c0d67657e9a53515cfe20eef7b.zip
dev-vcs/git-extras: drop 6.4.0
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-vcs/git-extras')
-rw-r--r--dev-vcs/git-extras/Manifest1
-rw-r--r--dev-vcs/git-extras/files/git-extras-6.1.0-no-bash-completion-install.patch12
-rw-r--r--dev-vcs/git-extras/git-extras-6.4.0.ebuild55
3 files changed, 0 insertions, 68 deletions
diff --git a/dev-vcs/git-extras/Manifest b/dev-vcs/git-extras/Manifest
index 676a43dea2a9..1f6b7fb5acc2 100644
--- a/dev-vcs/git-extras/Manifest
+++ b/dev-vcs/git-extras/Manifest
@@ -1,2 +1 @@
-DIST git-extras-6.4.0.tar.gz 163508 BLAKE2B bffbc8efcf1cf030bceb20b953e1cbbc067c8383ced38b786c21eb9bd9b7d3febd3d8aae652c0dd731de688d3cfa225c3aec91d6b9c590459b576db113ca0af0 SHA512 1b28d09d294f6d060b7639401e56c8d5e762614b5f6928ee6267e49af943e349e2399558ebac60008e8240218c13f00f8aea7dc07b71fec1e2dc25487bc847a3
DIST git-extras-6.5.0.tar.gz 167015 BLAKE2B 44331744399f55f9c6bba26bd0eef95e87a5b8ed0a216f3a4a71397fd2ac7aad4325ef787e1970f54c5b8732d0d291c20d6103c8549f3a1eb315bd7fe884337e SHA512 1dbf350ab822f5317d57ca7b90b914a71d3ad83746a79a369e221d20ade606b07a8b0f702610f50d1551c5c3ca12517df18106c6066745b40bf966052bbe9a46
diff --git a/dev-vcs/git-extras/files/git-extras-6.1.0-no-bash-completion-install.patch b/dev-vcs/git-extras/files/git-extras-6.1.0-no-bash-completion-install.patch
deleted file mode 100644
index c1d606c3a38c..000000000000
--- a/dev-vcs/git-extras/files/git-extras-6.1.0-no-bash-completion-install.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-We shouldn't install this manually via the Makefile - or to that location.
---- a/Makefile
-+++ b/Makefile
-@@ -69,8 +69,6 @@ install: check
- cp -f man/git-*.1 $(DESTDIR)$(MANPREFIX); \
- echo "cp -f man/git-*.1 $(DESTDIR)$(MANPREFIX)"; \
- fi
-- @mkdir -p $(DESTDIR)$(SYSCONFDIR)/bash_completion.d
-- cp -f etc/bash_completion.sh $(DESTDIR)$(SYSCONFDIR)/bash_completion.d/git-extras
- @echo ""
- @echo "If you are a zsh user, you may want to 'source $(CODE_DIR)etc/git-extras-completion.zsh'" \
- "and put this line into ~/.zshrc to enable zsh completion"
diff --git a/dev-vcs/git-extras/git-extras-6.4.0.ebuild b/dev-vcs/git-extras/git-extras-6.4.0.ebuild
deleted file mode 100644
index 5cf7cb509f5a..000000000000
--- a/dev-vcs/git-extras/git-extras-6.4.0.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Git utilities -- repo summary, repl, changelog population, and many more"
-HOMEPAGE="https://github.com/tj/git-extras"
-SRC_URI="https://github.com/tj/git-extras/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x64-macos"
-
-RDEPEND="
- app-shells/bash
- dev-vcs/git
-"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-6.1.0-no-bash-completion-install.patch
-)
-
-src_prepare() {
- default
-
- # For now, don't force including the git completion
- # sed -i -e "1 i source $(get_bashcompdir)\/git" etc/bash_completion.sh || die
-}
-
-src_configure() {
- return
-}
-
-src_compile() {
- return
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- PREFIX="${EPREFIX}/usr" \
- SYSCONFDIR="${EPREFIX}/etc" \
- install
-
- # TODO: Unfortunately, none of the completion seems to
- # actually work for me yet(?)
-
- #newbashcomp "${S}"/etc/bash_completion.sh ${PN}
-
- #insinto /usr/share/zsh/site-functions
- #newins "${S}"/etc/${PN}-completion.zsh _${PN}
-
- #insinto /usr/share/fish/vendor_completions.d
- #doins "${S}"/etc/${PN}.fish
-}