Gentoo Archives: gentoo-commits

From: "Sebastian Pipping (sping)" <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-vcs/gitg: ChangeLog gitg-0.2.4.ebuild
Date: Sun, 31 Jul 2011 01:02:11
Message-Id: 20110731004711.C4E232004B@flycatcher.gentoo.org
1 sping 11/07/31 00:47:11
2
3 Modified: ChangeLog
4 Added: gitg-0.2.4.ebuild
5 Log:
6 dev-vcs/gitg: Bump to 0.2.4
7
8 (Portage version: 2.1.10.7/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.13 dev-vcs/gitg/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/gitg/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 15 Jul 2011 13:56:36 -0000 1.12
24 +++ ChangeLog 31 Jul 2011 00:47:11 -0000 1.13
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-vcs/gitg
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/ChangeLog,v 1.12 2011/07/15 13:56:36 sping Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/ChangeLog,v 1.13 2011/07/31 00:47:11 sping Exp $
30 +
31 +*gitg-0.2.4 (31 Jul 2011)
32 +
33 + 31 Jul 2011; Sebastian Pipping <sping@g.o> +gitg-0.2.4.ebuild:
34 + Bump to 0.2.4: Downstream patching no longer needed, newer version of
35 + gtksourceview required
36
37 *gitg-0.2.2 (15 Jul 2011)
38
39
40
41
42 1.1 dev-vcs/gitg/gitg-0.2.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/gitg-0.2.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/gitg/gitg-0.2.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gitg-0.2.4.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/gitg/gitg-0.2.4.ebuild,v 1.1 2011/07/31 00:47:11 sping Exp $
52
53 EAPI="3"
54 GNOME2_LA_PUNT="yes"
55 GCONF_DEBUG="no"
56
57 inherit eutils gnome2
58
59 DESCRIPTION="git repository viewer for GNOME"
60 HOMEPAGE="http://trac.novowork.com/gitg/"
61
62 LICENSE="|| ( GPL-2 GPL-3 )"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 # FIXME: debug changes CFLAGS
66 IUSE="debug glade"
67
68 RDEPEND=">=dev-libs/glib-2.26:2
69 >=x11-libs/gtk+-3.0.0:3
70 >=x11-libs/gtksourceview-3.0.0:3.0
71 >=gnome-base/gconf-2.10:2
72 >=gnome-base/gsettings-desktop-schemas-0.1.1
73 dev-vcs/git
74 glade? ( >=dev-util/glade-3.2:3.10 )
75 "
76 DEPEND="${RDEPEND}
77 >=sys-devel/gettext-0.17
78 >=dev-util/pkgconfig-0.15
79 >=dev-util/intltool-0.40"
80
81 pkg_setup() {
82 # Disable maintainer to get rid of -Werror (bug #363009)
83 G2CONF="${G2CONF}
84 --disable-static
85 --disable-deprecations
86 --disable-dependency-tracking
87 --disable-maintainer-mode
88 $(use_enable debug)
89 $(use_enable glade glade-catalog)"
90
91 DOCS="AUTHORS ChangeLog NEWS README"
92 }
93
94 src_test() {
95 emake check || die
96 }