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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0254E158042 for ; Mon, 21 Oct 2024 21:21:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22617E0969; Mon, 21 Oct 2024 21:21:12 +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 072C8E0969 for ; Mon, 21 Oct 2024 21:21:12 +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 1231434305E for ; Mon, 21 Oct 2024 21:21:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B7B011DF for ; Mon, 21 Oct 2024 21:21:09 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1729545641.7b2527646fdf2610d45f4ecd3215f0b749ae532d.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: sci-astronomy/kstars/ X-VCS-Repository: proj/kde X-VCS-Files: sci-astronomy/kstars/kstars-9999.ebuild X-VCS-Directories: sci-astronomy/kstars/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7b2527646fdf2610d45f4ecd3215f0b749ae532d X-VCS-Branch: master Date: Mon, 21 Oct 2024 21:21:09 +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: 950ed2c8-3c1f-4d5d-a88e-4ff3a84d497d X-Archives-Hash: 2ec49364a5bcee4a042f1c8dd22d1dd4 commit: 7b2527646fdf2610d45f4ecd3215f0b749ae532d Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Oct 21 21:09:21 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Oct 21 21:20:41 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=7b252764 sci-astronomy/kstars: Fix some tests and disable broken ones Bug: https://bugs.gentoo.org/923871 Bug: https://bugs.gentoo.org/939788 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-astronomy/kstars/kstars-9999.ebuild | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/sci-astronomy/kstars/kstars-9999.ebuild b/sci-astronomy/kstars/kstars-9999.ebuild index eac4c9389d..1f3205be2e 100644 --- a/sci-astronomy/kstars/kstars-9999.ebuild +++ b/sci-astronomy/kstars/kstars-9999.ebuild @@ -21,7 +21,8 @@ LICENSE="GPL-2+ GPL-3+" SLOT="5" IUSE="+password raw wcs" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" +# IUSE wcs needed by TestPolarAlign +REQUIRED_USE="${PYTHON_REQUIRED_USE} test? ( wcs )" COMMON_DEPEND=" >=dev-qt/qtdatavis3d-${QTMIN}:5 @@ -73,6 +74,15 @@ RDEPEND="${COMMON_DEPEND} >=dev-qt/qtquickcontrols2-${QTMIN}:5 " +CMAKE_SKIP_TESTS=( + # bug 842768, test declared unstable by upstream + TestKSPaths + # bugs 923871, 939788 + TestPlaceholderPath # ki18n (KLocalizedString) failure + # all fail with offscreen plugin + TestEkos{Capture,FilterWheel,Focus,Mount,Scheduler{,Ops},Simulator} +) + src_configure() { local mycmakeargs=( -DCMAKE_DISABLE_FIND_PACKAGE_LibXISF=ON # not packaged @@ -86,12 +96,7 @@ src_configure() { } src_test() { - # bug 842768, test declared unstable by upstream - local myctestargs=( - -E "(TestKSPaths)" - ) - - ecm_src_test + LC_NUMERIC="C" LC_TIME="C" TZ=UTC ecm_src_test } pkg_postinst() {