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/seahorse/
Date: Wed, 09 Aug 2017 07:00:00
Message-Id: 1502261988.8abe4a178aa2fd83906722c628bf18cf949964b8.eva@gentoo
1 commit: 8abe4a178aa2fd83906722c628bf18cf949964b8
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 9 06:53:36 2017 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 9 06:59:48 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8abe4a17
7
8 app-crypt/seahorse: cleanup old revision
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 app-crypt/seahorse/Manifest | 1 -
13 app-crypt/seahorse/seahorse-3.18.0.ebuild | 66 -------------------------------
14 2 files changed, 67 deletions(-)
15
16 diff --git a/app-crypt/seahorse/Manifest b/app-crypt/seahorse/Manifest
17 index 4ff44a0e6f0..e4cec8e7b83 100644
18 --- a/app-crypt/seahorse/Manifest
19 +++ b/app-crypt/seahorse/Manifest
20 @@ -1,2 +1 @@
21 -DIST seahorse-3.18.0.tar.xz 1555384 SHA256 530c889a01c4cad25df4c9ab58ab95d24747875789bc6116bef529d60fc1b667 SHA512 76475645d1f94a99bf12c3bbbd840526ab3f1da9c6dd7c8c7fca1cca1cdb22692c44d6107ed1f0192dacb6990c1bbc5c1e0bb9a412132fbf18b302d6059cb254 WHIRLPOOL a470024c7c187f854f7458de31ce8aae6f27ff99ee44d872c2298983391e3f39a2c22e5c201927a5b303ced1a614de9729af9625b59714b6cd580890714e5b79
22 DIST seahorse-3.20.0.tar.xz 1556556 SHA256 e2b07461ed54a8333e5628e9b8e517ec2b731068377bf376570aad998274c6df SHA512 a02d3da7af95256941ef065ac024bd5bfb53a026767b951fa2e26446fb0eed23707e69f72f6e8ebfa7d538823fa41411709fa2bebad4fbd662af1e81bc15ab82 WHIRLPOOL 79691f59771387af8f18fb2bbfb96a5830f41d1f538be0216d218f53ebc273fd00b1d455f595e4a70a3c5104d024d85b6ee279d416e94d93d800133179bfd47d
23
24 diff --git a/app-crypt/seahorse/seahorse-3.18.0.ebuild b/app-crypt/seahorse/seahorse-3.18.0.ebuild
25 deleted file mode 100644
26 index fbb22797631..00000000000
27 --- a/app-crypt/seahorse/seahorse-3.18.0.ebuild
28 +++ /dev/null
29 @@ -1,66 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="5"
34 -GCONF_DEBUG="no"
35 -
36 -inherit gnome2
37 -
38 -DESCRIPTION="A GNOME application for managing encryption keys"
39 -HOMEPAGE="https://wiki.gnome.org/Apps/Seahorse"
40 -
41 -LICENSE="GPL-2+ FDL-1.1+"
42 -SLOT="0"
43 -IUSE="debug ldap zeroconf"
44 -KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
45 -
46 -COMMON_DEPEND="
47 - >=app-crypt/gcr-3.11.91:=
48 - >=dev-libs/glib-2.10:2
49 - >=x11-libs/gtk+-3.4:3
50 - >=app-crypt/libsecret-0.16
51 - >=net-libs/libsoup-2.33.92:2.4
52 - x11-misc/shared-mime-info
53 -
54 - net-misc/openssh
55 - >=app-crypt/gpgme-1
56 - >=app-crypt/gnupg-2.0.12
57 -
58 - ldap? ( net-nds/openldap:= )
59 - zeroconf? ( >=net-dns/avahi-0.6:= )
60 -"
61 -DEPEND="${COMMON_DEPEND}
62 - app-text/yelp-tools
63 - dev-util/gdbus-codegen
64 - >=dev-util/intltool-0.35
65 - dev-util/itstool
66 - sys-devel/gettext
67 - virtual/pkgconfig
68 -"
69 -# Need seahorse-plugins git snapshot
70 -RDEPEND="${COMMON_DEPEND}
71 - !<app-crypt/seahorse-plugins-2.91.0_pre20110114
72 -"
73 -
74 -src_prepare() {
75 - # Do not mess with CFLAGS with USE="debug"
76 - sed -e '/CFLAGS="$CFLAGS -g/d' \
77 - -e '/CFLAGS="$CFLAGS -O0/d' \
78 - -i configure.ac configure || die "sed 1 failed"
79 -
80 - gnome2_src_prepare
81 -}
82 -
83 -src_configure() {
84 - # bindir is needed due to bad macro expansion in desktop file, bug #508610
85 - gnome2_src_configure \
86 - --bindir=/usr/bin \
87 - --enable-pgp \
88 - --enable-ssh \
89 - --enable-pkcs11 \
90 - --enable-hkp \
91 - $(use_enable debug) \
92 - $(use_enable ldap) \
93 - $(use_enable zeroconf sharing) \
94 - VALAC=$(type -P true)
95 -}