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: Sat, 11 Jan 2020 19:40:30
Message-Id: 1578771605.bb8ef82823f573b1f4d4a8882f23bc3625530e52.leio@gentoo
1 commit: bb8ef82823f573b1f4d4a8882f23bc3625530e52
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 11 19:31:46 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 11 19:40:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb8ef828
7
8 app-crypt/libsecret: remove old
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 app-crypt/libsecret/Manifest | 1 -
14 app-crypt/libsecret/libsecret-0.18.6-r1.ebuild | 95 --------------------------
15 2 files changed, 96 deletions(-)
16
17 diff --git a/app-crypt/libsecret/Manifest b/app-crypt/libsecret/Manifest
18 index 7ec2a5d4477..278ac197733 100644
19 --- a/app-crypt/libsecret/Manifest
20 +++ b/app-crypt/libsecret/Manifest
21 @@ -1,2 +1 @@
22 -DIST libsecret-0.18.6.tar.xz 487836 BLAKE2B d38a41743142d33e634d77bbf55ccab044def9658b3f50bd3f8cec9be6372ad1a56dcc4de58126cba1246c16da2863c003bf14ea6c8a90d8667658cf492f4b9a SHA512 4997519762f1470cfc0a4b3a791362d030af3c9b6ce6f58f8f8073b3a8adeea9b8caacedc884163997081dc39f395f9172330dbb41fed45d6c43ac5809de48e3
23 DIST libsecret-0.18.8.tar.xz 509432 BLAKE2B 3e3995d2c44367e31f3914087494764acfe82fb597b524c4982b4fca4e16612509c675f545191ee3cdae59698614395bef54ad82ae88a7e4e19898ba0be7828f SHA512 9e2ec8d458af6ed078bf3c6d956599f73f2cc7720332c424e9aede1f77f3d969c5122cf7b70899bc07ad96a3a628bf79bc5fffa88274d1ef2bcaaca6719f90d4
24
25 diff --git a/app-crypt/libsecret/libsecret-0.18.6-r1.ebuild b/app-crypt/libsecret/libsecret-0.18.6-r1.ebuild
26 deleted file mode 100644
27 index b04770e69cd..00000000000
28 --- a/app-crypt/libsecret/libsecret-0.18.6-r1.ebuild
29 +++ /dev/null
30 @@ -1,95 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -PYTHON_COMPAT=( python3_6 )
36 -VALA_USE_DEPEND=vapigen
37 -
38 -inherit gnome2 multilib-minimal 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 -RESTRICT="!test? ( test )"
48 -# Tests fail with USE=-introspection, https://bugs.gentoo.org/655482
49 -REQUIRED_USE="test? ( introspection )
50 - vala? ( introspection )"
51 -
52 -KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 sparc x86"
53 -
54 -RDEPEND="
55 - >=dev-libs/glib-2.38:2[${MULTILIB_USEDEP}]
56 - crypt? ( >=dev-libs/libgcrypt-1.2.2:0=[${MULTILIB_USEDEP}] )
57 - introspection? ( >=dev-libs/gobject-introspection-1.29:= )
58 -"
59 -PDEPEND=">=gnome-base/gnome-keyring-3
60 -"
61 -# PDEPEND to avoid circular dep (bug #547456)
62 -# gnome-keyring needed at runtime as explained at https://bugs.gentoo.org/475182#c2
63 -# Add ksecrets to PDEPEND when it's added to portage
64 -DEPEND="${RDEPEND}
65 - dev-libs/libxslt
66 - dev-util/gdbus-codegen
67 - >=dev-util/gtk-doc-am-1.9
68 - >=dev-util/intltool-0.35.0
69 - sys-devel/gettext
70 - virtual/pkgconfig[${MULTILIB_USEDEP}]
71 - test? (
72 - $(python_gen_any_dep '
73 - dev-python/mock[${PYTHON_USEDEP}]
74 - dev-python/dbus-python[${PYTHON_USEDEP}]
75 - introspection? ( dev-python/pygobject:3[${PYTHON_USEDEP}] )')
76 - introspection? ( >=dev-libs/gjs-1.32 )
77 - )
78 - vala? ( $(vala_depend) )
79 -"
80 -
81 -python_check_deps() {
82 - if use introspection; then
83 - has_version --host-root "dev-python/pygobject:3[${PYTHON_USEDEP}]" || return
84 - fi
85 - has_version --host-root "dev-python/mock[${PYTHON_USEDEP}]" &&
86 - has_version --host-root "dev-python/dbus-python[${PYTHON_USEDEP}]"
87 -}
88 -
89 -pkg_setup() {
90 - use test && python-any-r1_pkg_setup
91 -}
92 -
93 -src_prepare() {
94 - use vala && vala_src_prepare
95 - gnome2_src_prepare
96 -
97 - # Drop unwanted CFLAGS modifications
98 - sed -e 's/CFLAGS="$CFLAGS -\(g\|O0\|O2\)"//' -i configure || die
99 -}
100 -
101 -multilib_src_configure() {
102 - local ECONF_SOURCE=${S}
103 - gnome2_src_configure \
104 - --enable-manpages \
105 - --disable-strict \
106 - --disable-coverage \
107 - --disable-static \
108 - $(use_enable crypt gcrypt) \
109 - $(multilib_native_use_enable introspection) \
110 - $(multilib_native_use_enable vala) \
111 - LIBGCRYPT_CONFIG="${EPREFIX}/usr/bin/${CHOST}-libgcrypt-config"
112 -
113 - if multilib_is_native_abi; then
114 - ln -s "${S}"/docs/reference/libsecret/html docs/reference/libsecret/html || die
115 - fi
116 -}
117 -
118 -multilib_src_test() {
119 - # tests fail without gobject-introspection
120 - multilib_is_native_abi && virtx emake check
121 -}
122 -
123 -multilib_src_install() {
124 - gnome2_src_install
125 -}