add: stardust-non-spatial-input (#2053) (#2083)

* WIP

* Update stardust-non-spatial-input.spec

Add packager

Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* fix %url

* Update stardust-non-spatial-input.spec

Fix RPM bug

Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* Update stardust-non-spatial-input.spec

Remove runtime requirements

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>

* Update stardust-non-spatial-input.spec

Fix build and install

Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* 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-non-spatial-input.spec

Fix install directories

Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* Update stardust-non-spatial-input.spec

fix install

Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* Update stardust-non-spatial-input.spec

Actually fix install

Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* Update stardust-non-spatial-input.spec

test fix (delete wait in %install)

Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* Update stardust-non-spatial-input.spec

Fix files?

Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* fix: cargo install in parallel

* let's try --locked

Signed-off-by: madomado <madonuko@outlook.com>

* %{?_smp_mflags} -Z avoid-dev-deps

Signed-off-by: madomado <madonuko@outlook.com>

* Update stardust-non-spatial-input.spec

Remove display

* Update update.rhai

fix typo

Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* Update stardust-non-spatial-input.spec

add %summary

Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* Update stardust-non-spatial-input.spec

Unify Summaries

Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

---------

Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>
Signed-off-by: madomado <madonuko@outlook.com>
Co-authored-by: madonuko <madonuko@outlook.com>
(cherry picked from commit 5842080f3c)

Co-authored-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>
This commit is contained in:
Raboneko
2024-09-19 07:52:30 -07:00
committed by GitHub
parent 0d9706e6e1
commit b5a25c8e32
3 changed files with 60 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
project pkg {
rpm {
spec = "stardust-non-spatial-input.spec"
}
labels {
nightly = 1
}
}
@@ -0,0 +1,47 @@
%global commit 5ac7f04f6876097aa8c3cf9af033d609a8a49944
%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-non-spatial-input
Version: %commit_date.%shortcommit
Release: 1%?dist
Summary: Tools you can easily snap together to get non-spatial input into Stardust XR.
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
Provides: non-spatial-input
Packager: Owen Zimmerman <owen@fyralabs.com>
%description
%summary
%prep
%autosetup -n non-spatial-input-%commit
%cargo_prep_online
%build
%install
%define __cargo_common_opts %{?_smp_mflags} -Z avoid-dev-deps --locked
(cd azimuth && %cargo_install) &
(cd eclipse && %cargo_install) &
(cd manifold && %cargo_install) &
(cd simular && %cargo_install) &
wait
%files
%_bindir/azimuth
%_bindir/eclipse
%_bindir/manifold
%_bindir/simular
%license LICENSE
%doc README.md
%changelog
* Mon Sep 9 2024 Owen-sz <owen@fyralabs.com>
- Package StardustXR non-spatial-input
@@ -0,0 +1,5 @@
rpm.global("commit", gh_commit("StardustXR/non-spatial-input"));
if rpm.changed() {
rpm.release();
rpm.global("commit_date", date());
}