Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add: stardust-black-hole #2052

Merged
merged 19 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions anda/stardust/black-hole/anda.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
project pkg {
rpm {
spec = "stardust-black-hole.spec"
}
labels {
nightly = 1
}
}
39 changes: 39 additions & 0 deletions anda/stardust/black-hole/stardust-black-hole.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
%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: https://github.com/StardustXR/black-hole/archive/%commit/black-hole-%commit.tar.gz
Owen-sz marked this conversation as resolved.
Show resolved Hide resolved
License: MIT
BuildRequires: cargo cmake anda-srpm-macros cargo-rpm-macros mold
Requires: libgcc glibc
Owen-sz marked this conversation as resolved.
Show resolved Hide resolved

Provides: black-hole

%description
Spatial storage for stardust xr
Owen-sz marked this conversation as resolved.
Show resolved Hide resolved

%prep
%autosetup -n black-hole-%commit
%cargo_prep_online

%build
%cargo_build
Owen-sz marked this conversation as resolved.
Show resolved Hide resolved

%install
%cargo_install

%files
%_bindir/black-hole
%license LICENSE
%doc README.md

%changelog
* Sat Sep 8 2024 Owen-sz <[email protected]>
- Package StardustXR black-hole
7 changes: 7 additions & 0 deletions anda/stardust/black-hole/update.rhai
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
if filters.contains("nightly") {
Owen-sz marked this conversation as resolved.
Show resolved Hide resolved
rpm.global("commit", gh_commit("StardustXR/black-hole"));
if rpm.changed() {
rpm.release();
rpm.global("commit_date", date());
}
}
Loading