From 0ffedc9bdfa85869975e926989ebfbc798933350 Mon Sep 17 00:00:00 2001 From: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:28:13 -0500 Subject: [PATCH] add: stardust-black-hole (#2052) * initial package for stardust-black-hole * fix folders * fix .spec file * change musl to replace glibc * add back glibc * RPM bug workaround * RPM bug workaround comment * Remove glibm as a dep Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update stardust-black-hole.spec Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update stardust-black-hole.spec Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update stardust-black-hole.spec Add packager Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update stardust-black-hole.spec Remove runtime requirements Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update update.rhai Remove if statement from Rhai Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update update.rhai Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update update.rhai fix indentation Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update stardust-black-hole.spec Lock cargo install Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update stardust-black-hole.spec Add %summary Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update stardust-black-hole.spec Unify summaries Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update stardust-black-hole.spec Add environment variable before cargo install Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> --------- Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> (cherry picked from commit 51f466b3c3c7d1ef35954c97316aebd76b94c9e1) --- anda/stardust/black-hole/anda.hcl | 8 ++++ .../black-hole/stardust-black-hole.spec | 40 +++++++++++++++++++ anda/stardust/black-hole/update.rhai | 5 +++ 3 files changed, 53 insertions(+) create mode 100644 anda/stardust/black-hole/anda.hcl create mode 100644 anda/stardust/black-hole/stardust-black-hole.spec create mode 100644 anda/stardust/black-hole/update.rhai 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()); +}