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 79E1D158042 for ; Mon, 21 Oct 2024 21:10:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 928C0E07D0; Mon, 21 Oct 2024 21:10:37 +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 762C3E07D0 for ; Mon, 21 Oct 2024 21:10:37 +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 836BD343003 for ; Mon, 21 Oct 2024 21:10:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74D9011DF for ; Mon, 21 Oct 2024 21:10:34 +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: <1729545025.82bd7aa73acbdfc0f0eccf4fe021480956b1e91b.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-astronomy/kstars/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-astronomy/kstars/kstars-3.7.3.ebuild X-VCS-Directories: sci-astronomy/kstars/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 82bd7aa73acbdfc0f0eccf4fe021480956b1e91b X-VCS-Branch: master Date: Mon, 21 Oct 2024 21:10:34 +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: b103545c-43a6-4b18-8d35-9520ea52a16c X-Archives-Hash: 5eb93fbde4b871f76ef46d605cdc445b commit: 82bd7aa73acbdfc0f0eccf4fe021480956b1e91b Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Oct 21 21:09:21 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Oct 21 21:10:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82bd7aa7 sci-astronomy/kstars: Fix some tests and disable broken ones Closes: https://bugs.gentoo.org/923871 Closes: https://bugs.gentoo.org/939788 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-astronomy/kstars/kstars-3.7.3.ebuild | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/sci-astronomy/kstars/kstars-3.7.3.ebuild b/sci-astronomy/kstars/kstars-3.7.3.ebuild index 685e654d10f5..6fc730f44dff 100644 --- a/sci-astronomy/kstars/kstars-3.7.3.ebuild +++ b/sci-astronomy/kstars/kstars-3.7.3.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=( -DBUILD_PYKSTARS=OFF @@ -87,12 +97,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() {