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 5AF98139360 for ; Thu, 12 Aug 2021 13:34:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F34AE0B13; Thu, 12 Aug 2021 13:34:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 85713E0B13 for ; Thu, 12 Aug 2021 13:34:51 +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 570AC342C48 for ; Thu, 12 Aug 2021 13:34:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7DA68C8 for ; Thu, 12 Aug 2021 13:34:47 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1628775281.fd89e445d008d01d07791fe9601016acaeac86e4.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/ignition-common/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/ignition-common/ignition-common-3.11.1.ebuild X-VCS-Directories: sci-libs/ignition-common/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: fd89e445d008d01d07791fe9601016acaeac86e4 X-VCS-Branch: master Date: Thu, 12 Aug 2021 13:34: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e5609763-0630-404c-83de-3511f13d9448 X-Archives-Hash: 9cf23fc8ef792045ae70f0148979689e commit: fd89e445d008d01d07791fe9601016acaeac86e4 Author: Alexis Ballier gentoo org> AuthorDate: Thu Aug 12 13:31:11 2021 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Thu Aug 12 13:34:41 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd89e445 sci-libs/ignition-common: add support and comment about disabled tests Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Alexis Ballier gentoo.org> sci-libs/ignition-common/ignition-common-3.11.1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sci-libs/ignition-common/ignition-common-3.11.1.ebuild b/sci-libs/ignition-common/ignition-common-3.11.1.ebuild index 6247d244365..7d34ff112ff 100644 --- a/sci-libs/ignition-common/ignition-common-3.11.1.ebuild +++ b/sci-libs/ignition-common/ignition-common-3.11.1.ebuild @@ -15,7 +15,10 @@ SRC_URI="https://github.com/ignitionrobotics/ign-common/archive/${PN}${IGN_MAJOR LICENSE="Apache-2.0" SLOT="${IGN_MAJOR}" KEYWORDS="~amd64" -IUSE="" +IUSE="test" +#RESTRICT="!test? ( test )" +# tests dont even build +RESTRICT="test" RDEPEND=" dev-libs/tinyxml2:= @@ -34,7 +37,7 @@ S="${WORKDIR}/ign-common-${PN}${IGN_MAJOR}_${PV}" src_configure() { local mycmakeargs=( - "-DBUILD_TESTING=OFF" + "-DBUILD_TESTING=$(usex test)" ) cmake-utils_src_configure }