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: libgnome-keyring-3.10.1.ebuild ChangeLog libgnome-keyring-3.6.0.ebuild
Date: Tue, 24 Dec 2013 16:39:27
Message-Id: 20131224163924.3AF822004C@flycatcher.gentoo.org
1 pacho 13/12/24 16:39:24
2
3 Modified: ChangeLog
4 Added: libgnome-keyring-3.10.1.ebuild
5 Removed: libgnome-keyring-3.6.0.ebuild
6 Log:
7 Version bump for Gnome 3.10
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.44 gnome-base/libgnome-keyring/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog?rev=1.44&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog?rev=1.44&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog?r1=1.43&r2=1.44
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog,v
21 retrieving revision 1.43
22 retrieving revision 1.44
23 diff -u -r1.43 -r1.44
24 --- ChangeLog 8 Dec 2013 18:37:27 -0000 1.43
25 +++ ChangeLog 24 Dec 2013 16:39:24 -0000 1.44
26 @@ -1,6 +1,12 @@
27 # ChangeLog for gnome-base/libgnome-keyring
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog,v 1.43 2013/12/08 18:37:27 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog,v 1.44 2013/12/24 16:39:24 pacho Exp $
31 +
32 +*libgnome-keyring-3.10.1 (24 Dec 2013)
33 +
34 + 24 Dec 2013; Pacho Ramos <pacho@g.o> +libgnome-keyring-3.10.1.ebuild,
35 + -libgnome-keyring-3.6.0.ebuild:
36 + Version bump for Gnome 3.10
37
38 08 Dec 2013; Pacho Ramos <pacho@g.o> libgnome-keyring-3.8.0.ebuild:
39 x86 stable, bug #478252
40
41
42
43 1.1 gnome-base/libgnome-keyring/libgnome-keyring-3.10.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-3.10.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-3.10.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libgnome-keyring-3.10.1.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-3.10.1.ebuild,v 1.1 2013/12/24 16:39:24 pacho Exp $
53
54 EAPI="5"
55 GCONF_DEBUG="yes"
56 GNOME2_LA_PUNT="yes"
57 VALA_MIN_API_VERSION="0.16"
58 VALA_USE_DEPEND="vapigen"
59 PYTHON_COMPAT=( python{2_6,2_7} )
60
61 inherit gnome2 python-any-r1 vala
62
63 DESCRIPTION="Compatibility library for accessing secrets"
64 HOMEPAGE="http://live.gnome.org/GnomeKeyring"
65
66 LICENSE="LGPL-2+ GPL-2+" # tests are GPL-2
67 SLOT="0"
68 IUSE="debug +introspection test vala"
69 REQUIRED_USE="vala? ( introspection )"
70 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris"
71
72 RDEPEND="
73 >=sys-apps/dbus-1
74 >=gnome-base/gnome-keyring-3.1.92
75 introspection? ( >=dev-libs/gobject-introspection-1.30.0 )
76 "
77 DEPEND="${RDEPEND}
78 dev-util/gtk-doc-am
79 >=dev-util/intltool-0.35
80 sys-devel/gettext
81 virtual/pkgconfig
82 test? ( ${PYTHON_DEPS} )
83 vala? ( $(vala_depend) )
84 "
85
86 src_prepare() {
87 use vala && vala_src_prepare
88 gnome2_src_prepare
89
90 # FIXME: Remove silly CFLAGS, report upstream
91 sed -e 's:CFLAGS="$CFLAGS -g:CFLAGS="$CFLAGS:' \
92 -e 's:CFLAGS="$CFLAGS -O0:CFLAGS="$CFLAGS:' \
93 -i configure.ac configure || die "sed failed"
94 }
95
96 src_configure() {
97 gnome2_src_configure $(use_enable vala)
98 }
99
100 src_test() {
101 unset DBUS_SESSION_BUS_ADDRESS
102 dbus-launch emake check || die "tests failed"
103 }