Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-vcs/tig: tig-2.0.3.ebuild ChangeLog
Date: Sun, 31 Aug 2014 05:54:52
Message-Id: 20140831055447.B2D7D451C@oystercatcher.gentoo.org
1 radhermit 14/08/31 05:54:47
2
3 Modified: ChangeLog
4 Added: tig-2.0.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 4F064CA3)
9
10 Revision Changes Path
11 1.33 dev-vcs/tig/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 4 Aug 2014 17:01:35 -0000 1.32
24 +++ ChangeLog 31 Aug 2014 05:54:47 -0000 1.33
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-vcs/tig
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v 1.32 2014/08/04 17:01:35 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v 1.33 2014/08/31 05:54:47 radhermit Exp $
30 +
31 +*tig-2.0.3 (31 Aug 2014)
32 +
33 + 31 Aug 2014; Tim Harder <radhermit@g.o> +tig-2.0.3.ebuild:
34 + Version bump.
35
36 04 Aug 2014; Tim Harder <radhermit@g.o> -tig-2.0.1-r1.ebuild:
37 Remove old.
38
39
40
41 1.1 dev-vcs/tig/tig-2.0.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/tig-2.0.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/tig-2.0.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tig-2.0.3.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/tig-2.0.3.ebuild,v 1.1 2014/08/31 05:54:47 radhermit Exp $
51
52 EAPI=5
53
54 inherit bash-completion-r1 toolchain-funcs
55
56 DESCRIPTION="Tig: text mode interface for git"
57 HOMEPAGE="http://jonas.nitro.dk/tig/"
58 SRC_URI="http://jonas.nitro.dk/tig/releases/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
63 IUSE="unicode"
64
65 DEPEND="sys-libs/ncurses[unicode?]
66 sys-libs/readline:0"
67 RDEPEND="${DEPEND}
68 dev-vcs/git"
69
70 src_prepare() {
71 # pre-generated manpages are in the root directory
72 sed -i '/^MANDOC/s#doc/##g' Makefile || die
73 }
74
75 src_configure() {
76 econf $(use_with unicode ncursesw)
77 }
78
79 src_compile() {
80 emake V=1
81 }
82
83 src_test() {
84 # workaround parallel test failures
85 emake -j1 test
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install install-doc-man
90 dohtml manual.html README.html NEWS.html
91 newbashcomp contrib/tig-completion.bash ${PN}
92 }