diff options
author | William Hubbs <williamh@gentoo.org> | 2019-07-25 09:21:54 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2019-07-25 09:22:01 -0500 |
commit | fee52cce001725cf56da6d912586e76377bc0155 (patch) | |
tree | 65ff8c8b3cf92a9414da51a05d7940bbd5052bc3 /dev-vcs/hub/hub-2.2.9.ebuild | |
parent | dev-vcs/hub: 2.12.3 bump (diff) | |
download | gentoo-fee52cce001725cf56da6d912586e76377bc0155.tar.gz gentoo-fee52cce001725cf56da6d912586e76377bc0155.tar.bz2 gentoo-fee52cce001725cf56da6d912586e76377bc0155.zip |
dev-vcs/hub: remove some old versions
Package-Manager: Portage-2.3.66, Repoman-2.3.16
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'dev-vcs/hub/hub-2.2.9.ebuild')
-rw-r--r-- | dev-vcs/hub/hub-2.2.9.ebuild | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-vcs/hub/hub-2.2.9.ebuild b/dev-vcs/hub/hub-2.2.9.ebuild deleted file mode 100644 index e05d3627ad9b..000000000000 --- a/dev-vcs/hub/hub-2.2.9.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit bash-completion-r1 readme.gentoo-r1 - -DESCRIPTION="Command-line wrapper for git that makes you better at GitHub" -HOMEPAGE="https://github.com/github/hub" -SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="" - -DEPEND=">=dev-lang/go-1.5.1:=" -RDEPEND=">=dev-vcs/git-1.7.3" - -DOC_CONTENTS="You may want to add 'alias git=hub' to your .{csh,bash}rc" - -src_compile() { - ./script/build || die -} - -#src_test() { -# ./script/test || die -#} - -src_install() { - readme.gentoo_create_doc - - dobin bin/hub - - doman man/${PN}.1 - dodoc README.md - - newbashcomp etc/${PN}.bash_completion.sh ${PN} - - insinto /usr/share/zsh/site-functions - newins etc/hub.zsh_completion _${PN} -} - -pkg_postinst() { - readme.gentoo_print_elog -} |