Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libsecret/
Date: Sat, 30 Jan 2016 12:24:16
Message-Id: 1454156607.350047673e92584aeb10ddeed7b986d686ae7c98.pacho@gentoo
1 commit: 350047673e92584aeb10ddeed7b986d686ae7c98
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 30 11:50:56 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 30 12:23:27 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35004767
7
8 app-crypt/libsecret: Version bump
9
10 Package-Manager: portage-2.2.27
11
12 app-crypt/libsecret/Manifest | 1 +
13 app-crypt/libsecret/libsecret-0.18.4.ebuild | 67 +++++++++++++++++++++++++++++
14 2 files changed, 68 insertions(+)
15
16 diff --git a/app-crypt/libsecret/Manifest b/app-crypt/libsecret/Manifest
17 index 059552f..8b9c453 100644
18 --- a/app-crypt/libsecret/Manifest
19 +++ b/app-crypt/libsecret/Manifest
20 @@ -1 +1,2 @@
21 DIST libsecret-0.18.3.tar.xz 481256 SHA256 f2bf1d0c5ab4640664f3e3c7ef6b086c180e50ff415720b5e22f96750dbf84c9 SHA512 ff2cdc01f2d68eaa4e3de925616e22532aa41b489ba3da7d071eef64a11b652e78ed44447c5c161eca4aa13d7f3cfb5a6ddef67fee9e520cb58782cc0acac258 WHIRLPOOL b78eb8a3a0cdc7fecd2c74a96eeb6fab9b48f7d994b0a2b0b3e60763956426ce1aab3db3da92cbc1dfdee993a9b7b70920f863fd1859dd2fc047ce659ef5e8e0
22 +DIST libsecret-0.18.4.tar.xz 499132 SHA256 0f29b51698198e6999c91f4adce3119c8c457f546b133a85baea5ea9010a19ed SHA512 2350d43d8a8db77a4330bc1a8b6ac82270aee7e455373f3e433d5e35539ce5c212fea7a840b0fcf76cf6ec209eb168a64864c582b36e7ec6e1d6b9f78276dcaf WHIRLPOOL cd1952cb97459767b16765c25767c59ccbe028eb8f92c5174f49529cf3caf2c955a72d1396514507a7aced60c993d69d7ed47dbb667338908226da37e6eab1eb
23
24 diff --git a/app-crypt/libsecret/libsecret-0.18.4.ebuild b/app-crypt/libsecret/libsecret-0.18.4.ebuild
25 new file mode 100644
26 index 0000000..bed4d00
27 --- /dev/null
28 +++ b/app-crypt/libsecret/libsecret-0.18.4.ebuild
29 @@ -0,0 +1,67 @@
30 +# Copyright 1999-2015 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI="5"
35 +GCONF_DEBUG="yes"
36 +PYTHON_COMPAT=( python2_7 )
37 +VALA_USE_DEPEND=vapigen
38 +
39 +inherit gnome2 python-any-r1 vala virtualx
40 +
41 +DESCRIPTION="GObject library for accessing the freedesktop.org Secret Service API"
42 +HOMEPAGE="https://wiki.gnome.org/Projects/Libsecret"
43 +
44 +LICENSE="LGPL-2.1+ Apache-2.0" # Apache-2.0 license is used for tests only
45 +SLOT="0"
46 +
47 +IUSE="+crypt +introspection test vala"
48 +REQUIRED_USE="vala? ( introspection )"
49 +
50 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
51 +
52 +RDEPEND="
53 + >=dev-libs/glib-2.38:2
54 + crypt? ( >=dev-libs/libgcrypt-1.2.2:0= )
55 + introspection? ( >=dev-libs/gobject-introspection-1.29:= )
56 +"
57 +PDEPEND=">=gnome-base/gnome-keyring-3
58 +"
59 +# PDEPEND to avoid circular dep (bug #547456)
60 +# Add ksecrets to PDEPEND when it's added to portage
61 +DEPEND="${RDEPEND}
62 + dev-libs/libxslt
63 + dev-util/gdbus-codegen
64 + >=dev-util/gtk-doc-am-1.9
65 + >=dev-util/intltool-0.35.0
66 + sys-devel/gettext
67 + virtual/pkgconfig
68 + test? (
69 + dev-python/mock
70 + introspection? (
71 + ${PYTHON_DEPS}
72 + >=dev-libs/gjs-1.32
73 + dev-python/pygobject:3 )
74 + )
75 + vala? ( $(vala_depend) )
76 +"
77 +
78 +src_prepare() {
79 + use vala && vala_src_prepare
80 + gnome2_src_prepare
81 +}
82 +
83 +src_configure() {
84 + gnome2_src_configure \
85 + --enable-manpages \
86 + --disable-strict \
87 + --disable-coverage \
88 + --disable-static \
89 + $(use_enable crypt gcrypt) \
90 + $(use_enable introspection) \
91 + $(use_enable vala)
92 +}
93 +
94 +src_test() {
95 + Xemake check
96 +}