Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add: stardust-flatland #2049

Merged
merged 15 commits into from
Sep 19, 2024
Merged
8 changes: 8 additions & 0 deletions anda/stardust/flatland/anda.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
project pkg {
rpm {
spec = "stardust-flatland.spec"
}
labels {
nightly = 1
}
}
39 changes: 39 additions & 0 deletions anda/stardust/flatland/stardust-flatland.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
%global commit b83f2eced868fe71248ba7681df978698eb978f0
%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-flatland
Version: %commit_date.%shortcommit
Release: 1%?dist
Summary: Flatland for StardustXR.
URL: https://github.com/StardustXR/flatland
Source0: %url/archive/%commit/flatland-%commit.tar.gz
License: MIT
BuildRequires: cargo cmake anda-srpm-macros cargo-rpm-macros mold

Provides: flatland
Owen-sz marked this conversation as resolved.
Show resolved Hide resolved
Packager: Owen Zimmerman <[email protected]>

%description
%summary

%prep
%autosetup -n flatland-%commit
%cargo_prep_online

%build

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

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

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