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 04B7F138334 for ; Tue, 31 Dec 2019 16:44:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E94DDE0B46; Tue, 31 Dec 2019 16:44:05 +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 C7848E0B43 for ; Tue, 31 Dec 2019 16:44:05 +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 CFC6C34DDDD for ; Tue, 31 Dec 2019 16:44:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA9E984 for ; Tue, 31 Dec 2019 16:44:00 +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: <1577810572.d2fdb2bec516c1e1326b9320f53815fce0d11b4c.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: d2fdb2bec516c1e1326b9320f53815fce0d11b4c X-VCS-Branch: master Date: Tue, 31 Dec 2019 16:44:00 +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: e165864c-163c-4eb3-b1a7-cf7b0aeafb8f X-Archives-Hash: e178a69f1201630c69ab7227e118eb98 commit: d2fdb2bec516c1e1326b9320f53815fce0d11b4c Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Dec 31 16:42:52 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Dec 31 16:42:52 2019 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=d2fdb2be dev-libs/libsystemd-qt: Switch to cmake.eclass, EAPI-7 bump Add missing RESTRICT="!test? ( test )" Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/libsystemd-qt/libsystemd-qt-9999.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dev-libs/libsystemd-qt/libsystemd-qt-9999.ebuild b/dev-libs/libsystemd-qt/libsystemd-qt-9999.ebuild index e3e97a63..94cef0ea 100644 --- a/dev-libs/libsystemd-qt/libsystemd-qt-9999.ebuild +++ b/dev-libs/libsystemd-qt/libsystemd-qt-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit cmake-utils +inherit cmake if [[ ${PV} == 9999* ]]; then EGIT_REPO_URI="https://github.com/scarpin0/${PN}.git" @@ -22,6 +22,8 @@ LICENSE="LGPL-2.1" SLOT="0" IUSE="debug test" +RESTRICT="!test? ( test )" + RDEPEND=" ${SYSTEMD_VERSION} dev-qt/qtcore:5 @@ -37,5 +39,5 @@ src_configure() { -DBUILD_QTSYSTEMD_TESTS=$(usex test) ) - cmake-utils_src_configure + cmake_src_configure }