commit: 18daefec7bdf203cc44216752916f85351606bfe Author: Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org> AuthorDate: Sun Dec 28 09:55:42 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Dec 30 13:43:13 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18daefec
sci-astronomy/calcmysky: add 0.4.0 Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org> Part-of: https://github.com/gentoo/gentoo/pull/45184 Signed-off-by: Sam James <sam <AT> gentoo.org> sci-astronomy/calcmysky/Manifest | 1 + sci-astronomy/calcmysky/calcmysky-0.4.0.ebuild | 33 ++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/sci-astronomy/calcmysky/Manifest b/sci-astronomy/calcmysky/Manifest index a5766921543e..3d4bfdcab821 100644 --- a/sci-astronomy/calcmysky/Manifest +++ b/sci-astronomy/calcmysky/Manifest @@ -1 +1,2 @@ DIST calcmysky-0.3.5.tar.gz 2167194 BLAKE2B 0ef5365531eb131e8d796d01f301fc5fe0fe4a6377264a14af6a3714bd253369706c08caeb0f5007db58e4d57d3d4790690de5d5edc7c768cd59926a39a563d3 SHA512 7ffd42436063c5463ed5207f9fc9191dda5590fb547f2bead9f3a07096714fe5c4257d3091d481d40fa32fa65164a2503aec17e73b8145ac235f506b73c1c100 +DIST calcmysky-0.4.0.tar.gz 2165658 BLAKE2B 3a672e1249a8d18549b087852eedba46b120e0ac105be4ee69a10e82a738ebcc07e3db84a627686f75ddecc300ef350354c00980d53c558309d1472cc3270671 SHA512 27b98018d512ca15ad19c989813e3dc6f86fd30b62a7eeac7ab1c8b8589155af39987cc04338de208162245a1dd98008a9d717b72c0a9651a0bdb2d3174ce90a diff --git a/sci-astronomy/calcmysky/calcmysky-0.4.0.ebuild b/sci-astronomy/calcmysky/calcmysky-0.4.0.ebuild new file mode 100644 index 000000000000..6c6284e52181 --- /dev/null +++ b/sci-astronomy/calcmysky/calcmysky-0.4.0.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-2+" +# subslot is soversion +SLOT="0/15" +KEYWORDS="~amd64 ~ppc ~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 +}
