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 E08A9158041 for ; Mon, 25 Mar 2024 18:57:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A1DEE2AA4; Mon, 25 Mar 2024 18:57:11 +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 0C50AE2A96 for ; Mon, 25 Mar 2024 18:57:11 +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 148E7343051 for ; Mon, 25 Mar 2024 18:57:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3A5615E6 for ; Mon, 25 Mar 2024 18:57:08 +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: <1711392889.0c8d22fd3b4f568ccf86c225b214b4d2581ebbae.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/prusaslicer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/prusaslicer/prusaslicer-2.7.2.ebuild X-VCS-Directories: media-gfx/prusaslicer/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0c8d22fd3b4f568ccf86c225b214b4d2581ebbae X-VCS-Branch: master Date: Mon, 25 Mar 2024 18:57:08 +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: 5dccdb4f-7b53-4c7b-9bcd-3923e6dc5809 X-Archives-Hash: 2a2feffc44df738b7fdebf2a8fbc00ae commit: 0c8d22fd3b4f568ccf86c225b214b4d2581ebbae Author: Paul Zander gmail com> AuthorDate: Mon Mar 25 18:11:50 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 25 18:54:49 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c8d22fd media-gfx/prusaslicer: 2.7.2 re-enable tests Signed-off-by: Paul Zander gmail.com> Closes: https://github.com/gentoo/gentoo/pull/35915 Signed-off-by: Sam James gentoo.org> media-gfx/prusaslicer/prusaslicer-2.7.2.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/media-gfx/prusaslicer/prusaslicer-2.7.2.ebuild b/media-gfx/prusaslicer/prusaslicer-2.7.2.ebuild index 9eb191278e1c..a4ea9747ee33 100644 --- a/media-gfx/prusaslicer/prusaslicer-2.7.2.ebuild +++ b/media-gfx/prusaslicer/prusaslicer-2.7.2.ebuild @@ -20,7 +20,7 @@ SLOT="0" KEYWORDS="~amd64 ~arm64 ~x86" IUSE="test" -RESTRICT="test" +RESTRICT="!test? ( test )" RDEPEND=" dev-cpp/eigen:3 @@ -90,3 +90,10 @@ src_configure() { cmake_src_configure } + +src_test() { + CMAKE_SKIP_TESTS=( + "^libslic3r_tests$" + ) + cmake_src_test +}