Gentoo Archives: gentoo-commits

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