Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-vcs/hub: hub-2.2.0.ebuild ChangeLog
Date: Fri, 06 Mar 2015 22:14:55
Message-Id: 20150306221452.0BC3613311@oystercatcher.gentoo.org
1 ottxor 15/03/06 22:14:52
2
3 Modified: ChangeLog
4 Added: hub-2.2.0.ebuild
5 Log:
6 version bump (bug #531890), fix zsh completion (bug #541850)
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key C2000586)
9
10 Revision Changes Path
11 1.15 dev-vcs/hub/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hub/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hub/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hub/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/hub/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 5 Jan 2015 15:25:47 -0000 1.14
24 +++ ChangeLog 6 Mar 2015 22:14:51 -0000 1.15
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-vcs/hub
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hub/ChangeLog,v 1.14 2015/01/05 15:25:47 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hub/ChangeLog,v 1.15 2015/03/06 22:14:51 ottxor Exp $
30 +
31 +*hub-2.2.0 (06 Mar 2015)
32 +
33 + 06 Mar 2015; Christoph Junghans <ottxor@g.o> +hub-2.2.0.ebuild:
34 + version bump (bug #531890), fix zsh completion (bug #541850)
35
36 *hub-1.12.4 (05 Jan 2015)
37
38
39
40
41 1.1 dev-vcs/hub/hub-2.2.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hub/hub-2.2.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/hub/hub-2.2.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hub-2.2.0.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/hub/hub-2.2.0.ebuild,v 1.1 2015/03/06 22:14:51 ottxor Exp $
51
52 EAPI=5
53
54 inherit bash-completion-r1 readme.gentoo
55
56 DESCRIPTION="Command-line wrapper for git that makes you better at GitHub"
57 HOMEPAGE="https://github.com/github/hub"
58 SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
59
60 LICENSE="MIT"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
63 IUSE="zsh-completion"
64 DEPEND="
65 >=dev-lang/go-1.4
66 "
67 RDEPEND="
68 >=dev-vcs/git-1.7.3
69 zsh-completion? ( app-shells/zsh )
70 "
71 DOC_CONTENTS="You may want to add 'alias git=hub' to your .{csh,bash}rc"
72
73 src_compile() {
74 ./script/build || die
75 }
76
77 src_install() {
78 readme.gentoo_create_doc
79
80 exeinto /usr/bin
81 doexe hub
82
83 doman man/${PN}.1
84 dodoc README.md
85
86 newbashcomp etc/${PN}.bash_completion.sh ${PN}
87
88 if use zsh-completion ; then
89 insinto /usr/share/zsh/site-functions
90 newins etc/hub.zsh_completion _${PN}
91 fi
92 }