diff options
author | Sam James <sam@gentoo.org> | 2022-01-01 09:33:06 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-01-01 09:38:26 +0000 |
commit | 0d2c426d256a4abb904294125d7d6332aad423b5 (patch) | |
tree | 278eb075880d59ef9b547c2aa233b4f6abedc446 /dev-vcs | |
parent | sys-process/parallel: drop 20211022 (diff) | |
download | gentoo-0d2c426d256a4abb904294125d7d6332aad423b5.tar.gz gentoo-0d2c426d256a4abb904294125d7d6332aad423b5.tar.bz2 gentoo-0d2c426d256a4abb904294125d7d6332aad423b5.zip |
dev-vcs/git-extras: drop 6.2.0
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/git-extras/Manifest | 1 | ||||
-rw-r--r-- | dev-vcs/git-extras/git-extras-6.2.0.ebuild | 55 |
2 files changed, 0 insertions, 56 deletions
diff --git a/dev-vcs/git-extras/Manifest b/dev-vcs/git-extras/Manifest index 7195a2e25fc9..7ea512d9e657 100644 --- a/dev-vcs/git-extras/Manifest +++ b/dev-vcs/git-extras/Manifest @@ -1,2 +1 @@ -DIST git-extras-6.2.0.tar.gz 156703 BLAKE2B 71e3be3f56ca049d2060c79b8dd52aacf613d9157fc5d6fa76c827b59e9355f16903cce94e09dcf73e0c7c4f81b422a37234dbc8f9eb146ca9925da8778ea2dc SHA512 b2e36f887eb101b56734a824f2a3068c568dfca19172733e9263234c1a0f241440727d79bb37aa22c201fd679f37e87c10e521f68a914ec6345b294964fd3d08 DIST git-extras-6.3.0.tar.gz 159258 BLAKE2B 263e192015e46da7867f131c19ae47243e60355cba02b1860b45abafdc4fc6adf916dffce58b853960d8bb22f5da067e1dca6ed0b02f108953571896d1c981c4 SHA512 2be0a6f3f3907754638ffd975b0b28908e8c9490418fa170f47a73a2cdc9d0b8fd5d11e4734440ffe3114cd63aa7decf8b1cafc78a63d2794d06f7fcd2925ead diff --git a/dev-vcs/git-extras/git-extras-6.2.0.ebuild b/dev-vcs/git-extras/git-extras-6.2.0.ebuild deleted file mode 100644 index 8076a70196d7..000000000000 --- a/dev-vcs/git-extras/git-extras-6.2.0.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Git utilities -- repo summary, repl, changelog population, author commit percentages and 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 -} |