diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2013-05-31 23:14:44 +0000 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2013-05-31 23:14:44 +0000 |
commit | c77ef485723738f970145d0eb001450f85d1a534 (patch) | |
tree | 17e2f09f15c3957a8997dbc6c6bb004ac4aab337 /dev-vcs | |
parent | Version bump. (diff) | |
download | gentoo-2-c77ef485723738f970145d0eb001450f85d1a534.tar.gz gentoo-2-c77ef485723738f970145d0eb001450f85d1a534.tar.bz2 gentoo-2-c77ef485723738f970145d0eb001450f85d1a534.zip |
version bump (bug #471786, thx to Ewoud)
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key C2000586)
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/hub/ChangeLog | 8 | ||||
-rw-r--r-- | dev-vcs/hub/hub-1.10.6.ebuild (renamed from dev-vcs/hub/hub-1.10.4.ebuild) | 16 |
2 files changed, 16 insertions, 8 deletions
diff --git a/dev-vcs/hub/ChangeLog b/dev-vcs/hub/ChangeLog index f241b0da9f53..abbc76ed8151 100644 --- a/dev-vcs/hub/ChangeLog +++ b/dev-vcs/hub/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-vcs/hub # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hub/ChangeLog,v 1.2 2013/01/11 22:35:01 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hub/ChangeLog,v 1.3 2013/05/31 23:14:44 ottxor Exp $ + +*hub-1.10.6 (31 May 2013) + + 31 May 2013; Christoph Junghans <ottxor@gentoo.org> +hub-1.10.6.ebuild, + -hub-1.10.4.ebuild: + version bump (bug #471786, thx to Ewoud) 11 Jan 2013; Christoph Junghans <ottxor@gentoo.org> hub-1.10.4.ebuild: updated SRC_URI diff --git a/dev-vcs/hub/hub-1.10.4.ebuild b/dev-vcs/hub/hub-1.10.6.ebuild index 516566aba0fe..fe7b0a637a30 100644 --- a/dev-vcs/hub/hub-1.10.4.ebuild +++ b/dev-vcs/hub/hub-1.10.6.ebuild @@ -1,27 +1,29 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hub/hub-1.10.4.ebuild,v 1.2 2013/01/11 22:35:01 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hub/hub-1.10.6.ebuild,v 1.1 2013/05/31 23:14:44 ottxor Exp $ EAPI="5" USE_RUBY="ruby18 ruby19" RUBY_FAKEGEM_TASK_DOC= RUBY_FAKEGEM_EXTRADOC="HISTORY.md README.md" -RUBY_S="*-${PN}-*" -inherit ruby-fakegem +inherit readme.gentoo ruby-fakegem ruby_add_bdepend "test? ( dev-ruby/webmock dev-util/cucumber )" DESCRIPTION="command-line wrapper for git that makes you better at GitHub" HOMEPAGE="http://defunkt.io/hub/" -SRC_URI="mirror://github/defunkt/${PN}/tarball/v${PV} -> ${P}.tar.gz" +SRC_URI="https://github.com/defunkt/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" -DEPEND=">=dev-vcs/git-1.7.3" +RDEPEND=">=dev-vcs/git-1.7.3" -pkg_postinst() { - einfo "You may want to add 'alias git=hub' to your .bashrc" +DOC_CONTENTS="You may want to add 'alias git=hub' to your .{csh,bash}rc" + +src_install() { + ruby-ng_src_install + readme.gentoo_create_doc } |