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/seahorse-sharing/
Date: Tue, 28 Jan 2020 09:39:09
Message-Id: 1580204058.565a47e6b57d267ddc3bf529b295086aa654697a.leio@gentoo
1 commit: 565a47e6b57d267ddc3bf529b295086aa654697a
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 28 09:08:21 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 28 09:34:18 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=565a47e6
7
8 app-crypt/seahorse-sharing: remove old
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 app-crypt/seahorse-sharing/Manifest | 1 -
14 .../seahorse-sharing-3.8.0_p20151117.ebuild | 63 ----------------------
15 2 files changed, 64 deletions(-)
16
17 diff --git a/app-crypt/seahorse-sharing/Manifest b/app-crypt/seahorse-sharing/Manifest
18 index 5a984d96488..e29bc69a26c 100644
19 --- a/app-crypt/seahorse-sharing/Manifest
20 +++ b/app-crypt/seahorse-sharing/Manifest
21 @@ -1,2 +1 @@
22 -DIST seahorse-sharing-3.8.0_p20151117.tar.gz 496497 BLAKE2B 5107eb37c57d8311390399fda59d8df76f59afc6b21f107dfb1cb38dd6c68ea25bda619b1898637ff009c0e9f7617b0557b86f0194ee2c8704d804aa9f8827f9 SHA512 aa43240040f637e3c79c08f07620a92e5e76e81b758c939a8eee5bf43cdd32657f85d4b9d7440401e092ef4d556849ba0a64dc9d5a83e708bc84d9a2d7baf01c
23 DIST seahorse-sharing-58db1e5b8615d74afaa5d888237ef6556368147b.tar.gz 101549 BLAKE2B c0ac487e826426c5f0a7fcfdc1078bd9b96442751821ac6597da3ffae3f5ab06b3fa4c4cf514536f9b8375f2a36529768942e6b15d6f4ea57ada543e7d95586c SHA512 6b91a8498f6065a0ddfcc53edf96dbf7720f82a73bc904ce6af18b1f52b559459e21ad9c3d550fc24730e3200c2ff9acaa9bdfe64b5bd83939b55db97ea116d9
24
25 diff --git a/app-crypt/seahorse-sharing/seahorse-sharing-3.8.0_p20151117.ebuild b/app-crypt/seahorse-sharing/seahorse-sharing-3.8.0_p20151117.ebuild
26 deleted file mode 100644
27 index 3abf1238440..00000000000
28 --- a/app-crypt/seahorse-sharing/seahorse-sharing-3.8.0_p20151117.ebuild
29 +++ /dev/null
30 @@ -1,63 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="5"
35 -GCONF_DEBUG="yes" # disable asserts
36 -
37 -inherit gnome2
38 -
39 -DESCRIPTION="Daemon for PGP public key sharing using DNS-SD and HKP"
40 -HOMEPAGE="https://projects.gnome.org/seahorse/"
41 -SRC_URI="https://dev.gentoo.org/~eva/distfiles/${PN}/${P//_p*}-19-g61de83c.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-2+"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE=""
47 -
48 -COMMON_DEPEND="
49 - app-crypt/seahorse
50 - dev-libs/glib:2
51 - >=net-dns/avahi-0.6:=[dbus]
52 - net-libs/libsoup:2.4
53 - >=x11-libs/gtk+-3:3
54 -
55 - >=app-crypt/gpgme-1
56 - >=app-crypt/gnupg-1.4
57 -"
58 -RDEPEND="${COMMON_DEPEND}
59 - !<app-crypt/seahorse-3.2
60 -"
61 -# ${PN} was part of seahorse before 3.2
62 -DEPEND="${COMMON_DEPEND}
63 - >=dev-util/intltool-0.35
64 - sys-devel/gettext
65 - virtual/pkgconfig
66 -"
67 -
68 -S="${WORKDIR}/${PN}-3.8.0"
69 -
70 -src_prepare() {
71 - DOCS="AUTHORS MAINTAINERS NEWS" # ChangeLog has nothing useful
72 - # Do not pass --enable-tests to configure - package has no tests
73 -
74 - gnome2_src_prepare
75 -
76 - # Drop stupid CFLAGS
77 - # FIXME: doing configure.ac triggers maintainer mode rebuild
78 - sed -e 's:$CFLAGS -g -O0:$CFLAGS:' \
79 - -i configure || die "sed failed"
80 -}
81 -
82 -pkg_postinst() {
83 - gnome2_pkg_postinst
84 -
85 - if ! has_version net-dns/avahi && \
86 - ! rc-config list default | grep -q "avahi-daemon" ; then
87 - elog "To use ${PN}, the Avahi daemon must be running. On an OpenRC"
88 - elog "system, you can start the Avahi daemon by"
89 - elog "# /etc/init.d/avahi-daemon start"
90 - elog "To start Avahi automatically, add it to the default runlevel:"
91 - elog "# rc-update add avahi-daemon default"
92 - fi
93 -}