From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 35CE6158B20 for ; Sat, 01 Feb 2025 21:55:16 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 102C2343122 for ; Sat, 01 Feb 2025 21:55:16 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 93299110471; Sat, 01 Feb 2025 21:55:11 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 bobolink.gentoo.org (Postfix) with ESMTPS id 8BBD9110471 for ; Sat, 01 Feb 2025 21:55: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 3F4D634069F for ; Sat, 01 Feb 2025 21:55:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7DCE149F for ; Sat, 01 Feb 2025 21:55: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: <1738446903.9e4c143c8b8d383b70fd127ab5e71cd90f254ae7.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/stellarsolver/stellarsolver-2.6-r10.ebuild X-VCS-Directories: sci-libs/stellarsolver/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 9e4c143c8b8d383b70fd127ab5e71cd90f254ae7 X-VCS-Branch: master Date: Sat, 01 Feb 2025 21:55: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: f5513061-b5f6-4785-9fba-c474607fd093 X-Archives-Hash: 5d816fa7b3362eb4edfc2d87ed8ea667 commit: 9e4c143c8b8d383b70fd127ab5e71cd90f254ae7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Feb 1 21:49:02 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Feb 1 21:55:03 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e4c143c sci-libs/stellarsolver: Switch to Qt6 Signed-off-by: Andreas Sturmlechner gentoo.org> .../stellarsolver/stellarsolver-2.6-r10.ebuild | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/sci-libs/stellarsolver/stellarsolver-2.6-r10.ebuild b/sci-libs/stellarsolver/stellarsolver-2.6-r10.ebuild new file mode 100644 index 000000000000..8df7b5ad70f8 --- /dev/null +++ b/sci-libs/stellarsolver/stellarsolver-2.6-r10.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake flag-o-matic + +DESCRIPTION="Cross-platform Sextractor and Astrometry.net-Based internal astrometric solver" +HOMEPAGE="https://github.com/rlancaste/stellarsolver" +SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + dev-qt/qtbase:6[concurrent,gui,network,widgets] + sci-libs/cfitsio:= + sci-libs/gsl:= + sci-astronomy/wcslib:= +" +DEPEND="${RDEPEND}" + +src_configure() { + # bug #862930 + filter-lto + + local mycmakeargs=( + -DUSE_QT5=OFF + -DBUILD_CLI=OFF # nothing is installed (yet?) + ) + + cmake_src_configure +}