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: ChangeLog tig-2.0.2.ebuild
Date: Wed, 04 Jun 2014 19:25:07
Message-Id: 20140604192502.C9A2C2004E@flycatcher.gentoo.org
1 radhermit 14/06/04 19:25:02
2
3 Modified: ChangeLog
4 Added: tig-2.0.2.ebuild
5 Log:
6 Version bump (bug #512358).
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.31 dev-vcs/tig/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?rev=1.31&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?rev=1.31&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?r1=1.30&r2=1.31
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v
20 retrieving revision 1.30
21 retrieving revision 1.31
22 diff -u -r1.30 -r1.31
23 --- ChangeLog 7 May 2014 06:03:12 -0000 1.30
24 +++ ChangeLog 4 Jun 2014 19:25:02 -0000 1.31
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.30 2014/05/07 06:03:12 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v 1.31 2014/06/04 19:25:02 radhermit Exp $
30 +
31 +*tig-2.0.2 (04 Jun 2014)
32 +
33 + 04 Jun 2014; Tim Harder <radhermit@g.o> +tig-2.0.2.ebuild:
34 + Version bump (bug #512358).
35
36 07 May 2014; Tim Harder <radhermit@g.o> -tig-2.0.1.ebuild:
37 Remove old.
38
39
40
41 1.1 dev-vcs/tig/tig-2.0.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/tig-2.0.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/tig-2.0.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tig-2.0.2.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.2.ebuild,v 1.1 2014/06/04 19:25:02 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_install() {
84 emake DESTDIR="${D}" install install-doc-man
85 dohtml manual.html README.html NEWS.html
86 newbashcomp contrib/tig-completion.bash ${PN}
87 }