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 1EDB51582EF for ; Fri, 14 Feb 2025 15:34:06 +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 068DC34319F for ; Fri, 14 Feb 2025 15:34:06 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 435C1110473; Fri, 14 Feb 2025 15:33:59 +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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 3E024110473 for ; Fri, 14 Feb 2025 15:33:59 +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 EC0CA34300B for ; Fri, 14 Feb 2025 15:33:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 558022713 for ; Fri, 14 Feb 2025 15:33:57 +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: <1739546993.8dfbbd3b9744a1d29f0bc8c029ef3f0856a370a2.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-astronomy/calcmysky/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-astronomy/calcmysky/calcmysky-0.3.3.ebuild X-VCS-Directories: sci-astronomy/calcmysky/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8dfbbd3b9744a1d29f0bc8c029ef3f0856a370a2 X-VCS-Branch: master Date: Fri, 14 Feb 2025 15:33:57 +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: dcc2b0e7-6a31-4725-9f7d-a9caf211c575 X-Archives-Hash: 71c624c8bc99086f0115b68509db521d commit: 8dfbbd3b9744a1d29f0bc8c029ef3f0856a370a2 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Feb 12 18:02:15 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Feb 14 15:29:53 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dfbbd3b sci-astronomy/calcmysky: drop 0.3.3 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-astronomy/calcmysky/calcmysky-0.3.3.ebuild | 65 -------------------------- 1 file changed, 65 deletions(-) diff --git a/sci-astronomy/calcmysky/calcmysky-0.3.3.ebuild b/sci-astronomy/calcmysky/calcmysky-0.3.3.ebuild deleted file mode 100644 index 80cec5a5f753..000000000000 --- a/sci-astronomy/calcmysky/calcmysky-0.3.3.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 2022-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit multibuild cmake - -DESCRIPTION="Simulator of light scattering by planetary atmospheres" -HOMEPAGE="https://github.com/10110111/CalcMySky" -SRC_URI=" - https://github.com/10110111/CalcMySky/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz -" - -LICENSE="GPL-3" -# subslot is soversion -SLOT="0/15" -KEYWORDS="amd64 ~ppc ~ppc64 ~riscv ~x86" - -IUSE="qt5 qt6" -REQUIRED_USE="|| ( qt5 qt6 )" - -DEPEND=" - dev-cpp/eigen:3 - media-libs/glm - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5[-gles2-only] - dev-qt/qtopengl:5[-gles2-only] - dev-qt/qtwidgets:5[-gles2-only] - ) - qt6? ( - dev-qt/qtbase:6[gui,opengl,widgets,-gles2-only] - ) -" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/CalcMySky-${PV}" - -pkg_setup() { - MULTIBUILD_VARIANTS=( $(usev qt5) $(usev qt6) ) -} - -src_configure() { - my_src_configure() { - local mycmakeargs=( - -DQT_VERSION="${MULTIBUILD_VARIANT/qt/}" - ) - - cmake_src_configure - } - - multibuild_foreach_variant my_src_configure -} - -src_compile() { - multibuild_foreach_variant cmake_src_compile -} - -src_test() { - multibuild_foreach_variant cmake_build check -} - -src_install() { - multibuild_foreach_variant cmake_src_install -}