Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/libgnome-keyring: ChangeLog libgnome-keyring-2.32.0.ebuild
Date: Sat, 09 Oct 2010 21:04:33
Message-Id: 20101009205910.3E4032004B@flycatcher.gentoo.org
1 pacho 10/10/09 20:59:10
2
3 Modified: ChangeLog
4 Added: libgnome-keyring-2.32.0.ebuild
5 Log:
6 Version bump for Gnome 2.32
7
8 (Portage version: 2.1.9.14/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.12 gnome-base/libgnome-keyring/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 9 Oct 2010 15:15:38 -0000 1.11
24 +++ ChangeLog 9 Oct 2010 20:59:10 -0000 1.12
25 @@ -1,6 +1,15 @@
26 # ChangeLog for gnome-base/libgnome-keyring
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog,v 1.11 2010/10/09 15:15:38 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog,v 1.12 2010/10/09 20:59:10 pacho Exp $
30 +
31 +*libgnome-keyring-2.32.0 (09 Oct 2010)
32 +
33 + 09 Oct 2010; Pacho Ramos <pacho@g.o>
34 + +libgnome-keyring-2.32.0.ebuild:
35 + Version bump: Don't try to run daemon tests if DBus is not running, use
36 + newer tar version for tarballs so we don't truncate file names, remove
37 + erroneous egg-dbus dependency, other bugfixes and translation updates. Set
38 + DOCS and remove DISABLE_DEPRECATED flags.
39
40 09 Oct 2010; Pacho Ramos <pacho@g.o>
41 libgnome-keyring-2.30.1.ebuild:
42
43
44
45 1.1 gnome-base/libgnome-keyring/libgnome-keyring-2.32.0.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-2.32.0.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-2.32.0.ebuild?rev=1.1&content-type=text/plain
49
50 Index: libgnome-keyring-2.32.0.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-2.32.0.ebuild,v 1.1 2010/10/09 20:59:10 pacho Exp $
55
56 EAPI="3"
57 GCONF_DEBUG="yes"
58
59 inherit gnome2
60
61 DESCRIPTION="Compatibility library for accessing secrets"
62 HOMEPAGE="http://live.gnome.org/GnomeKeyring"
63
64 LICENSE="LGPL-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux"
67 IUSE="debug doc test"
68
69 RDEPEND=">=sys-apps/dbus-1.0
70 gnome-base/gconf
71 >=gnome-base/gnome-keyring-2.29
72 !<gnome-base/gnome-keyring-2.29"
73 DEPEND="${RDEPEND}
74 sys-devel/gettext
75 >=dev-util/intltool-0.35
76 >=dev-util/pkgconfig-0.9
77 doc? ( >=dev-util/gtk-doc-1.9 )"
78
79 pkg_setup() {
80 G2CONF="${G2CONF}
81 $(use_enable debug)
82 $(use_enable test tests)"
83 DOCS="AUTHORS ChangeLog NEWS README"
84 }
85
86 src_prepare() {
87 gnome2_src_prepare
88
89 # Remove silly CFLAGS
90 sed 's:CFLAGS="$CFLAGS -Werror:CFLAGS="$CFLAGS:' \
91 -i configure.in configure || die "sed failed"
92
93 # Remove DISABLE_DEPRECATED flags
94 sed -e '/-D[A-Z_]*DISABLE_DEPRECATED/d' \
95 -i configure.in configure || die "sed 2 failed"
96 }
97
98 src_test() {
99 # Needed to run tests on console, bug #323661
100 dbus-launch emake check || die "tests failed"
101 }