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 protostar #2056

Merged
merged 17 commits into from
Sep 16, 2024
Merged
8 changes: 8 additions & 0 deletions anda/stardust/non-spatial-input/anda.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
project pkg {
rpm {
spec = "stardust-non-spatial-input.spec"
}
labels {
nightly = 1
}
}
40 changes: 40 additions & 0 deletions anda/stardust/non-spatial-input/stardust-non-spatial-input.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
%global commit 5ac7f04f6876097aa8c3cf9af033d609a8a49944
%global commit_date 20240824
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global debug_package %{nil}
%define __os_install_post %{nil}

Name: stardust-non-spatial-input
Version: %commit_date.%shortcommit
Release: 1%?dist
Summary: Tools you can easily snap together to get non-spatial input into stardust.
URL: https://github.com/StardustXR/non-spatial-input
Source0: %url/archive/%commit/non-spatial-input-%commit.tar.gz
License: MIT
BuildRequires: cargo cmake anda-srpm-macros cargo-rpm-macros mold libudev-devel g++ libinput-devel libxkbcommon-x11-devel
Requires: libgcc glibc

Provides: non-spatial-input
Packager: Owen Zimmerman <[email protected]>

%description
Tools you can easily snap together to get non-spatial input into stardust.

%prep
%autosetup -n non-spatial-input-%commit
%cargo_prep_online

%build
%cargo_build

%install
%cargo_install

%files
%_bindir/non-spatial-input
%license LICENSE
%doc README.md

%changelog
* Mon Sep 9 2024 Owen-sz <[email protected]>
- Package StardustXR non-spatial-input
7 changes: 7 additions & 0 deletions anda/stardust/non-spatial-input/update.rhai
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
if filters.contains("nightly") {
rpm.global("commit", gh_commit("StardustXR/non-spatial-input"));
if rpm.changed() {
rpm.release();
rpm.global("commit_date", date());
}
}
8 changes: 8 additions & 0 deletions anda/stardust/protostar/anda.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
project pkg {
rpm {
spec = "stardust-protostar.spec"
}
labels {
nightly = 1
}
}
39 changes: 39 additions & 0 deletions anda/stardust/protostar/stardust-protostar.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
%global commit 39499a061af74c3a2d5e1e46e4ad21aca5727219
%global commit_date 20240719
%global shortcommit %(c=%{commit}; echo ${c:0:7})
# Exclude input files from mangling
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$

Name: stardust-protostar
Version: %commit_date.%shortcommit
Release: 1%?dist
Summary: Tools you can easily snap together to get non-spatial input into stardust.
URL: https://github.com/StardustXR/protostar
Source0: %url/archive/%commit/protostar-%commit.tar.gz
License: MIT
BuildRequires: cargo cmake anda-srpm-macros cargo-rpm-macros mold libudev-devel g++ libinput-devel libxkbcommon-x11-devel
Requires: libgcc glibc

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

%description
Tools you can easily snap together to get non-spatial input into stardust.

%prep
%autosetup -n protostar-%commit
%cargo_prep_online

%build

%install
%cargo_install

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

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