diff --git a/anda/stardust/comet/anda.hcl b/anda/stardust/comet/anda.hcl new file mode 100644 index 0000000000..95ba7c5843 --- /dev/null +++ b/anda/stardust/comet/anda.hcl @@ -0,0 +1,8 @@ +project pkg { + rpm { + spec = "stardust-comet.spec" + } + labels { + nightly = 1 + } +} diff --git a/anda/stardust/comet/stardust-comet.spec b/anda/stardust/comet/stardust-comet.spec new file mode 100644 index 0000000000..c8a3902fdf --- /dev/null +++ b/anda/stardust/comet/stardust-comet.spec @@ -0,0 +1,40 @@ +%global commit afbf6109398794791ffb30317712d742143fd08a +%global commit_date 20240831 +%global shortcommit %(c=%{commit}; echo ${c:0:7}) +%global debug_package %{nil} +%define __os_install_post %{nil} + +Name: stardust-comet +Version: %commit_date.%shortcommit +Release: 1%?dist +Summary: Annotate things in Stardust. +URL: https://github.com/StardustXR/comet +Source0: https://github.com/StardustXR/comet/archive/%commit/comet-%commit.tar.gz +License: MIT +BuildRequires: cargo cmake anda-srpm-macros cargo-rpm-macros mold +Requires: libgcc glibc + +Provides: comet +Conflicts: comet + +%description +Annotate things in Stardust + +%prep +%autosetup -n comet-%commit +%cargo_prep_online + +%build +%cargo_build + +%install +%cargo_install + +%files +%_bindir/comet +%license LICENSE +%doc README.md + +%changelog +* Sat Sep 7 2024 Owen-sz +- Package StardustXR comet diff --git a/anda/stardust/comet/update.rhai b/anda/stardust/comet/update.rhai new file mode 100644 index 0000000000..c9bda82d60 --- /dev/null +++ b/anda/stardust/comet/update.rhai @@ -0,0 +1,7 @@ +if filters.contains("nightly") { + rpm.global("commit", gh_commit("StardustXR/comet")); + if rpm.changed() { + rpm.release(); + rpm.global("commit_date", date()); + } +}