diff --git a/anda/stardust/black-hole/anda.hcl b/anda/stardust/black-hole/anda.hcl new file mode 100644 index 0000000000..f14c2dc669 --- /dev/null +++ b/anda/stardust/black-hole/anda.hcl @@ -0,0 +1,8 @@ +project pkg { + rpm { + spec = "stardust-black-hole.spec" + } + labels { + nightly = 1 + } +} \ No newline at end of file diff --git a/anda/stardust/black-hole/stardust-black-hole.spec b/anda/stardust/black-hole/stardust-black-hole.spec new file mode 100644 index 0000000000..ea1829c32e --- /dev/null +++ b/anda/stardust/black-hole/stardust-black-hole.spec @@ -0,0 +1,40 @@ +%global commit 0b847b6ddc383bfcc1e133a2238a37ce8202fe95 +%global commit_date 20240824 +%global shortcommit %(c=%{commit}; echo ${c:0:7}) +# Exclude input files from mangling +%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$ + +Name: stardust-black-hole +Version: %commit_date.%shortcommit +Release: 1%?dist +Summary: Spatial storage for Stardust XR. +URL: https://github.com/StardustXR/black-hole +Source0: %url/archive/%commit/black-hole-%commit.tar.gz +License: MIT +BuildRequires: cargo cmake anda-srpm-macros cargo-rpm-macros mold + +Provides: black-hole +Packager: Owen Zimmerman + +%description +%summary + +%prep +%autosetup -n black-hole-%commit +%cargo_prep_online + +%build + +%install +%define __cargo_common_opts %{?_smp_mflags} -Z avoid-dev-deps --locked +STARDUST_RES_PREFIXES=%_datadir +%cargo_install + +%files +%_bindir/black-hole +%license LICENSE +%doc README.md + +%changelog +* Sat Sep 8 2024 Owen-sz +- Package StardustXR black-hole diff --git a/anda/stardust/black-hole/update.rhai b/anda/stardust/black-hole/update.rhai new file mode 100644 index 0000000000..8cacd481ac --- /dev/null +++ b/anda/stardust/black-hole/update.rhai @@ -0,0 +1,5 @@ +rpm.global("commit", gh_commit("StardustXR/black-hole")); +if rpm.changed() { + rpm.release(); + rpm.global("commit_date", date()); +}