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: Tue, 30 Jun 2020 09:27:24
Message-Id: 1593509225.8186fb3d41b916e4a361a2348d986377d56de667.asturm@gentoo
1 commit: 8186fb3d41b916e4a361a2348d986377d56de667
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 30 07:16:02 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 30 09:27:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8186fb3d
7
8 net-libs/signond: Drop 8.60-r1
9
10 Closes: https://bugs.gentoo.org/727228
11 Package-Manager: Portage-2.3.103, Repoman-2.3.23
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 net-libs/signond/signond-8.60-r1.ebuild | 63 ---------------------------------
15 1 file changed, 63 deletions(-)
16
17 diff --git a/net-libs/signond/signond-8.60-r1.ebuild b/net-libs/signond/signond-8.60-r1.ebuild
18 deleted file mode 100644
19 index e767142d676..00000000000
20 --- a/net-libs/signond/signond-8.60-r1.ebuild
21 +++ /dev/null
22 @@ -1,63 +0,0 @@
23 -# Copyright 1999-2020 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=7
27 -
28 -inherit qmake-utils
29 -
30 -DESCRIPTION="Signon daemon for libaccounts-glib"
31 -HOMEPAGE="https://gitlab.com/accounts-sso"
32 -SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VERSION_${PV}.tar.gz -> ${P}.tar.gz"
33 -
34 -LICENSE="LGPL-2.1"
35 -SLOT="0"
36 -KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
37 -IUSE="doc test"
38 -
39 -BDEPEND="doc? ( app-doc/doxygen )"
40 -RDEPEND="
41 - dev-qt/qtcore:5
42 - dev-qt/qtdbus:5
43 - dev-qt/qtgui:5
44 - dev-qt/qtnetwork:5
45 - dev-qt/qtsql:5
46 - net-libs/libproxy
47 -"
48 -DEPEND="${RDEPEND}
49 - test? ( dev-qt/qttest:5 )
50 -"
51 -
52 -RESTRICT="!test? ( test )"
53 -
54 -PATCHES=(
55 - "${FILESDIR}/${P}-buildsystem.patch"
56 - "${FILESDIR}/${P}-consistent-paths.patch" # bug 701142
57 -)
58 -
59 -S="${WORKDIR}/${PN}-VERSION_${PV}"
60 -
61 -src_prepare() {
62 - default
63 -
64 - # install docs to correct location
65 - sed -e "s|share/doc/\$\${PROJECT_NAME}|share/doc/${PF}|" -i doc/doc.pri || die
66 - sed -e "/^documentation.path = /c\documentation.path = \$\${INSTALL_PREFIX}/share/doc/${PF}/\$\${TARGET}/" \
67 - -i lib/plugins/doc/doc.pri || die
68 - sed -e "/^documentation.path = /c\documentation.path = \$\${INSTALL_PREFIX}/share/doc/${PF}/libsignon-qt/" \
69 - -i lib/SignOn/doc/doc.pri || die
70 -
71 - # make tests optional
72 - use test || sed -i -e '/^SUBDIRS/s/tests//' signon.pro || die "couldn't disable tests"
73 -
74 - # make docs optional
75 - use doc || sed -e "/include(\s*doc\/doc.pri\s*)/d" -i \
76 - signon.pro -i lib/SignOn/SignOn.pro lib/plugins/plugins.pro || die
77 -}
78 -
79 -src_configure() {
80 - eqmake5 PREFIX="${EPREFIX}"/usr LIBDIR=$(get_libdir)
81 -}
82 -
83 -src_install() {
84 - emake INSTALL_ROOT="${D}" install
85 -}