Skip to content

Commit

Permalink
add: stardust-atmosphere (#2061)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>

* Remove conflicts

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

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

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

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

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

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

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

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

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

* Update stardust-black-hole.spec

Add packager

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

* Update anda.hcl

Fix name

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

* Update stardust-black-hole.spec

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

* Update update.rhai

Fix name

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

* Update stardust-black-hole.spec

fix deps

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

* Update stardust-black-hole.spec

Fix files

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

* Update update.rhai

Remove if statement from Rhai

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

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

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

* fix directories issue

* actually fix directories error

* Initial package for stardust-atmosphere

* Update stardust-atmosphere.spec

Lock cargo install

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

* Update stardust-atmosphere.spec

Fix commit_date

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

---------

Signed-off-by: Owen Zimmerman <[email protected]>
Co-authored-by: june-fish <[email protected]>
Co-authored-by: madomado <[email protected]>
(cherry picked from commit 1268433)
  • Loading branch information
Owen-sz authored and raboneko committed Sep 19, 2024
1 parent 5d515de commit 360827e
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
8 changes: 8 additions & 0 deletions anda/stardust/atmosphere/anda.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
project pkg {
rpm {
spec = "stardust-atmosphere.spec"
}
labels {
nightly = 1
}
}
39 changes: 39 additions & 0 deletions anda/stardust/atmosphere/stardust-atmosphere.spec
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>

%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 <[email protected]>
- Package StardustXR atmosphere
5 changes: 5 additions & 0 deletions anda/stardust/atmosphere/update.rhai
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
rpm.global("commit", gh_commit("StardustXR/atmosphere"));
if rpm.changed() {
rpm.release();
rpm.global("commit_date", date());
}

0 comments on commit 360827e

Please sign in to comment.