diff options
author | Justin Lecher <jlec@gentoo.org> | 2016-02-11 09:30:27 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2016-02-11 09:30:27 +0100 |
commit | 5a0d3de75ff5f18f8325d1aad326b36946feb3b1 (patch) | |
tree | da481fae395b0701e3227bc595e4318391191721 /dev-vcs | |
parent | dev-vcs/hub: Move to nextgen readme.gentoo eclass (diff) | |
download | betagarden-5a0d3de75ff5f18f8325d1aad326b36946feb3b1.tar.gz betagarden-5a0d3de75ff5f18f8325d1aad326b36946feb3b1.tar.bz2 betagarden-5a0d3de75ff5f18f8325d1aad326b36946feb3b1.zip |
dev-vcs/hub: Import latest tree changes
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/hub/hub-9999.ebuild | 34 |
1 files changed, 13 insertions, 21 deletions
diff --git a/dev-vcs/hub/hub-9999.ebuild b/dev-vcs/hub/hub-9999.ebuild index 0e6a05c..7d28df1 100644 --- a/dev-vcs/hub/hub-9999.ebuild +++ b/dev-vcs/hub/hub-9999.ebuild @@ -6,7 +6,7 @@ EAPI=6 inherit bash-completion-r1 git-r3 readme.gentoo-r1 -DESCRIPTION="command-line wrapper for git that makes you better at GitHub" +DESCRIPTION="Command-line wrapper for git that makes you better at GitHub" HOMEPAGE="http://defunkt.io/hub/" SRC_URI="" EGIT_REPO_URI="https://github.com/github/hub.git" @@ -14,43 +14,35 @@ EGIT_REPO_URI="https://github.com/github/hub.git" LICENSE="MIT" SLOT="0" KEYWORDS="" -IUSE="test" +IUSE="" -RDEPEND="dev-vcs/git" -DEPEND=" - dev-lang/go - test? ( - app-misc/tmux - dev-util/cucumber - dev-ruby/bundler - )" +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() { - bash ./script/build || die + ./script/build || die } -src_test() { - bash ./script/test || die -} +#src_test() { +# ./script/test || die +#} src_install() { - dobin ${PN} - readme.gentoo_create_doc - doman man/${PN}.1 + dobin hub - insinto /usr/share/${PN}/ - doins -r git-hooks + doman man/${PN}.1 + dodoc README.md # Broken with autoloader # https://github.com/github/hub/issues/592 - #newbashcomp etc/hub.bash_completion.sh ${PN} + #newbashcomp etc/${PN}.bash_completion.sh ${PN} insinto /usr/share/zsh/site-functions - newins etc/hub.zsh_completion ${PN} + newins etc/hub.zsh_completion _${PN} } pkg_postinst() { |