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.1.ebuild
Date: Wed, 30 Apr 2014 16:28:42
Message-Id: 20140430162835.293432004B@flycatcher.gentoo.org
1 radhermit 14/04/30 16:28:35
2
3 Modified: ChangeLog
4 Added: tig-2.0.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.28 dev-vcs/tig/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?rev=1.28&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?rev=1.28&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/ChangeLog?r1=1.27&r2=1.28
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v
20 retrieving revision 1.27
21 retrieving revision 1.28
22 diff -u -r1.27 -r1.28
23 --- ChangeLog 25 Jan 2014 20:43:47 -0000 1.27
24 +++ ChangeLog 30 Apr 2014 16:28:34 -0000 1.28
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.27 2014/01/25 20:43:47 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v 1.28 2014/04/30 16:28:34 radhermit Exp $
30 +
31 +*tig-2.0.1 (30 Apr 2014)
32 +
33 + 30 Apr 2014; Tim Harder <radhermit@g.o> +tig-2.0.1.ebuild:
34 + Version bump.
35
36 25 Jan 2014; Tim Harder <radhermit@g.o> -tig-1.0.ebuild,
37 -tig-1.1.ebuild, -tig-1.2.ebuild:
38
39
40
41 1.1 dev-vcs/tig/tig-2.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/tig-2.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/tig/tig-2.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tig-2.0.1.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.1.ebuild,v 1.1 2014/04/30 16:28:35 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
64 CDEPEND="sys-libs/ncurses"
65 DEPEND="${CDEPEND}
66 virtual/pkgconfig"
67 RDEPEND="${CDEPEND}
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 CURSES_LIB="$($(tc-getPKG_CONFIG) --libs 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 }