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 AEF5A158041 for ; Mon, 8 Apr 2024 07:04:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DFFE0E2A73; Mon, 8 Apr 2024 07:04:48 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BCC2CE2A73 for ; Mon, 8 Apr 2024 07:04:48 +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 A8E7F34307E for ; Mon, 8 Apr 2024 07:04:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21FAB166C for ; Mon, 8 Apr 2024 07:04:46 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1712559493.7901097290645dfe6daee81cda3732498f00fc6d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/czmq/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/czmq/czmq-4.2.1.ebuild X-VCS-Directories: net-libs/czmq/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7901097290645dfe6daee81cda3732498f00fc6d X-VCS-Branch: master Date: Mon, 8 Apr 2024 07:04:46 +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: 6d327c70-4711-4ca9-b193-b1ec8d165764 X-Archives-Hash: 287a44e2c2a7818b350846da3c74a84c commit: 7901097290645dfe6daee81cda3732498f00fc6d Author: Sam James gentoo org> AuthorDate: Mon Apr 8 06:58:13 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 8 06:58:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79010972 net-libs/czmq: conditionally build tests Signed-off-by: Sam James gentoo.org> net-libs/czmq/czmq-4.2.1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/net-libs/czmq/czmq-4.2.1.ebuild b/net-libs/czmq/czmq-4.2.1.ebuild index 6b42355ba222..0da2a9fa4f74 100644 --- a/net-libs/czmq/czmq-4.2.1.ebuild +++ b/net-libs/czmq/czmq-4.2.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="8" @@ -10,7 +10,8 @@ SRC_URI="https://github.com/zeromq/${PN}/releases/download/v${PV}/${P}.tar.gz" LICENSE="MPL-2.0" SLOT="0/4" KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc64 ~riscv x86" -IUSE="curl drafts http-client http-server lz4 nss static-libs systemd +uuid" +IUSE="curl drafts http-client http-server lz4 nss static-libs systemd test +uuid" +RESTRICT="!test? ( test )" BDEPEND="app-text/asciidoc app-text/xmlto @@ -41,6 +42,7 @@ src_configure() { --with-libsystemd=$(usex systemd) --with-liblz4=$(usex lz4) --with-nss=$(usex nss) + $(use_enable test czmq_selftest) ) econf "${myeconfargs[@]}"