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