From 7cfd36d49073da8938ec7efb358df57cd75c4db8 Mon Sep 17 00:00:00 2001 From: Raboneko <119771935+raboneko@users.noreply.github.com> Date: Thu, 19 Sep 2024 07:25:22 -0700 Subject: [PATCH] add: stardust-protostar (#2056) (#2077) * WIP * Update stardust-non-spatial-input.spec Add packager Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * fix %url * WIP * Update stardust-protostar.spec Remove runtime requirements Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update anda/stardust/protostar/stardust-protostar.spec Co-authored-by: madomado 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> * WIP, fix duplicate * 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-protostar.spec fix install Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update stardust-protostar.spec Fix %install and %files Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update stardust-protostar.spec Lock cargo install Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update stardust-protostar.spec Fix summary and description Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update stardust-protostar.spec Unify summaries Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * Update stardust-protostar.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> Co-authored-by: madomado (cherry picked from commit 52a62ac3b0a1368510fd5916cb7a9b0df6399e40) Co-authored-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> --- anda/stardust/protostar/anda.hcl | 8 ++++ .../protostar/stardust-protostar.spec | 48 +++++++++++++++++++ anda/stardust/protostar/update.rhai | 5 ++ 3 files changed, 61 insertions(+) create mode 100644 anda/stardust/protostar/anda.hcl create mode 100644 anda/stardust/protostar/stardust-protostar.spec create mode 100644 anda/stardust/protostar/update.rhai diff --git a/anda/stardust/protostar/anda.hcl b/anda/stardust/protostar/anda.hcl new file mode 100644 index 0000000000..ad23b47645 --- /dev/null +++ b/anda/stardust/protostar/anda.hcl @@ -0,0 +1,8 @@ +project pkg { + rpm { + spec = "stardust-protostar.spec" + } + labels { + nightly = 1 + } +} diff --git a/anda/stardust/protostar/stardust-protostar.spec b/anda/stardust/protostar/stardust-protostar.spec new file mode 100644 index 0000000000..a35836818c --- /dev/null +++ b/anda/stardust/protostar/stardust-protostar.spec @@ -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 + +%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 +- Package StardustXR protostar diff --git a/anda/stardust/protostar/update.rhai b/anda/stardust/protostar/update.rhai new file mode 100644 index 0000000000..6c721ad5fa --- /dev/null +++ b/anda/stardust/protostar/update.rhai @@ -0,0 +1,5 @@ +rpm.global("commit", gh_commit("StardustXR/protostart")); +if rpm.changed() { + rpm.release(); + rpm.global("commit_date", date()); +}