Skip to content

Commit

Permalink
add: stardust-protostar (#2056) (#2077)
Browse files Browse the repository at this point in the history
* WIP

* Update stardust-non-spatial-input.spec

Add packager

Signed-off-by: Owen Zimmerman <[email protected]>

* fix %url

* WIP

* Update stardust-protostar.spec

Remove runtime requirements

Signed-off-by: Owen Zimmerman <[email protected]>

* Update anda/stardust/protostar/stardust-protostar.spec

Co-authored-by: madomado <[email protected]>
Signed-off-by: Owen Zimmerman <[email protected]>

* Update update.rhai

Remove if statement from Rhai

Signed-off-by: Owen Zimmerman <[email protected]>

* WIP, fix duplicate

* Update update.rhai

Signed-off-by: Owen Zimmerman <[email protected]>

* Update update.rhai

Fix indentation

Signed-off-by: Owen Zimmerman <[email protected]>

* Update stardust-protostar.spec

fix install

Signed-off-by: Owen Zimmerman <[email protected]>

* Update stardust-protostar.spec

Fix %install and %files

Signed-off-by: Owen Zimmerman <[email protected]>

* Update stardust-protostar.spec

Lock cargo install

Signed-off-by: Owen Zimmerman <[email protected]>

* Update stardust-protostar.spec

Fix summary and description

Signed-off-by: Owen Zimmerman <[email protected]>

* Update stardust-protostar.spec

Unify summaries

Signed-off-by: Owen Zimmerman <[email protected]>

* Update stardust-protostar.spec

Add environment variable before cargo install

Signed-off-by: Owen Zimmerman <[email protected]>

---------

Signed-off-by: Owen Zimmerman <[email protected]>
Co-authored-by: madomado <[email protected]>
(cherry picked from commit 52a62ac)

Co-authored-by: Owen Zimmerman <[email protected]>
  • Loading branch information
raboneko and Owen-sz authored Sep 19, 2024
1 parent 5170d81 commit 7cfd36d
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 0 deletions.
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
}
}
48 changes: 48 additions & 0 deletions anda/stardust/protostar/stardust-protostar.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
%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: Prototype application launcher for Stardust XR.
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

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

%description
Prototype application launcher for StardustXR, providing an easy to use crate to write applications launchers.

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

%build

%install
%define __cargo_common_opts %{?_smp_mflags} -Z avoid-dev-deps --locked
STARDUST_RES_PREFIXES=%_datadir
(cd app_grid && %cargo_install) &
(cd hexagon_launcher && %cargo_install) &
(cd single && %cargo_install) &
(cd sirius && %cargo_install) &

wait

%files
%_bindir/app_grid
%_bindir/hexagon_launcher
%_bindir/single
%_bindir/sirius
%license LICENSE
%doc README.md

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

0 comments on commit 7cfd36d

Please sign in to comment.