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 3C19A158087 for ; Fri, 10 Dec 2021 05:49:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 297272BC01B; Fri, 10 Dec 2021 05:49:31 +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 ADA202BC01B for ; Fri, 10 Dec 2021 05:49:30 +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 1C8BC33BEFE for ; Fri, 10 Dec 2021 05:49:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B6FE7233 for ; Fri, 10 Dec 2021 05:49:27 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1639115320.8c04cda972dcc8e64939138071531608327c135f.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/wayland/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/wayland/wayland-9999.ebuild X-VCS-Directories: dev-libs/wayland/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 8c04cda972dcc8e64939138071531608327c135f X-VCS-Branch: master Date: Fri, 10 Dec 2021 05:49:27 +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: 1fc99bc3-cb56-4990-96fa-dbee8c5d4e77 X-Archives-Hash: ed75a592c535795a77441cd047dffda8 commit: 8c04cda972dcc8e64939138071531608327c135f Author: Matt Turner gentoo org> AuthorDate: Fri Dec 10 05:43:05 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Dec 10 05:48:40 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c04cda9 dev-libs/wayland: Conditionally build tests Signed-off-by: Matt Turner gentoo.org> dev-libs/wayland/wayland-9999.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-libs/wayland/wayland-9999.ebuild b/dev-libs/wayland/wayland-9999.ebuild index 058e90a73824..4a2a7474eea2 100644 --- a/dev-libs/wayland/wayland-9999.ebuild +++ b/dev-libs/wayland/wayland-9999.ebuild @@ -17,7 +17,8 @@ HOMEPAGE="https://wayland.freedesktop.org/ https://gitlab.freedesktop.org/waylan LICENSE="MIT" SLOT="0" -IUSE="doc" +IUSE="doc test" +RESTRICT="!test? ( test )" BDEPEND=" ~dev-util/wayland-scanner-${PV}[$MULTILIB_USEDEP] @@ -41,6 +42,7 @@ multilib_src_configure() { $(meson_native_true dtd_validation) -Dlibraries=true -Dscanner=false + $(meson_use test tests) ) meson_src_configure }