Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/libsecret: ChangeLog libsecret-0.16.ebuild
Date: Sun, 01 Sep 2013 21:30:50
Message-Id: 20130901213041.B8E5A2004C@flycatcher.gentoo.org
1 eva 13/09/01 21:30:41
2
3 Modified: ChangeLog
4 Added: libsecret-0.16.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.19 app-crypt/libsecret/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/libsecret/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/libsecret/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/libsecret/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/libsecret/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 31 Mar 2013 16:06:16 -0000 1.18
24 +++ ChangeLog 1 Sep 2013 21:30:41 -0000 1.19
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-crypt/libsecret
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/libsecret/ChangeLog,v 1.18 2013/03/31 16:06:16 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/libsecret/ChangeLog,v 1.19 2013/09/01 21:30:41 eva Exp $
30 +
31 +*libsecret-0.16 (01 Sep 2013)
32 +
33 + 01 Sep 2013; Gilles Dartiguelongue <eva@g.o> +libsecret-0.16.ebuild:
34 + Version bump.
35
36 *libsecret-0.15 (31 Mar 2013)
37
38
39
40
41 1.1 app-crypt/libsecret/libsecret-0.16.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/libsecret/libsecret-0.16.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/libsecret/libsecret-0.16.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libsecret-0.16.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/app-crypt/libsecret/libsecret-0.16.ebuild,v 1.1 2013/09/01 21:30:41 eva Exp $
51
52 EAPI="5"
53 PYTHON_COMPAT=( python2_{6,7} )
54 VALA_MIN_API_VERSION=0.18
55 VALA_USE_DEPEND=vapigen
56
57 inherit eutils gnome2 python-any-r1 vala virtualx
58
59 DESCRIPTION="GObject library for accessing the freedesktop.org Secret Service API"
60 HOMEPAGE="https://live.gnome.org/Libsecret"
61
62 LICENSE="LGPL-2.1+ Apache-2.0" # Apache-2.0 license is used for tests only
63 SLOT="0"
64 IUSE="+crypt debug +introspection test vala"
65 REQUIRED_USE="vala? ( introspection )"
66 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
67
68 COMMON_DEPEND="
69 >=dev-libs/glib-2.32.0:2
70 crypt? ( >=dev-libs/libgcrypt-1.2.2:= )
71 introspection? ( >=dev-libs/gobject-introspection-1.29 )"
72 RDEPEND="${COMMON_DEPEND}
73 >=gnome-base/gnome-keyring-3"
74 # Add ksecrets to RDEPEND when it's added to portage
75 DEPEND="${COMMON_DEPEND}
76 dev-libs/libxslt
77 dev-util/gdbus-codegen
78 dev-util/gtk-doc-am
79 >=dev-util/intltool-0.35.0
80 sys-devel/gettext
81 virtual/pkgconfig
82 test? (
83 dev-python/mock
84 introspection? (
85 ${PYTHON_DEPS}
86 >=dev-libs/gjs-1.32
87 dev-python/pygobject:3 )
88 )
89 vala? ( $(vala_depend) )"
90
91 src_prepare() {
92 # FIXME: disable failing test
93 sed -e '/test_get_sync);/d' \
94 -e '/test_get_async);/d' \
95 -i libsecret/tests/test-service.c || die
96
97 use vala && vala_src_prepare
98 gnome2_src_prepare
99 }
100
101 src_configure() {
102 DOCS="AUTHORS ChangeLog NEWS README"
103 gnome2_src_configure \
104 --enable-manpages \
105 --disable-strict \
106 --disable-coverage \
107 --disable-static \
108 $(use_enable crypt gcrypt) \
109 $(use_enable introspection) \
110 $(use_enable vala)
111 }
112
113 src_test() {
114 Xemake check
115 }