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 A02C3158089 for ; Sun, 1 Oct 2023 11:12:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2B1A2BC03A; Sun, 1 Oct 2023 11:12:09 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 CE57E2BC03A for ; Sun, 1 Oct 2023 11:12:09 +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 05421335D0D for ; Sun, 1 Oct 2023 11:12:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6103A8D3 for ; Sun, 1 Oct 2023 11:12:07 +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: <1696157228.74598e63254cd0d6b7ad0c97b399dcc278585929.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.6.7.ebuild X-VCS-Directories: sci-astronomy/kstars/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 74598e63254cd0d6b7ad0c97b399dcc278585929 X-VCS-Branch: master Date: Sun, 1 Oct 2023 11:12:07 +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: a6cbc810-9ca2-465c-8c7e-325495a69782 X-Archives-Hash: 01dbd597ee7ef41fabaa9ace3afec4c1 commit: 74598e63254cd0d6b7ad0c97b399dcc278585929 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 1 10:45:43 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 1 10:47:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74598e63 sci-astronomy/kstars: Drop IUSE="fits,indi" These options break every single release by upstream not caring about ifdefs. Enough is enough. Signed-off-by: Andreas Sturmlechner gentoo.org> sci-astronomy/kstars/kstars-3.6.7.ebuild | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/sci-astronomy/kstars/kstars-3.6.7.ebuild b/sci-astronomy/kstars/kstars-3.6.7.ebuild index e64c40481d07..9e64b0fcf4c7 100644 --- a/sci-astronomy/kstars/kstars-3.6.7.ebuild +++ b/sci-astronomy/kstars/kstars-3.6.7.ebuild @@ -19,9 +19,9 @@ fi LICENSE="GPL-2+ GPL-3+" SLOT="5" -IUSE="fits indi +password raw wcs" +IUSE="+password raw wcs" -REQUIRED_USE="indi? ( fits ) ${PYTHON_REQUIRED_USE}" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" COMMON_DEPEND=" >=dev-qt/qtdatavis3d-${QTMIN}:5 @@ -46,14 +46,12 @@ COMMON_DEPEND=" >=kde-frameworks/kplotting-${KFMIN}:5 >=kde-frameworks/kwidgetsaddons-${KFMIN}:5 >=kde-frameworks/kxmlgui-${KFMIN}:5 + sci-libs/cfitsio:= sci-libs/gsl:= + >=sci-libs/indilib-2.0.2 + sci-libs/libnova:= + >=sci-libs/stellarsolver-2.2 sys-libs/zlib - fits? ( sci-libs/cfitsio:= ) - indi? ( - >=sci-libs/indilib-2.0.2 - sci-libs/libnova:= - >=sci-libs/stellarsolver-2.2 - ) password? ( dev-libs/qtkeychain:=[qt5(+)] ) raw? ( media-libs/libraw:= ) wcs? ( sci-astronomy/wcslib:= ) @@ -79,9 +77,6 @@ src_configure() { -DBUILD_PYKSTARS=OFF -DCMAKE_DISABLE_FIND_PACKAGE_LibXISF=ON # not packaged -DBUILD_DOC=$(usex handbook) - $(cmake_use_find_package fits CFitsio) - $(cmake_use_find_package indi INDI) - $(cmake_use_find_package indi Nova) $(cmake_use_find_package password Qt5Keychain) $(cmake_use_find_package raw LibRaw) $(cmake_use_find_package wcs WCSLIB)