dev-vcs/git-extras: version bump 6.10 and drop old

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Petrus Zhao <petrus.zy.07@gmail.com>
This commit is contained in:
Petrus Zhao
2020-10-04 17:03:20 +08:00
parent 3f4da19611
commit 45968e0810
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,36 @@
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit bash-completion-r1
DESCRIPTION="Little git extras"
HOMEPAGE="https://github.com/tj/git-extras"
if [[ "${PV}" == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="${HOMEPAGE}"
else
SRC_URI="https://github.com/tj/git-extras/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="MIT"
SLOT="0"
RDEPEND="dev-vcs/git"
src_compile() { :; }
src_install() {
emake install PREFIX="${EPREIFX}"/usr SYSCONFDIR="${EPREFIX}"/etc DESTDIR="${D}"
rm -rf "${D}"/etc/bash_completion.d
newbashcomp etc/bash_completion.sh "${PN}"
insinto /usr/share/zsh/site-functions
newins etc/git-extras-completion.zsh "_${PN}"
}