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 A51831396D0 for ; Fri, 1 Sep 2017 21:34:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01AC51FC00F; Fri, 1 Sep 2017 21:34:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 D16F11FC008 for ; Fri, 1 Sep 2017 21:34:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 AE9E1341646 for ; Fri, 1 Sep 2017 21:34:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CC608AA0 for ; Fri, 1 Sep 2017 21:34:29 +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: <1504301643.e9d2337e625de1bc32be63d33d5e3545404cc2de.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.ebuild X-VCS-Directories: sys-auth/polkit-qt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e9d2337e625de1bc32be63d33d5e3545404cc2de X-VCS-Branch: master Date: Fri, 1 Sep 2017 21:34:29 +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: f94b4992-c964-414b-90b7-105cb3013bde X-Archives-Hash: 1ec297d6bdc2153ffb79c4d015aa634a commit: e9d2337e625de1bc32be63d33d5e3545404cc2de Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Aug 31 22:29:13 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Sep 1 21:34:03 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9d2337e sys-auth/polkit-qt: Drop old Package-Manager: Portage-2.3.8, Repoman-2.3.3 .../polkit-qt/polkit-qt-0.112.0_p20160416.ebuild | 79 ---------------------- 1 file changed, 79 deletions(-) diff --git a/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416.ebuild b/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416.ebuild deleted file mode 100644 index 30f4a1d5800..00000000000 --- a/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416.ebuild +++ /dev/null @@ -1,79 +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 Qt4 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 +qt5" - -REQUIRED_USE="|| ( qt4 qt5 )" - -RDEPEND=" - dev-libs/glib:2 - >=sys-auth/polkit-0.103 - qt4? ( - dev-qt/qtcore:4[glib] - dev-qt/qtdbus:4 - dev-qt/qtgui:4[glib] - ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtdbus:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - examples? ( dev-qt/qtxml:5 ) - ) -" -DEPEND="${RDEPEND}" - -DOCS=( AUTHORS README README.porting TODO ) - -S=${WORKDIR}/${MY_P} - -pkg_setup() { - MULTIBUILD_VARIANTS=() - use qt4 && MULTIBUILD_VARIANTS+=( qt4 ) - use qt5 && MULTIBUILD_VARIANTS+=( 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 -}