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 355F1138350 for ; Sun, 8 Mar 2020 00:23:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D000E08F1; Sun, 8 Mar 2020 00:23:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 C6513E08F1 for ; Sun, 8 Mar 2020 00:23:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3763A34F172 for ; Sun, 8 Mar 2020 00:23:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE19015F for ; Sun, 8 Mar 2020 00:23:46 +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: <1583627013.6f8ba9729865be02ebebf2daf813c6d3cfc06d5f.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/waffle/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/waffle/waffle-1.6.0-r1.ebuild media-libs/waffle/waffle-9999.ebuild X-VCS-Directories: media-libs/waffle/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 6f8ba9729865be02ebebf2daf813c6d3cfc06d5f X-VCS-Branch: master Date: Sun, 8 Mar 2020 00:23: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: 2413d469-0fea-4253-ad2d-d75feb63dd90 X-Archives-Hash: 210fd7a9174844dc182161977cc7d02d commit: 6f8ba9729865be02ebebf2daf813c6d3cfc06d5f Author: Matt Turner gentoo org> AuthorDate: Sun Mar 8 00:21:34 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Mar 8 00:23:33 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f8ba972 media-libs/waffle: Never build tests, since RESTRICT=test Closes: https://bugs.gentoo.org/711836 Signed-off-by: Matt Turner gentoo.org> media-libs/waffle/waffle-1.6.0-r1.ebuild | 4 ++-- media-libs/waffle/waffle-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/media-libs/waffle/waffle-1.6.0-r1.ebuild b/media-libs/waffle/waffle-1.6.0-r1.ebuild index 6e98a39c761..68be1d58a25 100644 --- a/media-libs/waffle/waffle-1.6.0-r1.ebuild +++ b/media-libs/waffle/waffle-1.6.0-r1.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="http://www.waffle-gl.org/ https://gitlab.freedesktop.org/mesa/waffle" LICENSE="BSD-2" SLOT="0" -IUSE="doc egl gbm test wayland X" +IUSE="doc egl gbm wayland X" RESTRICT="test" # gl_basic tests don't work when run from portage RDEPEND=" @@ -56,8 +56,8 @@ multilib_src_configure() { $(meson_feature X x11_egl) $(meson_feature gbm) $(meson_feature egl surfaceless_egl) - $(meson_use test build-tests) $(meson_use doc build-manpages) + -Dbuild-tests=false ) meson_src_configure } diff --git a/media-libs/waffle/waffle-9999.ebuild b/media-libs/waffle/waffle-9999.ebuild index 7a801198f4d..cf4f722c608 100644 --- a/media-libs/waffle/waffle-9999.ebuild +++ b/media-libs/waffle/waffle-9999.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="http://www.waffle-gl.org/ https://gitlab.freedesktop.org/mesa/waffle" LICENSE="BSD-2" SLOT="0" -IUSE="doc egl gbm test wayland X" +IUSE="doc egl gbm wayland X" RESTRICT="test" # gl_basic tests don't work when run from portage RDEPEND=" @@ -52,8 +52,8 @@ multilib_src_configure() { $(meson_feature X x11_egl) $(meson_feature gbm) $(meson_feature egl surfaceless_egl) - $(meson_use test build-tests) $(meson_use doc build-manpages) + -Dbuild-tests=false ) meson_src_configure }