Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libsecret/
Date: Mon, 31 Aug 2015 18:21:07
Message-Id: 1441045183.00fee72e4b89b6dd143801bd40a1580f22123940.eva@gentoo
1 commit: 00fee72e4b89b6dd143801bd40a1580f22123940
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 31 18:17:03 2015 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 31 18:19:43 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00fee72e
7
8 app-crypt/libsecret: version bump
9
10 Package-Manager: portage-2.2.20.1
11
12 app-crypt/libsecret/Manifest | 1 +
13 app-crypt/libsecret/libsecret-0.18.3.ebuild | 66 +++++++++++++++++++++++++++++
14 2 files changed, 67 insertions(+)
15
16 diff --git a/app-crypt/libsecret/Manifest b/app-crypt/libsecret/Manifest
17 index 857d678..c805512 100644
18 --- a/app-crypt/libsecret/Manifest
19 +++ b/app-crypt/libsecret/Manifest
20 @@ -1,2 +1,3 @@
21 DIST libsecret-0.18.2.tar.xz 483980 SHA256 12fd288b012e1b2b1b54d586cd4c6507885715534644b4534b7ef7d7079ba443 SHA512 414580e2f717ba0a3adacd79da093dc5e982f49455c1d6dd0cc60d87d7d3ff9ce3147685a3f5091488b9c98840002739b9e1aa2252f0fd71639b471b34ff5c54 WHIRLPOOL 2c113d81893562a54eef28c095968dca43ef5c6e940b20eb9266034d29231e3bbcb173855a6db3695a294f0028012fd45ccd8d5330e34a9c1a3abd9c041e01b6
22 +DIST libsecret-0.18.3.tar.xz 481256 SHA256 f2bf1d0c5ab4640664f3e3c7ef6b086c180e50ff415720b5e22f96750dbf84c9 SHA512 ff2cdc01f2d68eaa4e3de925616e22532aa41b489ba3da7d071eef64a11b652e78ed44447c5c161eca4aa13d7f3cfb5a6ddef67fee9e520cb58782cc0acac258 WHIRLPOOL b78eb8a3a0cdc7fecd2c74a96eeb6fab9b48f7d994b0a2b0b3e60763956426ce1aab3db3da92cbc1dfdee993a9b7b70920f863fd1859dd2fc047ce659ef5e8e0
23 DIST libsecret-0.18.tar.xz 480520 SHA256 0c73aa762dbd1e38ba7b03de350e23ce818cb810b0784375e95ef61e004b02e3 SHA512 5b3b460fe45b780fd4018dbb3b5fcc2c2e775725a8c74f4cfa86c00c643ccc1b29961b7e464c7b01846c5cc16a4bb9819c74016dd6758301ae2f67ab947c35bd WHIRLPOOL 2c3cb1a6a902665b3898a211317316d988791648d1d1f7144160f12376b2110ac99e8c3d3423ceb58a8ea0a3fb50efb42fc458aaa44f3aea52d2a1fab2d959a8
24
25 diff --git a/app-crypt/libsecret/libsecret-0.18.3.ebuild b/app-crypt/libsecret/libsecret-0.18.3.ebuild
26 new file mode 100644
27 index 0000000..b8e216e
28 --- /dev/null
29 +++ b/app-crypt/libsecret/libsecret-0.18.3.ebuild
30 @@ -0,0 +1,66 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI="5"
36 +PYTHON_COMPAT=( python2_7 )
37 +VALA_MIN_API_VERSION=0.18
38 +VALA_USE_DEPEND=vapigen
39 +
40 +inherit gnome2 python-any-r1 vala virtualx
41 +
42 +DESCRIPTION="GObject library for accessing the freedesktop.org Secret Service API"
43 +HOMEPAGE="https://live.gnome.org/Libsecret"
44 +
45 +LICENSE="LGPL-2.1+ Apache-2.0" # Apache-2.0 license is used for tests only
46 +SLOT="0"
47 +IUSE="+crypt debug +introspection test vala"
48 +REQUIRED_USE="vala? ( introspection )"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
50 +
51 +RDEPEND="
52 + >=dev-libs/glib-2.38:2
53 + crypt? ( >=dev-libs/libgcrypt-1.2.2:0= )
54 + introspection? ( >=dev-libs/gobject-introspection-1.29 )
55 +"
56 +PDEPEND=">=gnome-base/gnome-keyring-3
57 +"
58 +# PDEPEND to avoid circular dep (bug #547456)
59 +# Add ksecrets to PDEPEND when it's added to portage
60 +DEPEND="${RDEPEND}
61 + dev-libs/libxslt
62 + dev-util/gdbus-codegen
63 + >=dev-util/gtk-doc-am-1.9
64 + >=dev-util/intltool-0.35.0
65 + sys-devel/gettext
66 + virtual/pkgconfig
67 + test? (
68 + dev-python/mock
69 + introspection? (
70 + ${PYTHON_DEPS}
71 + >=dev-libs/gjs-1.32
72 + dev-python/pygobject:3 )
73 + )
74 + vala? ( $(vala_depend) )
75 +"
76 +
77 +src_prepare() {
78 + use vala && vala_src_prepare
79 + gnome2_src_prepare
80 +}
81 +
82 +src_configure() {
83 + DOCS="AUTHORS ChangeLog NEWS README"
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 +}