ottxor 15/03/06 22:14:52 Modified: ChangeLog Added: hub-2.2.0.ebuild Log: version bump (bug #531890), fix zsh completion (bug #541850) (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key C2000586)
Revision Changes Path 1.15 dev-vcs/hub/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hub/ChangeLog?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hub/ChangeLog?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hub/ChangeLog?r1=1.14&r2=1.15 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-vcs/hub/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ChangeLog 5 Jan 2015 15:25:47 -0000 1.14 +++ ChangeLog 6 Mar 2015 22:14:51 -0000 1.15 @@ -1,6 +1,11 @@ # ChangeLog for dev-vcs/hub # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hub/ChangeLog,v 1.14 2015/01/05 15:25:47 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hub/ChangeLog,v 1.15 2015/03/06 22:14:51 ottxor Exp $ + +*hub-2.2.0 (06 Mar 2015) + + 06 Mar 2015; Christoph Junghans <[email protected]> +hub-2.2.0.ebuild: + version bump (bug #531890), fix zsh completion (bug #541850) *hub-1.12.4 (05 Jan 2015) 1.1 dev-vcs/hub/hub-2.2.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hub/hub-2.2.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hub/hub-2.2.0.ebuild?rev=1.1&content-type=text/plain Index: hub-2.2.0.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/hub/hub-2.2.0.ebuild,v 1.1 2015/03/06 22:14:51 ottxor Exp $ EAPI=5 inherit bash-completion-r1 readme.gentoo 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="zsh-completion" DEPEND=" >=dev-lang/go-1.4 " RDEPEND=" >=dev-vcs/git-1.7.3 zsh-completion? ( app-shells/zsh ) " DOC_CONTENTS="You may want to add 'alias git=hub' to your .{csh,bash}rc" src_compile() { ./script/build || die } src_install() { readme.gentoo_create_doc exeinto /usr/bin doexe hub doman man/${PN}.1 dodoc README.md newbashcomp etc/${PN}.bash_completion.sh ${PN} if use zsh-completion ; then insinto /usr/share/zsh/site-functions newins etc/hub.zsh_completion _${PN} fi }
