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

fix: muon #2294

Merged
merged 12 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion anda/tools/buildsys/muon/muon.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: muon
Version: 0.4.0
Version: 0.3.1
Release: 1%?dist
Summary: A meson-compatible build system

Expand All @@ -15,6 +15,7 @@ BuildRequires: libcurl-devel
BuildRequires: libarchive-devel
BuildRequires: libpkgconf-devel
BuildRequires: scdoc
BuildRequires: git-core

%description
An implementation of the meson build system in c99 with minimal dependencies.
Expand Down
5 changes: 4 additions & 1 deletion anda/tools/buildsys/muon/update.rhai
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
rpm.version(get("https://muon.build/releases/").json_arr().pop().name);
let versions = get("https://muon.build/releases/").json().keys();
versions.sort();
versions.pop();
rpm.version(versions.pop());
Loading