summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Sokolov <alexey+gentoo@asokolov.org>2023-11-30 03:17:31 +0000
committerFlorian Schmaus <flow@gentoo.org>2023-12-13 09:01:44 +0100
commit351f0bbbeedcbfdd5fb45b1663b4e1b1d21237c8 (patch)
treedcf82acf9679356e523cae54e02cba977f0d8035 /sci-astronomy
parentsci-astronomy/stellarium: drop 23.1, 23.2-r1 (diff)
downloadgentoo-351f0bbbeedcbfdd5fb45b1663b4e1b1d21237c8.tar.gz
gentoo-351f0bbbeedcbfdd5fb45b1663b4e1b1d21237c8.tar.bz2
gentoo-351f0bbbeedcbfdd5fb45b1663b4e1b1d21237c8.zip
sci-astronomy/calcmysky: drop 0.3.0
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org> Closes: https://github.com/gentoo/gentoo/pull/34056 Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'sci-astronomy')
-rw-r--r--sci-astronomy/calcmysky/Manifest1
-rw-r--r--sci-astronomy/calcmysky/calcmysky-0.3.0.ebuild65
2 files changed, 0 insertions, 66 deletions
diff --git a/sci-astronomy/calcmysky/Manifest b/sci-astronomy/calcmysky/Manifest
index 7dd9b9fbeb6a..8cc4fc0af22d 100644
--- a/sci-astronomy/calcmysky/Manifest
+++ b/sci-astronomy/calcmysky/Manifest
@@ -1,2 +1 @@
-DIST calcmysky-0.3.0.tar.gz 2164140 BLAKE2B 18d904ad0ed2ec81d705005fa3fea4e66d7250ff2c46bd563e14c783768760d6cc55ea3376682298d5290516ea3b9bf170da8546da5eafc2d2603e597220d9d4 SHA512 529e9cd3d1e71e5ba3e910e9af44e5ddf1af105b499948325401faa9e0cf7911d8ef003570f5bb5395ff6954c37ae6fd7242eb1300f78636232d745012d495ef
DIST calcmysky-0.3.1.tar.gz 2166487 BLAKE2B d1e2bf0a5a2118e3679427e705f5265c9d6c8962adb58b4a5a6464252ee10fcba396758ef3a1a8c1e57b2291a076bc034e4231ea21a6fc464eda3c5ffd376bc1 SHA512 3038feffdf3a61d49d39304b72f1c2809ea5e3a835c4b3c1603162802afc3d27af6cdfd63eb3286e9e614850b73e338e1cc2cf6a6e915ea968194c0a7a9a56eb
diff --git a/sci-astronomy/calcmysky/calcmysky-0.3.0.ebuild b/sci-astronomy/calcmysky/calcmysky-0.3.0.ebuild
deleted file mode 100644
index 577176466199..000000000000
--- a/sci-astronomy/calcmysky/calcmysky-0.3.0.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 2022-2023 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
-}