Skip to content

Commit

Permalink
add: stardust-comet (#2051)
Browse files Browse the repository at this point in the history
* initial package for stardust-comet

* RPM bug workaround in stardust-comet.spec

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

* Remove conflicts

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

* Update stardust-comet.spec

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

* Update stardust-comet.spec

Add packager

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

* Update stardust-comet.spec

Remove runtime requirements

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

* Update update.rhai

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

* Update update.rhai

Fix indentation

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

* Update stardust-comet.spec

Lock cargo install

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

* Update stardust-comet.spec

add %summary

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

* Update stardust-comet.spec

Unify summaries

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

---------

Signed-off-by: Owen Zimmerman <[email protected]>
(cherry picked from commit 3a7e4fc)
  • Loading branch information
Owen-sz authored and raboneko committed Sep 19, 2024
1 parent 7cfd36d commit b39a3df
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
8 changes: 8 additions & 0 deletions anda/stardust/comet/anda.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
project pkg {
rpm {
spec = "stardust-comet.spec"
}
labels {
nightly = 1
}
}
39 changes: 39 additions & 0 deletions anda/stardust/comet/stardust-comet.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
%global commit afbf6109398794791ffb30317712d742143fd08a
%global commit_date 20240831
%global shortcommit %(c=%{commit}; echo ${c:0:7})
# Exclude input files from mangling
%global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$

Name: stardust-comet
Version: %commit_date.%shortcommit
Release: 1%?dist
Summary: Annotate things in Stardust XR.
URL: https://github.com/StardustXR/comet
Source0: %url/archive/%commit/comet-%commit.tar.gz
License: MIT
BuildRequires: cargo cmake anda-srpm-macros cargo-rpm-macros mold

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

%description
%summary

%prep
%autosetup -n comet-%commit
%cargo_prep_online

%build

%install
%define __cargo_common_opts %{?_smp_mflags} -Z avoid-dev-deps --locked
%cargo_install

%files
%_bindir/comet
%license LICENSE
%doc README.md

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

0 comments on commit b39a3df

Please sign in to comment.