* [gentoo-commits] repo/proj/guru:dev commit in: app-misc/astroterm/
@ 2025-06-08 14:07 Timur Kuprava
0 siblings, 0 replies; 2+ messages in thread
From: Timur Kuprava @ 2025-06-08 14:07 UTC (permalink / raw
To: gentoo-commits
commit: 68ff16b30b5592ed9e58956decf933637945bfb1
Author: Timur Kuprava <kupravagoodman <AT> proton <DOT> me>
AuthorDate: Sun Jun 8 14:06:38 2025 +0000
Commit: Timur Kuprava <kupravagoodman <AT> proton <DOT> me>
CommitDate: Sun Jun 8 14:07:04 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=68ff16b3
app-misc/astroterm: new package
Signed-off-by: Timur Kuprava <kupravagoodman <AT> proton.me>
app-misc/astroterm/Manifest | 2 ++
app-misc/astroterm/astroterm-1.0.7.ebuild | 39 +++++++++++++++++++++++++++++++
app-misc/astroterm/metadata.xml | 12 ++++++++++
3 files changed, 53 insertions(+)
diff --git a/app-misc/astroterm/Manifest b/app-misc/astroterm/Manifest
new file mode 100644
index 0000000000..b77433abd4
--- /dev/null
+++ b/app-misc/astroterm/Manifest
@@ -0,0 +1,2 @@
+DIST astroterm-1.0.7.tar.gz 20463291 BLAKE2B 378dad2e26f77c92c5cdd0e9fced74f4e1c31ee5fd379cb6d92abf0b65b756415a1c7131413646163fa8d485ddcfd713ba13ac749ccd758d5c98638a247d05d3 SHA512 5cf90902db2ce1920f463e5fa7780d2b117bb20977d879615cf31947e623678dc90723426b61a99532d0b9c8b2ad8cbba2e94457287e6b8a5fba8bc6cd151eba
+DIST bsc5 291548 BLAKE2B 2cfbfed91c2bc09c4685da3d48e26ba4356298550bba7cabab088eacf49c80ef2b2ee0a9ead5ce89873ac4b3978d13c9dde345e783682c3b896a54324cf99c11 SHA512 b96630ef38fa43bedff0462181b43276dca6c12d53ff91eb073d4985ec0fd191a6c84f8261cf6d4259f28ec80566765f53009fdca5508625ab8cb825c1e48e6a
diff --git a/app-misc/astroterm/astroterm-1.0.7.ebuild b/app-misc/astroterm/astroterm-1.0.7.ebuild
new file mode 100644
index 0000000000..e547d6f50b
--- /dev/null
+++ b/app-misc/astroterm/astroterm-1.0.7.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="A planetarium for your terminal!"
+HOMEPAGE="https://github.com/da-luce/astroterm"
+SRC_URI="
+ https://github.com/da-luce/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
+ https://web.archive.org/web/20231007085824if_/http://tdc-www.harvard.edu/catalogs/BSC5 -> bsc5
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+ dev-libs/argtable
+"
+
+BDEPEND="
+ dev-util/xxd
+"
+
+src_prepare() {
+ default
+ cp "${DISTDIR}/bsc5" "${S}/data" || die
+ cp -r "${S}/scripts" "${WORKDIR}/scripts" || die
+}
+
+src_compile() {
+ meson_src_compile
+}
+
+src_install() {
+ meson_src_install
+}
diff --git a/app-misc/astroterm/metadata.xml b/app-misc/astroterm/metadata.xml
new file mode 100644
index 0000000000..9744009f51
--- /dev/null
+++ b/app-misc/astroterm/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>kupravagoodman@proton.me</email>
+ <name>Timur Kuprava</name>
+ </maintainer>
+ <upstream>
+ <bugs-to>https://github.com/da-luce/astroterm/issues</bugs-to>
+ <remote-id type="github">da-luce/astroterm</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: app-misc/astroterm/
@ 2025-07-13 22:01 Pieter
0 siblings, 0 replies; 2+ messages in thread
From: Pieter @ 2025-07-13 22:01 UTC (permalink / raw
To: gentoo-commits
commit: afc5f3becc8abdcf34665e508a19d76502c39c27
Author: Pieter <pieter.kn0101 <AT> gmail <DOT> com>
AuthorDate: Sun Jul 13 21:52:15 2025 +0000
Commit: Pieter <pieter.kn0101 <AT> gmail <DOT> com>
CommitDate: Sun Jul 13 22:01:28 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=afc5f3be
app-misc/astroterm: add app-editors/vim-core as alternative to dev-util/xxd dependency
Signed-off-by: Pieter <pieter.kn0101 <AT> gmail.com>
app-misc/astroterm/astroterm-1.0.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-misc/astroterm/astroterm-1.0.7.ebuild b/app-misc/astroterm/astroterm-1.0.7.ebuild
index e547d6f50b..d84caef8bb 100644
--- a/app-misc/astroterm/astroterm-1.0.7.ebuild
+++ b/app-misc/astroterm/astroterm-1.0.7.ebuild
@@ -21,7 +21,7 @@ DEPEND="
"
BDEPEND="
- dev-util/xxd
+ || ( dev-util/xxd app-editors/vim-core )
"
src_prepare() {
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-07-13 22:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-13 22:01 [gentoo-commits] repo/proj/guru:dev commit in: app-misc/astroterm/ Pieter
-- strict thread matches above, loose matches on Subject: below --
2025-06-08 14:07 Timur Kuprava
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox