Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libsecret/
Date: Sun, 15 Jul 2018 11:45:29
Message-Id: 1531654177.47cb6647523247dd7cd36887867d3b5349f31a5f.leio@gentoo
1 commit: 47cb6647523247dd7cd36887867d3b5349f31a5f
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 15 11:29:37 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 15 11:29:37 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47cb6647
7
8 app-crypt/libsecret: remove old
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-crypt/libsecret/Manifest | 1 -
13 app-crypt/libsecret/libsecret-0.18.5.ebuild | 67 -----------------------------
14 2 files changed, 68 deletions(-)
15
16 diff --git a/app-crypt/libsecret/Manifest b/app-crypt/libsecret/Manifest
17 index 892b339509b..7d66a1d856b 100644
18 --- a/app-crypt/libsecret/Manifest
19 +++ b/app-crypt/libsecret/Manifest
20 @@ -1,2 +1 @@
21 -DIST libsecret-0.18.5.tar.xz 508556 BLAKE2B e3410dd113dfa1f4ebb78a47f90e23455eb8f82466d4607aa469c04adc84aa3181bfdb7dcb4ff459fd2aa49c315ffd52fd2d3a4929694909fe65af637b65482b SHA512 4ee297b556d3b555b6ca9f5eb5cc87425b782491d0550a75873aac0f7019b123f437f0731c85bb058fc65b50a589d54d0697657a50bef4ac2952e9e40a916b5c
22 DIST libsecret-0.18.6.tar.xz 487836 BLAKE2B d38a41743142d33e634d77bbf55ccab044def9658b3f50bd3f8cec9be6372ad1a56dcc4de58126cba1246c16da2863c003bf14ea6c8a90d8667658cf492f4b9a SHA512 4997519762f1470cfc0a4b3a791362d030af3c9b6ce6f58f8f8073b3a8adeea9b8caacedc884163997081dc39f395f9172330dbb41fed45d6c43ac5809de48e3
23
24 diff --git a/app-crypt/libsecret/libsecret-0.18.5.ebuild b/app-crypt/libsecret/libsecret-0.18.5.ebuild
25 deleted file mode 100644
26 index aed7f8ac107..00000000000
27 --- a/app-crypt/libsecret/libsecret-0.18.5.ebuild
28 +++ /dev/null
29 @@ -1,67 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="5"
34 -GCONF_DEBUG="yes"
35 -PYTHON_COMPAT=( python2_7 )
36 -VALA_USE_DEPEND=vapigen
37 -
38 -inherit gnome2 python-any-r1 vala virtualx
39 -
40 -DESCRIPTION="GObject library for accessing the freedesktop.org Secret Service API"
41 -HOMEPAGE="https://wiki.gnome.org/Projects/Libsecret"
42 -
43 -LICENSE="LGPL-2.1+ Apache-2.0" # Apache-2.0 license is used for tests only
44 -SLOT="0"
45 -
46 -IUSE="+crypt +introspection test vala"
47 -REQUIRED_USE="vala? ( introspection )"
48 -
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 -# gnome-keyring needed at runtime as explained at https://bugs.gentoo.org/475182#c2
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 -}