sci-astronomy/calcmysky: add 0.3.5

Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
Part-of: https://github.com/gentoo/gentoo/pull/42733
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Alexey Sokolov
2025-06-25 01:08:16 +01:00
committed by Sam James
parent 63e5a7955d
commit 06dfaa9a19
2 changed files with 34 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST calcmysky-0.3.4.tar.gz 2167252 BLAKE2B 4b16eb5afc770095bb9a254d6a1de4c9320e89436363296651345195e4240867a62f9d53854aa03c6f8666d4015cc7349d3b8db37d3e0bee0c9306640156dd6b SHA512 0ec6aec3e4d1227ac0afbc8dbd27bab206b3557e27bb3a3921795cff7e2a16d4e101afd01fd86eec608abcd46710e1b63e6324fb2e2efb2a30fd97cccc2dcca6
DIST calcmysky-0.3.5.tar.gz 2167194 BLAKE2B 0ef5365531eb131e8d796d01f301fc5fe0fe4a6377264a14af6a3714bd253369706c08caeb0f5007db58e4d57d3d4790690de5d5edc7c768cd59926a39a563d3 SHA512 7ffd42436063c5463ed5207f9fc9191dda5590fb547f2bead9f3a07096714fe5c4257d3091d481d40fa32fa65164a2503aec17e73b8145ac235f506b73c1c100

View File

@@ -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 ~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
}