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