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 6B42415810D for ; Wed, 31 May 2023 03:26:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57601E0536; Wed, 31 May 2023 03:26:24 +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 39870E0391 for ; Wed, 31 May 2023 03:26:24 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 30182340CF4 for ; Wed, 31 May 2023 03:26:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4BAC1A78 for ; Wed, 31 May 2023 03:26:21 +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: <1685502838.932f1e8726ce40f5575371c44e539b81624badfd.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/expat/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/expat/expat-2.5.0.ebuild X-VCS-Directories: dev-libs/expat/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 932f1e8726ce40f5575371c44e539b81624badfd X-VCS-Branch: master Date: Wed, 31 May 2023 03:26:21 +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: 41cf1898-8399-42f5-8d41-f1f2bc3a40b3 X-Archives-Hash: 2b1079c18c16596d0c01973e683c7808 commit: 932f1e8726ce40f5575371c44e539b81624badfd Author: Sam James gentoo org> AuthorDate: Wed May 31 03:13:58 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 31 03:13:58 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=932f1e87 dev-libs/expat: conditionally build tests Closes: https://bugs.gentoo.org/906512 Signed-off-by: Sam James gentoo.org> dev-libs/expat/expat-2.5.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-libs/expat/expat-2.5.0.ebuild b/dev-libs/expat/expat-2.5.0.ebuild index 0fb12e1379eb..16e5df511891 100644 --- a/dev-libs/expat/expat-2.5.0.ebuild +++ b/dev-libs/expat/expat-2.5.0.ebuild @@ -13,7 +13,8 @@ SRC_URI="https://github.com/libexpat/libexpat/releases/download/R_${PV//\./_}/ex LICENSE="MIT" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" -IUSE="examples static-libs unicode" +IUSE="examples static-libs test unicode" +RESTRICT="!test? ( test )" BDEPEND="unicode? ( ${AUTOTOOLS_DEPEND} )" DOCS=( README.md ) @@ -37,7 +38,7 @@ src_prepare() { } multilib_src_configure() { - local myconf="$(use_enable static-libs static) --without-docbook" + local myconf="$(use_with test tests) $(use_enable static-libs static) --without-docbook" mkdir -p "${BUILD_DIR}"w || die