Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/libgnome-keyring: ChangeLog libgnome-keyring-3.2.0.ebuild
Date: Sun, 30 Oct 2011 07:28:27
Message-Id: 20111030072817.A8C982004B@flycatcher.gentoo.org
1 tetromino 11/10/30 07:28:17
2
3 Modified: ChangeLog
4 Added: libgnome-keyring-3.2.0.ebuild
5 Log:
6 Bump to 3.2.0 from the gnome overlay. Requires gnome-keyring-3.2 (due to changes in gnome-keyring's internal dbus protocol), hence drop alpha, arm, ia64, ppc, ppc64, sparc keywords to match gnome-keyring-3.2.1. Keywording bug will be filed later for all of gnome-3.2.
7
8 (Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.29 gnome-base/libgnome-keyring/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog?rev=1.29&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog?rev=1.29&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog?r1=1.28&r2=1.29
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog,v
20 retrieving revision 1.28
21 retrieving revision 1.29
22 diff -u -r1.28 -r1.29
23 --- ChangeLog 12 Sep 2011 08:41:50 -0000 1.28
24 +++ ChangeLog 30 Oct 2011 07:28:17 -0000 1.29
25 @@ -1,6 +1,14 @@
26 # ChangeLog for gnome-base/libgnome-keyring
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog,v 1.28 2011/09/12 08:41:50 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog,v 1.29 2011/10/30 07:28:17 tetromino Exp $
30 +
31 +*libgnome-keyring-3.2.0 (30 Oct 2011)
32 +
33 + 30 Oct 2011; Alexandre Rostovtsev <tetromino@g.o>
34 + +libgnome-keyring-3.2.0.ebuild:
35 + Bump to 3.2.0 from the gnome overlay. Requires gnome-keyring-3.2 (due to
36 + changes in gnome-keyring's internal dbus protocol), hence drop alpha, arm,
37 + ia64, ppc, ppc64, sparc keywords to match gnome-keyring-3.2.1.
38
39 12 Sep 2011; Pacho Ramos <pacho@g.o> libgnome-keyring-2.32.0.ebuild,
40 +files/libgnome-keyring-2.32.0-drop-test.patch,
41
42
43
44 1.1 gnome-base/libgnome-keyring/libgnome-keyring-3.2.0.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-3.2.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-3.2.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libgnome-keyring-3.2.0.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-3.2.0.ebuild,v 1.1 2011/10/30 07:28:17 tetromino Exp $
54
55 EAPI="4"
56 GCONF_DEBUG="no"
57 GNOME2_LA_PUNT="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="~amd64 ~mips ~sh ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris"
67 IUSE="debug doc test"
68
69 RDEPEND=">=sys-apps/dbus-1.0
70 gnome-base/gconf
71 >=gnome-base/gnome-keyring-3.1.92[test?]"
72 DEPEND="${RDEPEND}
73 sys-devel/gettext
74 >=dev-util/intltool-0.35
75 >=dev-util/pkgconfig-0.9
76 doc? ( >=dev-util/gtk-doc-1.9 )"
77
78 pkg_setup() {
79 G2CONF="${G2CONF}
80 $(use_enable debug)
81 $(use_enable test tests full)"
82 DOCS="AUTHORS ChangeLog NEWS README"
83 }
84
85 src_prepare() {
86 gnome2_src_prepare
87
88 # FIXME: Remove silly CFLAGS
89 sed -e 's:CFLAGS="$CFLAGS -Werror:CFLAGS="$CFLAGS:' \
90 -e 's:CFLAGS="$CFLAGS -g -O0:CFLAGS="$CFLAGS:' \
91 -i configure.ac configure || die "sed failed"
92
93 # FIXME: Remove DISABLE_DEPRECATED flags
94 sed -e '/-D[A-Z_]*DISABLE_DEPRECATED/d' \
95 -i configure.ac configure || die "sed 2 failed"
96 }
97
98 src_test() {
99 unset DBUS_SESSION_BUS_ADDRESS
100 dbus-launch emake check || die "tests failed"
101 }