add: stardust-black-hole (#2052) (#2093)

* 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 51f466b3c3)

Co-authored-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>
This commit is contained in:
Raboneko
2024-09-19 07:52:55 -07:00
committed by GitHub
parent e997cf3cdd
commit 356c36f4b9
3 changed files with 53 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
project pkg {
rpm {
spec = "stardust-black-hole.spec"
}
labels {
nightly = 1
}
}
@@ -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 <owen@fyralabs.com>
%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 <owen@fyralabs.com>
- Package StardustXR black-hole
+5
View File
@@ -0,0 +1,5 @@
rpm.global("commit", gh_commit("StardustXR/black-hole"));
if rpm.changed() {
rpm.release();
rpm.global("commit_date", date());
}