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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 93083158020 for ; Mon, 26 Dec 2022 10:17:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 916D3E09A6; Mon, 26 Dec 2022 10:17:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 70EE9E09A6 for ; Mon, 26 Dec 2022 10:17:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 18DA53410C4 for ; Mon, 26 Dec 2022 10:17:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C95C7FB for ; Mon, 26 Dec 2022 10:17:31 +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: <1672049839.073a81eb641fc598bd4a5ab7af3d7819d6245c36.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/atcore/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/atcore/atcore-1.0.0.ebuild X-VCS-Directories: dev-libs/atcore/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 073a81eb641fc598bd4a5ab7af3d7819d6245c36 X-VCS-Branch: master Date: Mon, 26 Dec 2022 10:17:31 +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: e4d3aae7-0e12-48a6-97aa-2a3977c700ae X-Archives-Hash: f4b4042de2fa49799121c203a74e1027 commit: 073a81eb641fc598bd4a5ab7af3d7819d6245c36 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 26 10:13:42 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Dec 26 10:17:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=073a81eb dev-libs/atcore: update EAPI 7 -> 8 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/atcore/atcore-1.0.0.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dev-libs/atcore/atcore-1.0.0.ebuild b/dev-libs/atcore/atcore-1.0.0.ebuild index dabc43053436..5f1724ce84ba 100644 --- a/dev-libs/atcore/atcore-1.0.0.ebuild +++ b/dev-libs/atcore/atcore-1.0.0.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 ECM_TEST="forceoptional" QTMIN=5.12.3 @@ -16,10 +16,6 @@ SLOT="0" KEYWORDS="~amd64" IUSE="doc gui test" -BDEPEND=" - >=dev-qt/linguist-tools-${QTMIN}:5 - doc? ( app-doc/doxygen[dot] ) -" DEPEND=" >=dev-qt/qtserialport-${QTMIN}:5 gui? ( @@ -29,13 +25,17 @@ DEPEND=" ) " RDEPEND="${DEPEND}" +BDEPEND=" + >=dev-qt/linguist-tools-${QTMIN}:5 + doc? ( app-doc/doxygen[dot] ) +" src_prepare() { ecm_src_prepare sed -e "s/${PN}/${PF}/" -i doc/CMakeLists.txt || die - use gui || ecm_punt_bogus_dep Qt5 Charts + use gui || ecm_punt_qt_module Charts use test || cmake_comment_add_subdirectory unittests }