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 11A731580E0 for ; Thu, 30 Jan 2025 16:23:43 +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 EA1B634308F for ; Thu, 30 Jan 2025 16:23:42 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E80FF1103B6; Thu, 30 Jan 2025 16:23:41 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id DDABE1103B6 for ; Thu, 30 Jan 2025 16:23:41 +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 9B17833E3A9 for ; Thu, 30 Jan 2025 16:23:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00B5BAF5 for ; Thu, 30 Jan 2025 16:23:39 +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: <1738254207.d0831da263f31933c8a92c40cf86a3c69ef1d9b6.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-r1.ebuild X-VCS-Directories: sci-astronomy/calcmysky/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d0831da263f31933c8a92c40cf86a3c69ef1d9b6 X-VCS-Branch: master Date: Thu, 30 Jan 2025 16:23:39 +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: 3777f072-1d62-4d1c-9304-b6a673e0caa8 X-Archives-Hash: 9631cd66d75a1c7a0b866fe67b884b59 commit: d0831da263f31933c8a92c40cf86a3c69ef1d9b6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Jan 28 19:36:45 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jan 30 16:23:27 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0831da2 sci-astronomy/calcmysky: Drop IUSE qt5/qt6, making Qt6 unconditional Signed-off-by: Andreas Sturmlechner gentoo.org> sci-astronomy/calcmysky/calcmysky-0.3.3-r1.ebuild | 33 +++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/sci-astronomy/calcmysky/calcmysky-0.3.3-r1.ebuild b/sci-astronomy/calcmysky/calcmysky-0.3.3-r1.ebuild new file mode 100644 index 000000000000..9ace530fff88 --- /dev/null +++ b/sci-astronomy/calcmysky/calcmysky-0.3.3-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 2022-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit 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 +" +S="${WORKDIR}/CalcMySky-${PV}" + +LICENSE="GPL-3" +# subslot is soversion +SLOT="0/15" +KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv ~x86" + +DEPEND=" + dev-cpp/eigen:3 + dev-qt/qtbase:6[gui,opengl,widgets,-gles2-only] + media-libs/glm +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DQT_VERSION=6 + ) + + cmake_src_configure +}