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 88FDA1584F2 for ; Sun, 16 Mar 2025 22:56:00 +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 6FBBD343276 for ; Sun, 16 Mar 2025 22:56:00 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 8C3671102B7; Sun, 16 Mar 2025 22:55:56 +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 8073D1102B7 for ; Sun, 16 Mar 2025 22:55:56 +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 376C13431FC for ; Sun, 16 Mar 2025 22:55:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C8D231772 for ; Sun, 16 Mar 2025 22:55:54 +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: <1742165747.34bbf0f7ba9c23a3594a8235eed4912525c43a32.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.ebuild X-VCS-Directories: sci-libs/stellarsolver/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 34bbf0f7ba9c23a3594a8235eed4912525c43a32 X-VCS-Branch: master Date: Sun, 16 Mar 2025 22:55:54 +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: 3b840848-d814-471a-bd1e-3d641a62c58a X-Archives-Hash: 794c583436f547233d5e7711ebd38e26 commit: 34bbf0f7ba9c23a3594a8235eed4912525c43a32 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 16 12:27:26 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 16 22:55:47 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34bbf0f7 sci-libs/stellarsolver: drop 2.6 Bug: https://bugs.gentoo.org/949206 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/stellarsolver/stellarsolver-2.6.ebuild | 39 ------------------------- 1 file changed, 39 deletions(-) diff --git a/sci-libs/stellarsolver/stellarsolver-2.6.ebuild b/sci-libs/stellarsolver/stellarsolver-2.6.ebuild deleted file mode 100644 index f7c3f6d5abd8..000000000000 --- a/sci-libs/stellarsolver/stellarsolver-2.6.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2024 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/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtwidgets:5 - sci-libs/cfitsio:= - sci-libs/gsl:= - sci-astronomy/wcslib:= -" -DEPEND="${RDEPEND}" - -src_configure() { - # bug #862930 - filter-lto - - local mycmakeargs=( - -DUSE_QT5=ON # future TODO: check if Qt6 can be enabled safely - -DBUILD_CLI=OFF # nothing is installed (yet?) - ) - - cmake_src_configure -}