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.18.2.ebuild
Date: Fri, 01 May 2015 16:54:57
Message-Id: 20150501165443.EC1159A7@oystercatcher.gentoo.org
1 eva 15/05/01 16:54:42
2
3 Modified: ChangeLog
4 Added: libsecret-0.18.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.48 app-crypt/libsecret/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/libsecret/ChangeLog?rev=1.48&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/libsecret/ChangeLog?rev=1.48&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/libsecret/ChangeLog?r1=1.47&r2=1.48
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/libsecret/ChangeLog,v
20 retrieving revision 1.47
21 retrieving revision 1.48
22 diff -u -r1.47 -r1.48
23 --- ChangeLog 8 Apr 2015 07:30:34 -0000 1.47
24 +++ ChangeLog 1 May 2015 16:54:42 -0000 1.48
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-crypt/libsecret
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/libsecret/ChangeLog,v 1.47 2015/04/08 07:30:34 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/libsecret/ChangeLog,v 1.48 2015/05/01 16:54:42 eva Exp $
30 +
31 +*libsecret-0.18.2 (01 May 2015)
32 +
33 + 01 May 2015; Gilles Dartiguelongue <eva@g.o> +libsecret-0.18.2.ebuild:
34 + Version bump.
35
36 08 Apr 2015; Michał Górny <mgorny@g.o> libsecret-0.16.ebuild,
37 libsecret-0.18.ebuild:
38
39
40
41 1.1 app-crypt/libsecret/libsecret-0.18.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/libsecret/libsecret-0.18.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/libsecret/libsecret-0.18.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libsecret-0.18.2.ebuild
47 ===================================================================
48 # Copyright 1999-2015 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.18.2.ebuild,v 1.1 2015/05/01 16:54:42 eva Exp $
51
52 EAPI="5"
53 PYTHON_COMPAT=( python2_7 )
54 VALA_MIN_API_VERSION=0.18
55 VALA_USE_DEPEND=vapigen
56
57 inherit 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 ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
67
68 COMMON_DEPEND="
69 >=dev-libs/glib-2.38:2
70 crypt? ( >=dev-libs/libgcrypt-1.2.2:0= )
71 introspection? ( >=dev-libs/gobject-introspection-1.29 )
72 "
73 RDEPEND="${COMMON_DEPEND}
74 >=gnome-base/gnome-keyring-3
75 "
76 # Add ksecrets to RDEPEND when it's added to portage
77 DEPEND="${COMMON_DEPEND}
78 dev-libs/libxslt
79 dev-util/gdbus-codegen
80 >=dev-util/gtk-doc-am-1.9
81 >=dev-util/intltool-0.35.0
82 sys-devel/gettext
83 virtual/pkgconfig
84 test? (
85 dev-python/mock
86 introspection? (
87 ${PYTHON_DEPS}
88 >=dev-libs/gjs-1.32
89 dev-python/pygobject:3 )
90 )
91 vala? ( $(vala_depend) )
92 "
93
94 src_prepare() {
95 use vala && vala_src_prepare
96 gnome2_src_prepare
97 }
98
99 src_configure() {
100 DOCS="AUTHORS ChangeLog NEWS README"
101 gnome2_src_configure \
102 --enable-manpages \
103 --disable-strict \
104 --disable-coverage \
105 --disable-static \
106 $(use_enable crypt gcrypt) \
107 $(use_enable introspection) \
108 $(use_enable vala)
109 }
110
111 src_test() {
112 Xemake check
113 }