diff options
author | Sam James <sam@gentoo.org> | 2023-12-28 03:31:53 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-12-28 03:31:53 +0000 |
commit | 61ead7eb5b6586b6e1af2cf77eefa20d66bf4209 (patch) | |
tree | 513d1cd56c114c85ee492816da08f44c4eb61024 /dev-vcs | |
parent | media-gfx/graphicsmagick: drop 1.3.40-r1 (diff) | |
download | gentoo-61ead7eb5b6586b6e1af2cf77eefa20d66bf4209.tar.gz gentoo-61ead7eb5b6586b6e1af2cf77eefa20d66bf4209.tar.bz2 gentoo-61ead7eb5b6586b6e1af2cf77eefa20d66bf4209.zip |
dev-vcs/git-extras: drop 6.5.0, 7.0.0
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/git-extras/Manifest | 2 | ||||
-rw-r--r-- | dev-vcs/git-extras/files/git-extras-6.5.0-no-bash-completion-install.patch | 20 | ||||
-rw-r--r-- | dev-vcs/git-extras/git-extras-6.5.0.ebuild | 51 | ||||
-rw-r--r-- | dev-vcs/git-extras/git-extras-7.0.0.ebuild | 50 |
4 files changed, 0 insertions, 123 deletions
diff --git a/dev-vcs/git-extras/Manifest b/dev-vcs/git-extras/Manifest index 2c6914730d08..9531b1d6a9b1 100644 --- a/dev-vcs/git-extras/Manifest +++ b/dev-vcs/git-extras/Manifest @@ -1,3 +1 @@ -DIST git-extras-6.5.0.tar.gz 167015 BLAKE2B 44331744399f55f9c6bba26bd0eef95e87a5b8ed0a216f3a4a71397fd2ac7aad4325ef787e1970f54c5b8732d0d291c20d6103c8549f3a1eb315bd7fe884337e SHA512 1dbf350ab822f5317d57ca7b90b914a71d3ad83746a79a369e221d20ade606b07a8b0f702610f50d1551c5c3ca12517df18106c6066745b40bf966052bbe9a46 -DIST git-extras-7.0.0.tar.gz 169165 BLAKE2B 8b6ae331b761729d5f92cd350bf21f4f5ebb5098092e224f49db9fe5ef2cbdcd3fc2783af2fb74a8d22008d35675d9a753e753d5fa60e586dbbde919dab7ff80 SHA512 0768ea3de95f5b3de1912dced2c889c2dff823d5c4b8a796c73da043af36b75b3194760a30e8fe7c2525b681fe81fa45a438d0481f4a5166ff6de6d5d7d05927 DIST git-extras-7.1.0.tar.gz 176733 BLAKE2B 697f09c2993e85595620e272465ad2f4afa3bbd456a1041b92b01a98f962f3aa1fb5f22f1c9ef7e484b87734e8c9e8d15da15f71fb345b9049dd5bb1b98093c9 SHA512 955161b40c48ab92578efe487db78ea8d0fff499aaf8d4da2b13e8194a7f9297a84542c8642dd3a7c61c9a4d1e92342b5c586d341e4a003c9838d5e9731127b9 diff --git a/dev-vcs/git-extras/files/git-extras-6.5.0-no-bash-completion-install.patch b/dev-vcs/git-extras/files/git-extras-6.5.0-no-bash-completion-install.patch deleted file mode 100644 index f266c1562d91..000000000000 --- a/dev-vcs/git-extras/files/git-extras-6.5.0-no-bash-completion-install.patch +++ /dev/null @@ -1,20 +0,0 @@ -We shouldn't install this manually 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/completions -- cp -f etc/bash_completion.sh $(DESTDIR)$(SYSCONFDIR)/bash-completion/completions/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" -@@ -119,7 +117,6 @@ uninstall: - echo "... uninstalling $(DESTDIR)$(MANPREFIX)/$(notdir $(MAN))"; \ - rm -f $(DESTDIR)$(MANPREFIX)/$(notdir $(MAN)); \ - ) -- rm -f $(DESTDIR)$(SYSCONFDIR)/bash-completion/completions/git-extras - - clean: docclean - diff --git a/dev-vcs/git-extras/git-extras-6.5.0.ebuild b/dev-vcs/git-extras/git-extras-6.5.0.ebuild deleted file mode 100644 index 876db89e90ea..000000000000 --- a/dev-vcs/git-extras/git-extras-6.5.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -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.5.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_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 -} diff --git a/dev-vcs/git-extras/git-extras-7.0.0.ebuild b/dev-vcs/git-extras/git-extras-7.0.0.ebuild deleted file mode 100644 index da720ba1dcd1..000000000000 --- a/dev-vcs/git-extras/git-extras-7.0.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit bash-completion-r1 - -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 ~arm64 ~x64-macos" - -RDEPEND=" - >=app-shells/bash-4.0:* - dev-vcs/git -" - -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_compile() { - return -} - -src_install() { - emake \ - DESTDIR="${D}" \ - PREFIX="${EPREFIX}/usr" \ - SYSCONFDIR="${EPREFIX}/etc" \ - COMPL_DIR="${D}/$(get_bashcompdir)" \ - 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 -} |