Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/signond/
Date: Wed, 09 Jan 2019 11:52:20
Message-Id: 1547034719.b0e14017653a6a811d93fceaae13c55dd3c3e864.asturm@gentoo
1 commit: b0e14017653a6a811d93fceaae13c55dd3c3e864
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 9 11:29:52 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 9 11:51:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0e14017
7
8 net-libs/signond: Drop 8.59 (r0)
9
10 Closes: https://bugs.gentoo.org/668562
11 Package-Manager: Portage-2.3.54, Repoman-2.3.12
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 net-libs/signond/signond-8.59.ebuild | 65 ------------------------------------
15 1 file changed, 65 deletions(-)
16
17 diff --git a/net-libs/signond/signond-8.59.ebuild b/net-libs/signond/signond-8.59.ebuild
18 deleted file mode 100644
19 index 30f6ab605ca..00000000000
20 --- a/net-libs/signond/signond-8.59.ebuild
21 +++ /dev/null
22 @@ -1,65 +0,0 @@
23 -# Copyright 1999-2017 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=6
27 -
28 -inherit qmake-utils vcs-snapshot
29 -
30 -DESCRIPTION="Signon daemon for libaccounts-glib"
31 -HOMEPAGE="https://01.org/gsso/"
32 -SRC_URI="https://gitlab.com/accounts-sso/signond/repository/archive.tar.gz?ref=VERSION_8.59 -> ${P}.tar.gz"
33 -
34 -LICENSE="LGPL-2.1"
35 -SLOT="0"
36 -KEYWORDS="amd64 ~arm x86"
37 -IUSE="doc test"
38 -
39 -RESTRICT="test"
40 -
41 -COMMON_DEPEND="
42 - dev-qt/qtcore:5
43 - dev-qt/qtdbus:5
44 - dev-qt/qtgui:5
45 - dev-qt/qtnetwork:5
46 - dev-qt/qtsql:5
47 - net-libs/libproxy
48 -"
49 -DEPEND="${COMMON_DEPEND}
50 - doc? ( app-doc/doxygen )
51 - test? ( dev-qt/qttest:5 )
52 -"
53 -RDEPEND="${COMMON_DEPEND}
54 - !<net-libs/libproxy-0.4.12[kde]
55 -"
56 -# <libproxy-0.4.12[kde] results in segfaults due to symbol collisions with qt4
57 -
58 -src_prepare() {
59 - default
60 -
61 - # remove unused dependency
62 - sed -e "/xml \\\/d" -i src/signond/signond.pro || die
63 -
64 - # ensure qt5 version of binary is used
65 - sed -e "s|qdbusxml2cpp|$(qt5_get_bindir)/&|" -i src/signond/signond.pro || die
66 -
67 - # install docs to correct location
68 - sed -e "s|share/doc/\$\${PROJECT_NAME}|share/doc/${PF}|" -i doc/doc.pri || die
69 -
70 - # don't install example plugin
71 - sed -e "/example/d" -i src/plugins/plugins.pro || die
72 -
73 - # make tests optional
74 - use test || sed -i -e '/^SUBDIRS/s/tests//' signon.pro || die "couldn't disable tests"
75 -
76 - # make docs optional
77 - use doc || sed -e "/include(\s*doc\/doc.pri\s*)/d" -i \
78 - signon.pro -i lib/SignOn/SignOn.pro lib/plugins/plugins.pro || die
79 -}
80 -
81 -src_configure() {
82 - eqmake5
83 -}
84 -
85 -src_install() {
86 - emake INSTALL_ROOT="${D}" install
87 -}