add: stardust-atmosphere (#2061) (#2085)

* initial package for stardust-server

* add missing build deps

* move to stardust folder

* inisital package for stardust-black-hole

* RPM bug workaround stardust-black-hole.spec

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

* Remove conflicts

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

* Update anda/stardust/black-hole/update.rhai

Co-authored-by: madomado <madonuko@outlook.com>
Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* Update anda/stardust/black-hole/stardust-black-hole.spec

Co-authored-by: madomado <madonuko@outlook.com>
Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* Update anda/stardust/black-hole/stardust-black-hole.spec

Co-authored-by: madomado <madonuko@outlook.com>
Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* Update anda/stardust/black-hole/stardust-black-hole.spec

Co-authored-by: madomado <madonuko@outlook.com>
Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* Update stardust-black-hole.spec

Add packager

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

* Update anda.hcl

Fix name

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

* Update stardust-black-hole.spec

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

* Update update.rhai

Fix name

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

* Update stardust-black-hole.spec

fix deps

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

* Update stardust-black-hole.spec

Fix files

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 anda/stardust/black-hole/update.rhai

Co-authored-by: madomado <madonuko@outlook.com>
Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>

* fix directories issue

* actually fix directories error

* Initial package for stardust-atmosphere

* Update stardust-atmosphere.spec

Lock cargo install

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

* Update stardust-atmosphere.spec

Fix commit_date

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: june-fish <git@june.fish>
Co-authored-by: madomado <madonuko@outlook.com>
(cherry picked from commit 126843331f)

Co-authored-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com>
This commit is contained in:
Raboneko
2024-09-19 07:42:45 -07:00
committed by GitHub
parent adb210906f
commit 6bc41fa658
3 changed files with 52 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
project pkg {
rpm {
spec = "stardust-atmosphere.spec"
}
labels {
nightly = 1
}
}
@@ -0,0 +1,39 @@
%global commit 0c8bfb91e8ca32a4895f858067334ed265517309
%global commit_date 20240822
%global shortcommit %(c=%{commit}; echo ${c:0:7})
# Exclude input files from mangling
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$
Name: stardust-atmosphere
Version: %commit_date.%shortcommit
Release: 1%?dist
Summary: Environment, homespace, and setup client for Stardust XR.
URL: https://github.com/StardustXR/atmosphere
Source0: %url/archive/%commit/atmosphere-%commit.tar.gz
License: MIT
BuildRequires: cargo cmake anda-srpm-macros cargo-rpm-macros mold libudev-devel g++ libinput-devel libxkbcommon-x11-devel
Provides: atmosphere
Packager: Owen Zimmerman <owen@fyralabs.com>
%description
%summary
%prep
%autosetup -n atmosphere-%commit
%cargo_prep_online
%build
%install
%define __cargo_common_opts %{?_smp_mflags} -Z avoid-dev-deps --locked
%cargo_install
%files
%_bindir/atmosphere
%license LICENSE
%doc README.md
%changelog
* Tue Sep 10 2024 Owen-sz <owen@fyralabs.com>
- Package StardustXR atmosphere
+5
View File
@@ -0,0 +1,5 @@
rpm.global("commit", gh_commit("StardustXR/atmosphere"));
if rpm.changed() {
rpm.release();
rpm.global("commit_date", date());
}