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 D2452138331 for ; Wed, 11 Apr 2018 23:10:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7D66E07ED; Wed, 11 Apr 2018 23:10:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 B4875E0918 for ; Wed, 11 Apr 2018 23:10:50 +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 531DB335C75 for ; Wed, 11 Apr 2018 23:10:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D0D08285 for ; Wed, 11 Apr 2018 23:10:47 +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: <1523479344.98c2b49729fe4cc9bb8b47fe91831c7ea5808f24.asturm@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: dev-libs/libsystemd-qt/ X-VCS-Repository: proj/qt X-VCS-Files: dev-libs/libsystemd-qt/libsystemd-qt-9999.ebuild X-VCS-Directories: dev-libs/libsystemd-qt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 98c2b49729fe4cc9bb8b47fe91831c7ea5808f24 X-VCS-Branch: master Date: Wed, 11 Apr 2018 23:10:47 +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: 5194533f-6a07-4591-86b0-744a305ca5bb X-Archives-Hash: 0c24b4172a3dc76aca31b87ae8753765 commit: 98c2b49729fe4cc9bb8b47fe91831c7ea5808f24 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Apr 11 20:42:24 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Apr 11 20:42:24 2018 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=98c2b497 dev-libs/libsystemd-qt: Drop USE=qt4,qt5 Package-Manager: Portage-2.3.28, Repoman-2.3.9 dev-libs/libsystemd-qt/libsystemd-qt-9999.ebuild | 25 ++++++------------------ 1 file changed, 6 insertions(+), 19 deletions(-) diff --git a/dev-libs/libsystemd-qt/libsystemd-qt-9999.ebuild b/dev-libs/libsystemd-qt/libsystemd-qt-9999.ebuild index 4274d4ae..c6d5a34d 100644 --- a/dev-libs/libsystemd-qt/libsystemd-qt-9999.ebuild +++ b/dev-libs/libsystemd-qt/libsystemd-qt-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -8,7 +8,6 @@ inherit cmake-utils if [[ ${PV} == 9999* ]]; then EGIT_REPO_URI="https://github.com/scarpin0/${PN}.git" inherit git-r3 - KEYWORDS="" SYSTEMD_VERSION=">=sys-apps/systemd-207" else SRC_URI="https://github.com/scarpin0/libsystemd-qt/archive/${PV}.zip -> ${P}.zip" @@ -21,32 +20,20 @@ HOMEPAGE="https://github.com/scarpin0/libsystemd-qt" LICENSE="LGPL-2.1" SLOT="0" -IUSE="debug qml qt4 +qt5 test" +IUSE="debug qml test" RDEPEND=" ${SYSTEMD_VERSION} - qt4? ( dev-qt/qtcore:4 ) - qt5? ( - dev-qt/qtcore:5 - qml? ( dev-qt/qtdeclarative:5 ) - ) + dev-qt/qtcore:5 + qml? ( dev-qt/qtdeclarative:5 ) " DEPEND="${RDEPEND} - test? ( - qt4? ( dev-qt/qttest:4 ) - qt5? ( dev-qt/qttest:5 ) - ) + test? ( dev-qt/qttest:5 ) " -REQUIRED_USE=" - ^^ ( qt4 qt5 ) - qml? ( qt5 ) -" - -DOCS=( README.md ) src_configure() { local mycmakeargs=( - -DBUILD_WITH_QT4=$(usex qt4) + -DBUILD_WITH_QT4=OFF -DBUILD_QTSYSTEMD_TESTS=$(usex test) -DBUILD_QTSYSTEMD_QMLPLUGIN=$(usex qml) )