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-gravity #2063

Merged
merged 25 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
eaf71f6
initial package for stardust-server
Owen-sz Sep 7, 2024
1be9bd5
add missing build deps
june-fish Sep 7, 2024
b7a6644
move to stardust folder
june-fish Sep 7, 2024
b3b817d
inisital package for stardust-black-hole
Owen-sz Sep 8, 2024
2062a8d
RPM bug workaround stardust-black-hole.spec
Owen-sz Sep 8, 2024
41108c9
Remove conflicts
Owen-sz Sep 8, 2024
228d090
Update anda/stardust/black-hole/update.rhai
Owen-sz Sep 9, 2024
a5d2fb6
Update anda/stardust/black-hole/stardust-black-hole.spec
Owen-sz Sep 9, 2024
b856915
Update anda/stardust/black-hole/stardust-black-hole.spec
Owen-sz Sep 9, 2024
bf015aa
Update anda/stardust/black-hole/stardust-black-hole.spec
Owen-sz Sep 9, 2024
b84c4c8
Update stardust-black-hole.spec
Owen-sz Sep 9, 2024
22bdb72
Update anda.hcl
Owen-sz Sep 10, 2024
2c65027
Update stardust-black-hole.spec
Owen-sz Sep 10, 2024
7632cc6
Update update.rhai
Owen-sz Sep 10, 2024
86caf0b
Update stardust-black-hole.spec
Owen-sz Sep 10, 2024
bc5791d
Update stardust-black-hole.spec
Owen-sz Sep 10, 2024
bc6784b
Update update.rhai
Owen-sz Sep 10, 2024
919fa9c
Update anda/stardust/black-hole/update.rhai
Owen-sz Sep 11, 2024
c4a0bae
fix directories issue
Owen-sz Sep 11, 2024
acbaea5
actually fix directories error
Owen-sz Sep 11, 2024
10e0073
Initial package for stardust-atmosphere
Owen-sz Sep 11, 2024
c590174
WIP
Owen-sz Sep 12, 2024
212a9b3
initial package for stardust-gravity
Owen-sz Sep 12, 2024
6d4a120
Update stardust-gravity.spec
Owen-sz Sep 12, 2024
ec798f5
Update stardust-gravity.spec
Owen-sz Sep 13, 2024
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/gravity/anda.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
project pkg {
rpm {
spec = "stardust-gravity.spec"
}
labels {
nightly = 1
}
}
40 changes: 40 additions & 0 deletions anda/stardust/gravity/stardust-gravity.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
%global commit 96787ed3139717ea6061f6e259e9fed3e483274a
%global commit_date 20240821
%global shortcommit %(c=%{commit}; echo ${c:0:7})
# Exclude input files from mangling
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$

Name: stardust-gravity
Version: %commit_date.%shortcommit
Release: 1%?dist
Summary: Utility to launch apps and Stardust XR clients spatially.
URL: https://github.com/StardustXR/gravity
Source0: %url/archive/%commit/gravity-%commit.tar.gz
License: MIT
BuildRequires: cargo cmake anda-srpm-macros cargo-rpm-macros mold

Provides: gravity
Packager: Owen Zimmerman <[email protected]>

%description
%summary

%prep
%autosetup -n gravity-%commit
%cargo_prep_online

%build

%install
%define __cargo_common_opts %{?_smp_mflags} -Z avoid-dev-deps --locked
%cargo_install


%files
%_bindir/gravity
%license LICENSE
%doc README.md

%changelog
* Wed Sep 11 2024 Owen-sz <[email protected]>
- Package StardustXR gravity
5 changes: 5 additions & 0 deletions anda/stardust/gravity/update.rhai
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
rpm.global("commit", gh_commit("StardustXR/gravity"));
if rpm.changed() {
rpm.release();
rpm.global("commit_date", date());
}
Loading