From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 069CD13835A for ; Tue, 30 Jun 2020 09:27:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C3E5E0909; Tue, 30 Jun 2020 09:27:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0629BE0909 for ; Tue, 30 Jun 2020 09:27:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D9F1E34F316 for ; Tue, 30 Jun 2020 09:27:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A35942BE for ; Tue, 30 Jun 2020 09:27:18 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1593509225.8186fb3d41b916e4a361a2348d986377d56de667.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/signond/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/signond/signond-8.60-r1.ebuild X-VCS-Directories: net-libs/signond/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8186fb3d41b916e4a361a2348d986377d56de667 X-VCS-Branch: master Date: Tue, 30 Jun 2020 09:27:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0d0727e3-21e8-4de9-afda-ba85f2d316e2 X-Archives-Hash: 25677c7f76a2d5f0ea23c0987f03f5bc commit: 8186fb3d41b916e4a361a2348d986377d56de667 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Jun 30 07:16:02 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jun 30 09:27:05 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8186fb3d net-libs/signond: Drop 8.60-r1 Closes: https://bugs.gentoo.org/727228 Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/signond/signond-8.60-r1.ebuild | 63 --------------------------------- 1 file changed, 63 deletions(-) diff --git a/net-libs/signond/signond-8.60-r1.ebuild b/net-libs/signond/signond-8.60-r1.ebuild deleted file mode 100644 index e767142d676..00000000000 --- a/net-libs/signond/signond-8.60-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit qmake-utils - -DESCRIPTION="Signon daemon for libaccounts-glib" -HOMEPAGE="https://gitlab.com/accounts-sso" -SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VERSION_${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~ppc64 x86" -IUSE="doc test" - -BDEPEND="doc? ( app-doc/doxygen )" -RDEPEND=" - dev-qt/qtcore:5 - dev-qt/qtdbus:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtsql:5 - net-libs/libproxy -" -DEPEND="${RDEPEND} - test? ( dev-qt/qttest:5 ) -" - -RESTRICT="!test? ( test )" - -PATCHES=( - "${FILESDIR}/${P}-buildsystem.patch" - "${FILESDIR}/${P}-consistent-paths.patch" # bug 701142 -) - -S="${WORKDIR}/${PN}-VERSION_${PV}" - -src_prepare() { - default - - # install docs to correct location - sed -e "s|share/doc/\$\${PROJECT_NAME}|share/doc/${PF}|" -i doc/doc.pri || die - sed -e "/^documentation.path = /c\documentation.path = \$\${INSTALL_PREFIX}/share/doc/${PF}/\$\${TARGET}/" \ - -i lib/plugins/doc/doc.pri || die - sed -e "/^documentation.path = /c\documentation.path = \$\${INSTALL_PREFIX}/share/doc/${PF}/libsignon-qt/" \ - -i lib/SignOn/doc/doc.pri || die - - # make tests optional - use test || sed -i -e '/^SUBDIRS/s/tests//' signon.pro || die "couldn't disable tests" - - # make docs optional - use doc || sed -e "/include(\s*doc\/doc.pri\s*)/d" -i \ - signon.pro -i lib/SignOn/SignOn.pro lib/plugins/plugins.pro || die -} - -src_configure() { - eqmake5 PREFIX="${EPREFIX}"/usr LIBDIR=$(get_libdir) -} - -src_install() { - emake INSTALL_ROOT="${D}" install -}