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 7A339138331 for ; Sat, 26 May 2018 21:15:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63C65E0AA4; Sat, 26 May 2018 21:15:36 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 36E49E0A9B for ; Sat, 26 May 2018 21:15:36 +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 C12D2335CA8 for ; Sat, 26 May 2018 21:15:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 660042AD for ; Sat, 26 May 2018 21:15:33 +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: <1527369321.03846570dd1297de8fdee549b57a9cf4ecb07aa1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/polkit-qt/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r1.ebuild X-VCS-Directories: sys-auth/polkit-qt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 03846570dd1297de8fdee549b57a9cf4ecb07aa1 X-VCS-Branch: master Date: Sat, 26 May 2018 21:15:33 +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-Archives-Salt: 06158c3a-9908-48f9-adb3-cc31a19230f2 X-Archives-Hash: 22a0b55eb2f5aa5a84d70f34ebb1b858 commit: 03846570dd1297de8fdee549b57a9cf4ecb07aa1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat May 26 21:11:08 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat May 26 21:15:21 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03846570 sys-auth/polkit-qt: Drop old Qt4-based Dropping arches without remaining revdeps. Closes: https://bugs.gentoo.org/627178 Package-Manager: Portage-2.3.38, Repoman-2.3.9 .../polkit-qt-0.112.0_p20160416-r1.ebuild | 73 ---------------------- 1 file changed, 73 deletions(-) diff --git a/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r1.ebuild b/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r1.ebuild deleted file mode 100644 index 8939baaf3bd..00000000000 --- a/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r1.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_P="${P/qt/qt-1}" - -inherit cmake-utils multibuild - -DESCRIPTION="PolicyKit Qt API wrapper library" -HOMEPAGE="https://www.kde.org/" -SRC_URI="https://dev.gentoo.org/~kensington/distfiles/${MY_P}.tar.xz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86 ~x86-fbsd" -IUSE="debug examples qt4" - -RDEPEND=" - dev-libs/glib:2 - dev-qt/qtcore:5 - dev-qt/qtdbus:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - >=sys-auth/polkit-0.103 - examples? ( dev-qt/qtxml:5 ) - qt4? ( - dev-qt/qtcore:4[glib] - dev-qt/qtdbus:4 - dev-qt/qtgui:4[glib] - ) -" -DEPEND="${RDEPEND}" - -DOCS=( AUTHORS README README.porting TODO ) - -S=${WORKDIR}/${MY_P} - -pkg_setup() { - MULTIBUILD_VARIANTS=( $(usev qt4) qt5 ) -} - -src_configure() { - myconfigure() { - local mycmakeargs=( - -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc - -DBUILD_EXAMPLES=$(usex examples) - ) - - if [[ ${MULTIBUILD_VARIANT} = qt4 ]] ; then - mycmakeargs+=( -DUSE_QT4=ON ) - fi - if [[ ${MULTIBUILD_VARIANT} = qt5 ]] ; then - mycmakeargs+=( -DUSE_QT5=ON ) - fi - - cmake-utils_src_configure - } - - multibuild_foreach_variant myconfigure -} - -src_compile() { - multibuild_foreach_variant cmake-utils_src_compile -} - -src_test() { - multibuild_foreach_variant cmake-utils_src_test -} - -src_install() { - multibuild_foreach_variant cmake-utils_src_install -}