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 5C0B815808B for ; Sun, 3 Apr 2022 10:45:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 867A3E08BD; Sun, 3 Apr 2022 10:45:20 +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 0B2B4E08BD for ; Sun, 3 Apr 2022 10:45:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D28C2341234 for ; Sun, 3 Apr 2022 10:45:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4016ED0 for ; Sun, 3 Apr 2022 10:45:16 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1648982681.f8438748836c1f37a0d053ed7d3a0e2430d9e7bc.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cereal/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/cereal/cereal-1.3.2-r2.ebuild X-VCS-Directories: dev-libs/cereal/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: f8438748836c1f37a0d053ed7d3a0e2430d9e7bc X-VCS-Branch: master Date: Sun, 3 Apr 2022 10:45:16 +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: 78ad4ec8-73b5-4236-9400-fbc62d9b398f X-Archives-Hash: 30de5a657391fcde9b8db2c78f01ee77 commit: f8438748836c1f37a0d053ed7d3a0e2430d9e7bc Author: Matthew Smith gentoo org> AuthorDate: Sun Apr 3 10:29:06 2022 +0000 Commit: Matthew Smith gentoo org> CommitDate: Sun Apr 3 10:44:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8438748 dev-libs/cereal: conditionally skip tests Closes: https://bugs.gentoo.org/836688 Signed-off-by: Matthew Smith gentoo.org> dev-libs/cereal/cereal-1.3.2-r2.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-libs/cereal/cereal-1.3.2-r2.ebuild b/dev-libs/cereal/cereal-1.3.2-r2.ebuild index 6082cdb4afaa..da3bf9c69469 100644 --- a/dev-libs/cereal/cereal-1.3.2-r2.ebuild +++ b/dev-libs/cereal/cereal-1.3.2-r2.ebuild @@ -42,10 +42,10 @@ src_configure() { -DSKIP_PERFORMANCE_COMPARISON=ON -DWITH_WERROR=OFF - - # TODO: Enable if multilib? - -DSKIP_PORTABILITY_TEST=ON ) + # TODO: Enable if multilib? + use test && mycmakeargs+=( -DSKIP_PORTABILITY_TEST=ON ) + cmake_src_configure }