From 107c771cb2998c1ce2db7fed2801ae99139eef27 Mon Sep 17 00:00:00 2001 From: Pornpipat Popum Date: Sat, 20 Jun 2026 10:38:40 +0700 Subject: [PATCH 01/68] add 1Password and 1Password CLI (#13171) Co-authored-by: Cypress Reed --- anda/apps/1password-cli/1password-cli.spec | 49 ++++++++ .../apps/1password-cli/1password-cli.sysusers | 1 + anda/apps/1password-cli/anda.hcl | 6 + anda/apps/1password-cli/update.rhai | 37 ++++++ anda/apps/1password/1password.spec | 105 ++++++++++++++++++ anda/apps/1password/1password.sysusers | 2 + anda/apps/1password/anda.hcl | 7 ++ anda/apps/1password/update.rhai | 36 ++++++ 8 files changed, 243 insertions(+) create mode 100644 anda/apps/1password-cli/1password-cli.spec create mode 100644 anda/apps/1password-cli/1password-cli.sysusers create mode 100644 anda/apps/1password-cli/anda.hcl create mode 100644 anda/apps/1password-cli/update.rhai create mode 100644 anda/apps/1password/1password.spec create mode 100644 anda/apps/1password/1password.sysusers create mode 100644 anda/apps/1password/anda.hcl create mode 100644 anda/apps/1password/update.rhai diff --git a/anda/apps/1password-cli/1password-cli.spec b/anda/apps/1password-cli/1password-cli.spec new file mode 100644 index 0000000000..36a3863492 --- /dev/null +++ b/anda/apps/1password-cli/1password-cli.spec @@ -0,0 +1,49 @@ +%global debug_package %{nil} + +%ifarch x86_64 +%global op_arch amd64 +%elifarch aarch64 +%global op_arch arm64 +%endif + +Name: 1password-cli +Version: 2.34.1 +Release: 1%{?dist} +Summary: 1Password command-line tool + +Packager: Cappy Ishihara + +License: LicenseRef-1Password-Proprietary +URL: https://developer.1password.com/docs/cli/ +Source0: https://cache.agilebits.com/dist/1P/op2/pkg/v%{version}/op_linux_%{op_arch}_v%{version}.zip +Source1: 1password-cli.sysusers +ExclusiveArch: x86_64 aarch64 + +BuildRequires: systemd-rpm-macros +BuildRequires: unzip +Recommends: 1password +Recommends: polkit + +%description +1Password CLI brings 1Password to your terminal. + +%prep +%autosetup -c + +%build + +%install +install -Dm0755 op %{buildroot}%{_bindir}/op +chmod 2755 %{buildroot}%{_bindir}/op +install -Dm0644 %{SOURCE1} %{buildroot}%{_sysusersdir}/%{name}.conf + +%pre +%sysusers_create_package %{name} %{SOURCE1} + +%files +%attr(2755,root,onepassword-cli) %{_bindir}/op +%{_sysusersdir}/%{name}.conf + +%changelog +* Fri Jun 19 2026 Cappy Ishihara +- Initial Package diff --git a/anda/apps/1password-cli/1password-cli.sysusers b/anda/apps/1password-cli/1password-cli.sysusers new file mode 100644 index 0000000000..14e7bc2f29 --- /dev/null +++ b/anda/apps/1password-cli/1password-cli.sysusers @@ -0,0 +1 @@ +g onepassword-cli - diff --git a/anda/apps/1password-cli/anda.hcl b/anda/apps/1password-cli/anda.hcl new file mode 100644 index 0000000000..a903e76e0c --- /dev/null +++ b/anda/apps/1password-cli/anda.hcl @@ -0,0 +1,6 @@ +project pkg { + arches = ["x86_64", "aarch64"] + rpm { + spec = "1password-cli.spec" + } +} diff --git a/anda/apps/1password-cli/update.rhai b/anda/apps/1password-cli/update.rhai new file mode 100644 index 0000000000..98af768ad3 --- /dev/null +++ b/anda/apps/1password-cli/update.rhai @@ -0,0 +1,37 @@ +let html = get("https://app-updates.agilebits.com/product_history/CLI2"); +let versions = []; + +for matches in find_all(`op_linux_amd64_v([\d]+\.[\d]+\.[\d]+)\.zip`, html) { + versions += matches[1]; +} + +versions.dedup(); + +let latest = ""; +let latest_major = 0; +let latest_minor = 0; +let latest_patch = 0; + +for version in versions { + let parts = version.split("."); + let major = parts[0].parse_int(); + let minor = parts[1].parse_int(); + let patch = parts[2].parse_int(); + + if latest == "" || + major > latest_major || + major == latest_major && minor > latest_minor || + major == latest_major && minor == latest_minor && patch > latest_patch { + latest = version; + latest_major = major; + latest_minor = minor; + latest_patch = patch; + } +} + +if latest == "" { + print("E: no 1Password CLI version found"); + terminate(); +} + +rpm.version(latest); diff --git a/anda/apps/1password/1password.spec b/anda/apps/1password/1password.spec new file mode 100644 index 0000000000..a25a2f4f18 --- /dev/null +++ b/anda/apps/1password/1password.spec @@ -0,0 +1,105 @@ +%global debug_package %{nil} +%global policy_owners unix-group:wheel +%global appdir %{_datadir}/1password + +%ifarch x86_64 +%global tararch x64 +%elifarch aarch64 +%global tararch arm64 +%endif + +Name: 1password +Version: 8.12.24 +Release: 1%{?dist} +Summary: Password manager and secure wallet + +Packager: Cappy Ishihara + +License: LicenseRef-1Password-Proprietary +URL: https://1password.com +Source0: https://downloads.1password.com/linux/tar/stable/%{_arch}/%{name}-%{version}.%{tararch}.tar.gz +Source1: https://downloads.1password.com/linux/tar/stable/%{_arch}/%{name}-%{version}.%{tararch}.tar.gz.sig +Source2: 1password.sysusers +ExclusiveArch: x86_64 aarch64 + +BuildRequires: desktop-file-utils +BuildRequires: systemd-rpm-macros +Requires: desktop-file-utils +Requires: gtk3 +Requires: hicolor-icon-theme +Requires: nss +Requires: polkit +Requires: xdg-utils + +%description +%{summary} + +%prep +%autosetup -n %{name}-%{version}.%{tararch} + + +%build + +%install +# Install icons +install -Dm0644 resources/icons/hicolor/32x32/apps/1password.png -t %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/ +install -Dm0644 resources/icons/hicolor/64x64/apps/1password.png -t %{buildroot}%{_datadir}/icons/hicolor/64x64/apps/ +install -Dm0644 resources/icons/hicolor/256x256/apps/1password.png -t %{buildroot}%{_datadir}/icons/hicolor/256x256/apps/ +install -Dm0644 resources/icons/hicolor/512x512/apps/1password.png -t %{buildroot}%{_datadir}/icons/hicolor/512x512/apps/ + +sed 's|${POLICY_OWNERS}|%{policy_owners}|g' \ + com.1password.1Password.policy.tpl > com.1password.1Password.policy +install -Dm0644 com.1password.1Password.policy -t %{buildroot}%{_datadir}/polkit-1/actions/ +install -Dm0644 resources/custom_allowed_browsers -t %{buildroot}%{_sysconfdir}/1password/ +install -Dm0644 resources/custom_allowed_browsers -t %{buildroot}%{_datadir}/doc/1password/examples/ +sed -i 's|^Exec=/opt/1Password/1password|Exec=%{_bindir}/1password|' resources/1password.desktop +desktop-file-install --dir=%{buildroot}%{_datadir}/applications resources/1password.desktop +install -Dm0644 %{SOURCE2} %{buildroot}%{_sysusersdir}/%{name}.conf + +# Install application payload under /usr for immutable-system compatibility. +mkdir -p %{buildroot}%{appdir} +cp -a . %{buildroot}%{appdir}/ +rm -f %{buildroot}%{appdir}/com.1password.1Password.policy \ + %{buildroot}%{appdir}/com.1password.1Password.policy.tpl \ + %{buildroot}%{appdir}/after-install.sh \ + %{buildroot}%{appdir}/after-remove.sh \ + %{buildroot}%{appdir}/install.sh \ + %{buildroot}%{appdir}/install_biometrics_policy.sh + +mkdir -p %{buildroot}%{_bindir} +ln -sr %{buildroot}%{appdir}/%{name} %{buildroot}%{_bindir}/%{name} +chmod 4755 %{buildroot}%{appdir}/chrome-sandbox +chmod 2755 %{buildroot}%{appdir}/1Password-BrowserSupport +if [ -f %{buildroot}%{appdir}/onepassword-mcp ]; then + chmod 2755 %{buildroot}%{appdir}/onepassword-mcp +fi +find %{buildroot}%{appdir} -type f \ + ! -name chrome-sandbox \ + ! -name 1Password-BrowserSupport \ + ! -name onepassword-mcp \ + -printf '/%%P\n' | sed "s|^/|%{appdir}/|" > app.files + +%pre +%sysusers_create_package %{name} %{SOURCE2} + +%files -f app.files +%{_bindir}/%{name} +%dir %{appdir} +%attr(4755,root,root) %{appdir}/chrome-sandbox +%attr(2755,root,onepassword) %{appdir}/1Password-BrowserSupport +%attr(2755,root,onepassword-mcp) %{appdir}/onepassword-mcp +%{_datadir}/icons/hicolor/32x32/apps/1password.png +%{_datadir}/icons/hicolor/64x64/apps/1password.png +%{_datadir}/icons/hicolor/256x256/apps/1password.png +%{_datadir}/icons/hicolor/512x512/apps/1password.png +%{_datadir}/applications/%{name}.desktop +%{_datadir}/polkit-1/actions/com.1password.1Password.policy +%{_sysusersdir}/%{name}.conf +%config(noreplace) %{_sysconfdir}/1password/custom_allowed_browsers +%{_datadir}/doc/1password/ + + + +%changelog +* Fri Jun 19 2026 Cappy Ishihara +- Initial Package diff --git a/anda/apps/1password/1password.sysusers b/anda/apps/1password/1password.sysusers new file mode 100644 index 0000000000..0830214e71 --- /dev/null +++ b/anda/apps/1password/1password.sysusers @@ -0,0 +1,2 @@ +g onepassword - +g onepassword-mcp - diff --git a/anda/apps/1password/anda.hcl b/anda/apps/1password/anda.hcl new file mode 100644 index 0000000000..91569c41cd --- /dev/null +++ b/anda/apps/1password/anda.hcl @@ -0,0 +1,7 @@ +project pkg { + arches = ["x86_64", "aarch64"] + rpm { + spec = "1password.spec" + } + +} diff --git a/anda/apps/1password/update.rhai b/anda/apps/1password/update.rhai new file mode 100644 index 0000000000..3a9e77bb1b --- /dev/null +++ b/anda/apps/1password/update.rhai @@ -0,0 +1,36 @@ +let xml = get("https://releases.1password.com/linux/stable/index.xml"); + +let latest = ""; +let latest_major = 0; +let latest_minor = 0; +let latest_patch = 0; + +for title in find_all(`[^<]*`, xml) { + let matches = find_all(`[\d]+\.[\d]+\.[\d]+`, title[0]); + if matches.len() == 0 { + continue; + } + + let version = matches[0][0]; + let parts = version.split("."); + let major = parts[0].parse_int(); + let minor = parts[1].parse_int(); + let patch = parts[2].parse_int(); + + if latest == "" || + major > latest_major || + major == latest_major && minor > latest_minor || + major == latest_major && minor == latest_minor && patch > latest_patch { + latest = version; + latest_major = major; + latest_minor = minor; + latest_patch = patch; + } +} + +if latest == "" { + print("E: no 1Password version found"); + terminate(); +} + +rpm.version(latest); From 1aa6a1c1c18707a4590dc8390598b5b2d3cffcc4 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sat, 20 Jun 2026 04:03:09 +0000 Subject: [PATCH 02/68] bump(nightly): flameshot-nightly noctalia-git zed-nightly xray-nightly types-colorama v2ray-domain-list-community v2ray-geoip cloud-hypervisor-nightly --- anda/apps/flameshot/flameshot-nightly.spec | 6 +++--- anda/desktops/noctalia-git/noctalia-git.spec | 2 +- anda/devs/zed/nightly/zed-nightly.spec | 4 ++-- anda/langs/go/xray/nightly/xray-nightly.spec | 4 ++-- anda/langs/python/types-colorama/types-colorama.spec | 4 ++-- .../v2ray-domain-list-community.spec | 6 +++--- anda/misc/v2ray-geoip/v2ray-geoip.spec | 6 +++--- .../cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec | 4 ++-- 8 files changed, 18 insertions(+), 18 deletions(-) diff --git a/anda/apps/flameshot/flameshot-nightly.spec b/anda/apps/flameshot/flameshot-nightly.spec index 8e0ad4f483..5502bba360 100644 --- a/anda/apps/flameshot/flameshot-nightly.spec +++ b/anda/apps/flameshot/flameshot-nightly.spec @@ -1,9 +1,9 @@ #? https://github.com/flameshot-org/flameshot/blob/master/packaging/rpm/fedora/flameshot.spec -%global ver 13.3.0 -%global commit 18accdcc9a739233438b1591965067e3e9cdec72 +%global ver 14.0.0 +%global commit 550d4fae96dbea937d92a236605538f489e7b413 %global shortcommit %{sub %{commit} 1 7} -%global commit_date 20260618 +%global commit_date 20260620 %global devel_name QtColorWidgets %global _distro_extra_cflags -fuse-ld=mold %global _distro_extra_cxxflags -fuse-ld=mold diff --git a/anda/desktops/noctalia-git/noctalia-git.spec b/anda/desktops/noctalia-git/noctalia-git.spec index 32d4d85c3c..f12857c94d 100644 --- a/anda/desktops/noctalia-git/noctalia-git.spec +++ b/anda/desktops/noctalia-git/noctalia-git.spec @@ -2,7 +2,7 @@ %global ver 5.0.0 -%global commit 7bc707b611fcb88401f64a52f483f389e2771f43 +%global commit a7af75821ed8aa9e199b0d8044362dc882c78fbc %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global commitdate 20260608 diff --git a/anda/devs/zed/nightly/zed-nightly.spec b/anda/devs/zed/nightly/zed-nightly.spec index deae5b802c..4bd7a37fe3 100644 --- a/anda/devs/zed/nightly/zed-nightly.spec +++ b/anda/devs/zed/nightly/zed-nightly.spec @@ -1,6 +1,6 @@ -%global commit 69b602c797a62f09318916d24a98c930533fbdc8 +%global commit 9f56a4df515c9989bf0baa71c2150408cce0608e %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20260619 +%global commit_date 20260620 %global ver 1.9.0 %bcond_with check diff --git a/anda/langs/go/xray/nightly/xray-nightly.spec b/anda/langs/go/xray/nightly/xray-nightly.spec index d40c60ac47..f1709608b0 100644 --- a/anda/langs/go/xray/nightly/xray-nightly.spec +++ b/anda/langs/go/xray/nightly/xray-nightly.spec @@ -1,7 +1,7 @@ -%global commit 1e036ce1c5076f695d149a672ca578ebf907f882 +%global commit be8009c62509322682299bfbe969a62cee03f4d5 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global ver v26.3.27 -%global commit_date 20260619 +%global commit_date 20260620 %global goipath github.com/XTLS/Xray-core Version: %{ver}^%{commit_date}git.%{shortcommit} diff --git a/anda/langs/python/types-colorama/types-colorama.spec b/anda/langs/python/types-colorama/types-colorama.spec index f3c0f387dd..c3402ad59f 100644 --- a/anda/langs/python/types-colorama/types-colorama.spec +++ b/anda/langs/python/types-colorama/types-colorama.spec @@ -1,5 +1,5 @@ -%global commit 63c876f66ae413d8729da02422c5f40153a86540 -%global commit_date 20260618 +%global commit fb2af6606cf8fa85a8bf06c0d1f5689327d4b6fc +%global commit_date 20260620 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global pypi_name types-colorama diff --git a/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec b/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec index 6b5b9af9e0..9cbc6fcd5b 100644 --- a/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec +++ b/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec @@ -1,7 +1,7 @@ -%global commit 9ad36e14f6e5db3b45235943d61768e5fa246edd +%global commit dccbbd62a026752603f3205a12de0f2ff7ff2ab0 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global ver 20260618031303 -%global commit_date 20260618 +%global ver 20260620002456 +%global commit_date 20260620 Name: v2ray-domain-list-community Version: %{ver}^%{commit_date}git.%{shortcommit} diff --git a/anda/misc/v2ray-geoip/v2ray-geoip.spec b/anda/misc/v2ray-geoip/v2ray-geoip.spec index fdbbbe655f..6204f4ead2 100644 --- a/anda/misc/v2ray-geoip/v2ray-geoip.spec +++ b/anda/misc/v2ray-geoip/v2ray-geoip.spec @@ -1,7 +1,7 @@ -%global commit ce6485980843245f8dc13ec0d0b2258fb04435d2 +%global commit 519243fd551caf9b118d2a34c95699ce15cd74eb %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global ver 202605120112 -%global commit_date 20260512 +%global ver 202606191114 +%global commit_date 20260620 %global year %{gsub %commit_date %%d%%d%%d%%d$ %{quote:}} %global month %{gsub %commit_date %%d%%d%%d%%d(%%d%%d)%%d%%d %%1} diff --git a/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec b/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec index 826fb7421d..e295ccad97 100644 --- a/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec +++ b/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec @@ -1,5 +1,5 @@ -%global commit 066091a54c08b240939c3bc2c4119c693c636bdb -%global commit_date 20260619 +%global commit b0610f3e9109274730d6b7044f6d7b6603eaac3f +%global commit_date 20260620 %global shortcommit %(c=%{commit}; echo ${c:0:7}) Name: cloud-hypervisor-nightly From be9bc0d096a606c4aeb38f3904ca2ef053dfa035 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sat, 20 Jun 2026 04:43:30 +0000 Subject: [PATCH 03/68] bump: discord-canary-openasar discord-canary ruffle-nightly --- anda/apps/discord-canary-openasar/discord-canary-openasar.spec | 2 +- anda/apps/discord-canary/discord-canary.spec | 2 +- anda/apps/ruffle/ruffle-nightly.spec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec index 19f56fdc31..d42b8d635a 100644 --- a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec +++ b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec @@ -6,7 +6,7 @@ %global __provides_exclude_from %{_datadir}/%{name}/.*\\.so Name: discord-canary-openasar -Version: 1.0.1316 +Version: 1.0.1317 Release: 1%{?dist} Summary: A snappier Discord rewrite with features like further customization and theming License: MIT AND https://discord.com/terms diff --git a/anda/apps/discord-canary/discord-canary.spec b/anda/apps/discord-canary/discord-canary.spec index d1f17ceefd..a1f4eee315 100644 --- a/anda/apps/discord-canary/discord-canary.spec +++ b/anda/apps/discord-canary/discord-canary.spec @@ -1,5 +1,5 @@ Name: discord-canary -Version: 1.0.1316 +Version: 1.0.1317 Release: 1%{?dist} Summary: Free Voice and Text Chat for Gamers URL: discord.com diff --git a/anda/apps/ruffle/ruffle-nightly.spec b/anda/apps/ruffle/ruffle-nightly.spec index 037034238f..2c3b0b63b1 100644 --- a/anda/apps/ruffle/ruffle-nightly.spec +++ b/anda/apps/ruffle/ruffle-nightly.spec @@ -1,4 +1,4 @@ -%global ver 2026-06-19 +%global ver 2026-06-20 %global goodver %(echo %ver | sed 's/-//g') %global __brp_mangle_shebangs %{nil} %bcond_without mold From 3aa382d9fdddff5f88344261db0150cd148d207f Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sat, 20 Jun 2026 06:57:14 +0000 Subject: [PATCH 04/68] bump(branch): LCEVCdec gstreamer1-plugin-libav --- anda/multimedia/LCEVCdec/LCEVCdec.spec | 2 +- anda/multimedia/LCEVCdec/VERSION_ffmpeg.txt | 2 +- .../gstreamer1/gstreamer1-plugin-libav/VERSION_ffmpeg.txt | 2 +- .../gstreamer1-plugin-libav/gstreamer1-plugin-libav.spec | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/anda/multimedia/LCEVCdec/LCEVCdec.spec b/anda/multimedia/LCEVCdec/LCEVCdec.spec index f0b58d0d0f..2439d03365 100644 --- a/anda/multimedia/LCEVCdec/LCEVCdec.spec +++ b/anda/multimedia/LCEVCdec/LCEVCdec.spec @@ -10,7 +10,7 @@ Name: LCEVCdec Version: 4.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: MPEG-5 LCEVC Decoder License: BSD-3-Clause-Clear URL: https://docs.v-nova.com/v-nova/lcevc/lcevc-sdk-overview diff --git a/anda/multimedia/LCEVCdec/VERSION_ffmpeg.txt b/anda/multimedia/LCEVCdec/VERSION_ffmpeg.txt index 0e79152459..6b409d977b 100644 --- a/anda/multimedia/LCEVCdec/VERSION_ffmpeg.txt +++ b/anda/multimedia/LCEVCdec/VERSION_ffmpeg.txt @@ -1 +1 @@ -8.1.1 +8.1.2 diff --git a/anda/multimedia/gstreamer1/gstreamer1-plugin-libav/VERSION_ffmpeg.txt b/anda/multimedia/gstreamer1/gstreamer1-plugin-libav/VERSION_ffmpeg.txt index ef40fc45d0..13335a1cf3 100644 --- a/anda/multimedia/gstreamer1/gstreamer1-plugin-libav/VERSION_ffmpeg.txt +++ b/anda/multimedia/gstreamer1/gstreamer1-plugin-libav/VERSION_ffmpeg.txt @@ -1 +1 @@ -8.1.1 +8.1.2 diff --git a/anda/multimedia/gstreamer1/gstreamer1-plugin-libav/gstreamer1-plugin-libav.spec b/anda/multimedia/gstreamer1/gstreamer1-plugin-libav/gstreamer1-plugin-libav.spec index 8e91ffb419..5422505f42 100644 --- a/anda/multimedia/gstreamer1/gstreamer1-plugin-libav/gstreamer1-plugin-libav.spec +++ b/anda/multimedia/gstreamer1/gstreamer1-plugin-libav/gstreamer1-plugin-libav.spec @@ -1,6 +1,6 @@ Name: gstreamer1-plugin-libav Version: 1.28.4 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 Summary: GStreamer Libav plugin License: LGPL-2.0-or-later From ae170009ff62da90db11a80a7ac261444ab28060 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sat, 20 Jun 2026 08:14:42 +0000 Subject: [PATCH 05/68] bump: plasma6-applet-appgrid rust-bottom zig-master-bootstrap anda-srpm-macros --- .../kde/plasma6-applet-appgrid/plasma6-applet-appgrid.spec | 4 ++-- anda/langs/rust/bottom/rust-bottom.spec | 4 ++-- anda/langs/zig/bootstrap/setup.sh | 2 +- anda/langs/zig/bootstrap/zig-master-bootstrap.spec | 2 +- anda/terra/srpm-macros/anda-srpm-macros.spec | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/anda/desktops/kde/plasma6-applet-appgrid/plasma6-applet-appgrid.spec b/anda/desktops/kde/plasma6-applet-appgrid/plasma6-applet-appgrid.spec index edc4b7ae80..c51042a353 100644 --- a/anda/desktops/kde/plasma6-applet-appgrid/plasma6-applet-appgrid.spec +++ b/anda/desktops/kde/plasma6-applet-appgrid/plasma6-applet-appgrid.spec @@ -1,6 +1,6 @@ Name: plasma6-applet-appgrid -Version: 1.9.1 -Release: 2%{?dist} +Version: 1.9.2 +Release: 1%{?dist} Summary: A modern application launcher for KDE Plasma # Main code: GPL-2.0-or-later # dev.xarbit.appgrid.metainfo.xml: CC0-1.0 diff --git a/anda/langs/rust/bottom/rust-bottom.spec b/anda/langs/rust/bottom/rust-bottom.spec index b077d38eed..0ee9415047 100644 --- a/anda/langs/rust/bottom/rust-bottom.spec +++ b/anda/langs/rust/bottom/rust-bottom.spec @@ -5,8 +5,8 @@ %global crate bottom Name: rust-bottom -Version: 0.12.3 -Release: 1%?dist +Version: 0.13.0 +Release: 1%{?dist} Summary: Customizable cross-platform graphical process/system monitor for the terminal License: MIT diff --git a/anda/langs/zig/bootstrap/setup.sh b/anda/langs/zig/bootstrap/setup.sh index 8c02f54d15..e3ba71295b 100755 --- a/anda/langs/zig/bootstrap/setup.sh +++ b/anda/langs/zig/bootstrap/setup.sh @@ -1,6 +1,6 @@ #!/usr/bin/bash -version=0.17.0-dev.892+54537285c +version=0.17.0-dev.902+7255f3e72 mirrors=() diff --git a/anda/langs/zig/bootstrap/zig-master-bootstrap.spec b/anda/langs/zig/bootstrap/zig-master-bootstrap.spec index e384396352..5bf6952dc0 100644 --- a/anda/langs/zig/bootstrap/zig-master-bootstrap.spec +++ b/anda/langs/zig/bootstrap/zig-master-bootstrap.spec @@ -6,7 +6,7 @@ %define llvm_compat 22 %endif %global llvm_version 22.0.0 -%global ver 0.17.0-dev.892+54537285c +%global ver 0.17.0-dev.902+7255f3e72 %bcond bootstrap 1 %bcond docs %{without bootstrap} %bcond test 1 diff --git a/anda/terra/srpm-macros/anda-srpm-macros.spec b/anda/terra/srpm-macros/anda-srpm-macros.spec index f53f6c329f..f43b84d1fd 100644 --- a/anda/terra/srpm-macros/anda-srpm-macros.spec +++ b/anda/terra/srpm-macros/anda-srpm-macros.spec @@ -1,5 +1,5 @@ Name: anda-srpm-macros -Version: 0.3.10 +Version: 0.3.11 Release: 1%{?dist} Summary: SRPM macros for extra Fedora packages From 99d81df826e1a8e7d30ca6199bf4c908b191724f Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sat, 20 Jun 2026 10:07:50 +0000 Subject: [PATCH 06/68] bump(branch): zig-master --- anda/langs/zig/master/zig-master.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/langs/zig/master/zig-master.spec b/anda/langs/zig/master/zig-master.spec index 3850d9d5a0..7ce8a035b8 100644 --- a/anda/langs/zig/master/zig-master.spec +++ b/anda/langs/zig/master/zig-master.spec @@ -18,7 +18,7 @@ %global zig_cache_dir %{builddir}/zig-cache Name: zig-master -Version: 0.17.0~dev.892+54537285c +Version: 0.17.0~dev.902+7255f3e72 Release: 2%{?dist} Summary: Master builds of the Zig language License: MIT AND NCSA AND LGPL-2.1-or-later AND LGPL-2.1-or-later WITH GCC-exception-2.0 AND GPL-2.0-or-later AND GPL-2.0-or-later WITH GCC-exception-2.0 AND BSD-3-Clause AND Inner-Net-2.0 AND ISC AND LicenseRef-Fedora-Public-Domain AND GFDL-1.1-or-later AND ZPL-2.1 From 4198e1ae1edb2f6ff10ec41b1d973b0e8a30ac38 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sat, 20 Jun 2026 10:42:18 +0000 Subject: [PATCH 07/68] bump: rust-lowfi osu-lazer holyc rust-bottom rust-typstyle rust-topgrade --- anda/devs/lowfi/rust-lowfi.spec | 2 +- anda/games/osu-lazer/osu-lazer.spec | 4 ++-- anda/langs/holyc/holyc/holyc.spec | 2 +- anda/langs/rust/bottom/rust-bottom.spec | 2 +- anda/langs/rust/typstyle/rust-typstyle.spec | 4 ++-- anda/tools/topgrade/rust-topgrade.spec | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/anda/devs/lowfi/rust-lowfi.spec b/anda/devs/lowfi/rust-lowfi.spec index 994e1c3922..8b51b635b2 100644 --- a/anda/devs/lowfi/rust-lowfi.spec +++ b/anda/devs/lowfi/rust-lowfi.spec @@ -2,7 +2,7 @@ %global crate lowfi Name: rust-lowfi -Version: 2.0.6 +Version: 2.0.7 Release: 1%{?dist} Summary: Extremely simple lofi player diff --git a/anda/games/osu-lazer/osu-lazer.spec b/anda/games/osu-lazer/osu-lazer.spec index 01967c9343..4d43023159 100644 --- a/anda/games/osu-lazer/osu-lazer.spec +++ b/anda/games/osu-lazer/osu-lazer.spec @@ -1,9 +1,9 @@ -%define osuresver 2026.516.0 +%define osuresver 2026.615.0 %global debug_package %{nil} %define __strip /bin/true Name: osu-lazer -Version: 2026.518.0 +Version: 2026.620.0 Release: 1%{?dist} Summary: The future of osu! and the beginning of an open era! Commonly known by the codename osu!lazer. Pew pew. ExclusiveArch: x86_64 diff --git a/anda/langs/holyc/holyc/holyc.spec b/anda/langs/holyc/holyc/holyc.spec index 5bc9a5a0cf..5dfe959426 100644 --- a/anda/langs/holyc/holyc/holyc.spec +++ b/anda/langs/holyc/holyc/holyc.spec @@ -1,4 +1,4 @@ -%global ver 0.0.12 +%global ver 3-beta Name: holyc Version: %{ver}~beta diff --git a/anda/langs/rust/bottom/rust-bottom.spec b/anda/langs/rust/bottom/rust-bottom.spec index 0ee9415047..0ef25d0dac 100644 --- a/anda/langs/rust/bottom/rust-bottom.spec +++ b/anda/langs/rust/bottom/rust-bottom.spec @@ -5,7 +5,7 @@ %global crate bottom Name: rust-bottom -Version: 0.13.0 +Version: 0.14.0 Release: 1%{?dist} Summary: Customizable cross-platform graphical process/system monitor for the terminal diff --git a/anda/langs/rust/typstyle/rust-typstyle.spec b/anda/langs/rust/typstyle/rust-typstyle.spec index 85fb40af4b..213ea988ff 100644 --- a/anda/langs/rust/typstyle/rust-typstyle.spec +++ b/anda/langs/rust/typstyle/rust-typstyle.spec @@ -4,8 +4,8 @@ %global crate typstyle Name: rust-typstyle -Version: 0.14.4 -Release: 1%?dist +Version: 0.15.0 +Release: 1%{?dist} Summary: CLI for Typstyle License: Apache-2.0 diff --git a/anda/tools/topgrade/rust-topgrade.spec b/anda/tools/topgrade/rust-topgrade.spec index 076171a3de..29bd74ef1a 100644 --- a/anda/tools/topgrade/rust-topgrade.spec +++ b/anda/tools/topgrade/rust-topgrade.spec @@ -3,7 +3,7 @@ Name: rust-topgrade # renovate: datasource=github-releases depName=topgrade-rs/topgrade -Version: 17.6.1 +Version: 17.6.2 Release: 1%{?dist} Summary: Upgrade all the things From 0b9685423c33a9bd4fcc72f00e7921fa736fd298 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sat, 20 Jun 2026 12:20:15 +0000 Subject: [PATCH 08/68] bump: vgmstream --- anda/multimedia/vgmstream/vgmstream.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/multimedia/vgmstream/vgmstream.spec b/anda/multimedia/vgmstream/vgmstream.spec index c999342de4..c4227f10d9 100644 --- a/anda/multimedia/vgmstream/vgmstream.spec +++ b/anda/multimedia/vgmstream/vgmstream.spec @@ -1,6 +1,6 @@ -%global commit 192003b8aeedf8719a5837228b1041492f624d09 +%global commit a9bb4b886b493fb22b6b230946a720bc1173af23 %global shortcommit %{sub %{commit} 1 7} -%global commit_date 20260616 +%global commit_date 20260620 Name: vgmstream Version: 0~%{commit_date}git.%shortcommit From d7d7f43f6d6426c06f71c513cc8f7554bbb2f351 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sat, 20 Jun 2026 14:36:25 +0000 Subject: [PATCH 09/68] bump: Arctis-Sound-Manager --- anda/apps/Arctis-Sound-Manager/Arctis-Sound-Manager.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/apps/Arctis-Sound-Manager/Arctis-Sound-Manager.spec b/anda/apps/Arctis-Sound-Manager/Arctis-Sound-Manager.spec index df618f6303..fb149eddc9 100644 --- a/anda/apps/Arctis-Sound-Manager/Arctis-Sound-Manager.spec +++ b/anda/apps/Arctis-Sound-Manager/Arctis-Sound-Manager.spec @@ -4,7 +4,7 @@ %global arctis_sound_manager_services arctis-manager.service arctis-video-router.service arctis-gui.service Name: python-%{pypi_name} -Version: 1.1.79 +Version: 1.1.80 Release: 1%{?dist} Summary: GUI for SteelSeries Arctis headsets License: GPL-3.0-or-later From 29f3e57f2985aeead3a823920f2ef72e0e24b37c Mon Sep 17 00:00:00 2001 From: madomado Date: Sat, 20 Jun 2026 23:26:31 +0800 Subject: [PATCH 10/68] fix(anda): undep libgit2 (covered by bdep) (#13194) * fix(anda): undep libgit2 (covered by bdep) * Update anda.spec Signed-off-by: madomado --------- Signed-off-by: madomado --- anda/buildsys/anda/anda.spec | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/anda/buildsys/anda/anda.spec b/anda/buildsys/anda/anda.spec index 78fbc02bd4..9e83d900ea 100644 --- a/anda/buildsys/anda/anda.spec +++ b/anda/buildsys/anda/anda.spec @@ -4,7 +4,7 @@ Name: anda Version: 0.7.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Andaman Build toolchain SourceLicense: MIT License: ((MIT OR Apache-2.0) AND Unicode-3.0) AND (0BSD OR MIT OR Apache-2.0) AND (Apache-2.0 AND ISC) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND Apache-2.0 AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND BSD-3-Clause AND BSL-1.0 AND CDLA-Permissive-2.0 AND ISC AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (MIT OR Apache-2.0) AND (MIT OR Zlib OR Apache-2.0) AND MIT AND MPL-2.0-or-later AND MPL-2.0-only AND Unicode-3.0 AND (Unlicense OR MIT) @@ -18,18 +18,14 @@ BuildRequires: gcc BuildRequires: rust-packaging >= 21 BuildRequires: anda-srpm-macros BuildRequires: openssl-devel -%if %{defined fedora} -BuildRequires: openssl-devel-engine -%endif BuildRequires: git-core -BuildRequires: libgit2-devel +BuildRequires: pkgconfig(libgit2) BuildRequires: libssh2-devel BuildRequires: mold Requires: mock Requires: rpm-build Requires: createrepo_c Requires: git-core -Requires: libgit2 %if 0%{?fedora} >= 42 Requires: mock-filesystem Requires: util-linux-script From 50a3ae6ace304b71aeab5db69da86afd62fd91a2 Mon Sep 17 00:00:00 2001 From: madomado Date: Sat, 20 Jun 2026 23:44:48 +0800 Subject: [PATCH 11/68] fix(libsingularity): bdep sassc (#13192) * fix(libsingularity): bdep sassc * feat: files --- anda/desktops/singularity/libsingularity/libsingularity.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/anda/desktops/singularity/libsingularity/libsingularity.spec b/anda/desktops/singularity/libsingularity/libsingularity.spec index fb892d3773..dfaf618419 100644 --- a/anda/desktops/singularity/libsingularity/libsingularity.spec +++ b/anda/desktops/singularity/libsingularity/libsingularity.spec @@ -13,6 +13,7 @@ BuildRequires: meson BuildRequires: cmake BuildRequires: gcc BuildRequires: vala +BuildRequires: sassc BuildRequires: pkgconfig(gtk4) BuildRequires: pkgconfig(gtk4-layer-shell-0) BuildRequires: pkgconfig(gee-0.8) @@ -51,6 +52,7 @@ A GTK4 application and widget framework for the Singularity Desktop Environment. %{_datadir}/vala/vapi/singularity-1.0.vapi %{_datadir}/vala/vapi/libsingularity-1.0.vapi %{_datadir}/vala/vapi/singularity-1.0.deps +%{_datadir}/themes/Singularity/ %changelog * Sat May 16 2026 Owen Zimmerman From 3593a0250d854b9a3e56cdfa669a03d96932f0a7 Mon Sep 17 00:00:00 2001 From: madomado Date: Sat, 20 Jun 2026 23:45:14 +0800 Subject: [PATCH 12/68] fix(gstreamer1-plugin-libav): remove `AUTHORS` & `NEWS` (#13189) --- .../gstreamer1-plugin-libav/gstreamer1-plugin-libav.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/multimedia/gstreamer1/gstreamer1-plugin-libav/gstreamer1-plugin-libav.spec b/anda/multimedia/gstreamer1/gstreamer1-plugin-libav/gstreamer1-plugin-libav.spec index 5422505f42..54b2fed8f5 100644 --- a/anda/multimedia/gstreamer1/gstreamer1-plugin-libav/gstreamer1-plugin-libav.spec +++ b/anda/multimedia/gstreamer1/gstreamer1-plugin-libav/gstreamer1-plugin-libav.spec @@ -48,7 +48,7 @@ find %{buildroot} -name "*.la" -delete %files %license COPYING -%doc AUTHORS NEWS README.md +%doc README.md %{_libdir}/gstreamer-1.0/libgstlibav.so %changelog From 228b9dad9a4ad063881ca02c90b25362c6e9a3a7 Mon Sep 17 00:00:00 2001 From: madomado Date: Sun, 21 Jun 2026 01:03:56 +0800 Subject: [PATCH 13/68] fix: use %terra_crates_source (#13207) --- anda/buildsys/mise/rust-mise.spec | 2 +- anda/desktops/waylands/matugen/rust-matugen.spec | 2 +- anda/desktops/waylands/niri-taskbar/rust-niri-taskbar.spec | 2 +- anda/devs/atac/atac.spec | 2 +- anda/devs/create-tauri-app/create-tauri-app.spec | 2 +- anda/devs/deno/rust-deno.spec | 2 +- anda/devs/git-biance/git-biance.spec | 2 +- anda/devs/lowfi/rust-lowfi.spec | 2 +- anda/devs/neovide/neovide.spec | 2 +- anda/games/2048-rs/rust-game-2048.spec | 2 +- anda/games/chess-tui/rust-chess-tui.spec | 2 +- anda/games/typeracer/rust-typeracer.spec | 2 +- anda/games/umu-wrapper/rust-umu-wrapper.spec | 2 +- anda/langs/rust/bacon/rust-bacon.spec | 2 +- anda/langs/rust/bandwhich/rust-bandwhich.spec | 2 +- anda/langs/rust/bottom/rust-bottom.spec | 2 +- anda/langs/rust/dysk/rust-dysk.spec | 2 +- anda/langs/rust/eza/rust-eza.spec | 2 +- anda/langs/rust/felix/rust-felix.spec | 2 +- anda/langs/rust/gitoxide/rust-gitoxide.spec | 2 +- anda/langs/rust/gping/rust-gping.spec | 2 +- anda/langs/rust/jellyfin-rpc/rust-jellyfin-rpc-cli.spec | 2 +- anda/langs/rust/joshuto/rust-joshuto.spec | 2 +- anda/langs/rust/koji/rust-koji.spec | 2 +- anda/langs/rust/kondo-ui/rust-kondo-ui.spec | 2 +- anda/langs/rust/ouch/rust-ouch.spec | 2 +- anda/langs/rust/starship/rust-starship.spec | 2 +- anda/langs/rust/tectonic/rust-tectonic.spec | 2 +- anda/langs/rust/television/rust-television.spec | 2 +- anda/langs/rust/typstyle/rust-typstyle.spec | 2 +- anda/langs/rust/usage/rust-usage-cli.spec | 2 +- anda/langs/rust/wild/rust-wild-linker.spec | 2 +- anda/langs/rust/xdvdfs/rust-xdvdfs-cli.spec | 2 +- anda/langs/rust/xplr/rust-xplr.spec | 2 +- anda/langs/rust/youki/rust-youki.spec | 2 +- anda/langs/rust/zellij/rust-zellij.spec | 2 +- anda/langs/rust/zoi/rust-zoi-rs.spec | 2 +- anda/misc/pokeget/pokeget.spec | 2 +- anda/terra/sccache/terra-sccache.spec | 2 +- anda/tools/kanata/rust-kanata.spec | 2 +- anda/tools/sheldon/sheldon.spec | 2 +- anda/tools/tauri/tauri.spec | 2 +- anda/tools/typos/typos.spec | 2 +- 43 files changed, 43 insertions(+), 43 deletions(-) diff --git a/anda/buildsys/mise/rust-mise.spec b/anda/buildsys/mise/rust-mise.spec index 65193a1e20..b45d6375c9 100644 --- a/anda/buildsys/mise/rust-mise.spec +++ b/anda/buildsys/mise/rust-mise.spec @@ -11,7 +11,7 @@ Summary: Front-end to your dev env License: MIT URL: https://crates.io/crates/mise -Source: %{crates_source} +Source: %{terra_crates_source} Source1: https://raw.githubusercontent.com/jdx/mise/refs/tags/v%version/man/man1/mise.1 Source2: https://raw.githubusercontent.com/jdx/mise/refs/tags/v%version/completions/mise.bash Source3: https://raw.githubusercontent.com/jdx/mise/refs/tags/v%version/completions/mise.fish diff --git a/anda/desktops/waylands/matugen/rust-matugen.spec b/anda/desktops/waylands/matugen/rust-matugen.spec index b5221cff5c..7f08476a90 100644 --- a/anda/desktops/waylands/matugen/rust-matugen.spec +++ b/anda/desktops/waylands/matugen/rust-matugen.spec @@ -8,7 +8,7 @@ Summary: Material you color generation tool with templates License: GPL-2.0-or-later URL: https://crates.io/crates/matugen -Source: %{crates_source} +Source: %{terra_crates_source} Source1: https://raw.githubusercontent.com/InioX/matugen/refs/tags/v%version/README.md Source2: https://raw.githubusercontent.com/InioX/matugen/refs/tags/v%version/CHANGELOG.md Source3: https://raw.githubusercontent.com/InioX/matugen/refs/tags/v%version/LICENSE diff --git a/anda/desktops/waylands/niri-taskbar/rust-niri-taskbar.spec b/anda/desktops/waylands/niri-taskbar/rust-niri-taskbar.spec index a2e53fc3f3..171834fe65 100644 --- a/anda/desktops/waylands/niri-taskbar/rust-niri-taskbar.spec +++ b/anda/desktops/waylands/niri-taskbar/rust-niri-taskbar.spec @@ -11,7 +11,7 @@ Summary: Niri taskbar module for Waybar License: MIT URL: https://crates.io/crates/niri-taskbar -Source: %{crates_source %{crate} %{crate_version}} +Source: https://static.crates.io/crates/%{crate}/%{crate}-%{crate_version}.crate # Automatically generated patch to strip dependencies and normalize metadata Patch: niri-taskbar-fix-metadata-auto.diff diff --git a/anda/devs/atac/atac.spec b/anda/devs/atac/atac.spec index 32eb76b7bb..f3b16587c2 100644 --- a/anda/devs/atac/atac.spec +++ b/anda/devs/atac/atac.spec @@ -12,7 +12,7 @@ Summary: Arguably a Terminal API Client License: MIT URL: https://crates.io/crates/atac -Source: %{crates_source} +Source: %{terra_crates_source} Packager: xiaoshihou BuildRequires: anda-srpm-macros cargo-rpm-macros mold diff --git a/anda/devs/create-tauri-app/create-tauri-app.spec b/anda/devs/create-tauri-app/create-tauri-app.spec index 6623bd159d..009d2ac8cc 100644 --- a/anda/devs/create-tauri-app/create-tauri-app.spec +++ b/anda/devs/create-tauri-app/create-tauri-app.spec @@ -6,7 +6,7 @@ Release: 1%{?dist} Summary: Rapidly scaffold out a new tauri app project License: Apache-2.0 OR MIT URL: https://crates.io/crates/create-tauri-app -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: anda-srpm-macros BuildRequires: cargo-rpm-macros BuildRequires: mold diff --git a/anda/devs/deno/rust-deno.spec b/anda/devs/deno/rust-deno.spec index d26a70f8bc..c18f9938ed 100644 --- a/anda/devs/deno/rust-deno.spec +++ b/anda/devs/deno/rust-deno.spec @@ -12,7 +12,7 @@ Summary: Deno executable License: MIT URL: https://crates.io/crates/deno -Source: %{crates_source} +Source: %{terra_crates_source} Source1: https://raw.githubusercontent.com/denoland/deno/refs/tags/v%version/LICENSE.md Source2: gcc-wrapper.sh Source3: land.deno.deno.metainfo.xml diff --git a/anda/devs/git-biance/git-biance.spec b/anda/devs/git-biance/git-biance.spec index 3188598f56..b13553f2d4 100644 --- a/anda/devs/git-biance/git-biance.spec +++ b/anda/devs/git-biance/git-biance.spec @@ -7,7 +7,7 @@ Summary: Visualize code contributions in a GitHub-style graph. License: GPL-3.0 URL: https://crates.io/crates/git-biance -Source: %{crates_source} +Source: %{terra_crates_source} Packager: xiaoshihou BuildRequires: anda-srpm-macros cargo-rpm-macros mold diff --git a/anda/devs/lowfi/rust-lowfi.spec b/anda/devs/lowfi/rust-lowfi.spec index 8b51b635b2..d79c03af8f 100644 --- a/anda/devs/lowfi/rust-lowfi.spec +++ b/anda/devs/lowfi/rust-lowfi.spec @@ -8,7 +8,7 @@ Summary: Extremely simple lofi player License: MIT URL: https://crates.io/crates/lowfi -Source: %{crates_source} +Source: %{terra_crates_source} Packager: sadlerm diff --git a/anda/devs/neovide/neovide.spec b/anda/devs/neovide/neovide.spec index 3bb5eb17cc..2fb2ba3601 100644 --- a/anda/devs/neovide/neovide.spec +++ b/anda/devs/neovide/neovide.spec @@ -8,7 +8,7 @@ Summary: No Nonsense Neovim Client in Rust License: MIT URL: https://crates.io/crates/neovide -Source0: %{crates_source} +Source0: %{terra_crates_source} Source1: %{raw_forgeurl}/%{version}/assets/%{crate}-16x16.png Source2: %{raw_forgeurl}/%{version}/assets/%{crate}-32x32.png Source3: %{raw_forgeurl}/%{version}/assets/%{crate}-48x48.png diff --git a/anda/games/2048-rs/rust-game-2048.spec b/anda/games/2048-rs/rust-game-2048.spec index a3541a63f5..8144771b50 100644 --- a/anda/games/2048-rs/rust-game-2048.spec +++ b/anda/games/2048-rs/rust-game-2048.spec @@ -10,7 +10,7 @@ Summary: Cli implementation of the popular 2048 game writen in rust License: MIT URL: https://crates.io/crates/game-2048 -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: anda-srpm-macros rust-packaging >= 21 diff --git a/anda/games/chess-tui/rust-chess-tui.spec b/anda/games/chess-tui/rust-chess-tui.spec index 2046adf809..9689b17e99 100644 --- a/anda/games/chess-tui/rust-chess-tui.spec +++ b/anda/games/chess-tui/rust-chess-tui.spec @@ -10,7 +10,7 @@ Summary: Rusty chess game in your terminal 🦀 License: MIT URL: https://crates.io/crates/chess-tui -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: cargo-rpm-macros >= 24 BuildRequires: pkgconfig(openssl) diff --git a/anda/games/typeracer/rust-typeracer.spec b/anda/games/typeracer/rust-typeracer.spec index 5f3ccd3753..fcd2df650d 100644 --- a/anda/games/typeracer/rust-typeracer.spec +++ b/anda/games/typeracer/rust-typeracer.spec @@ -12,7 +12,7 @@ Summary: Terminal typing game License: GPL-3.0 URL: https://crates.io/crates/typeracer -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: perl openssl-devel anda-srpm-macros rust-packaging >= 21 mold diff --git a/anda/games/umu-wrapper/rust-umu-wrapper.spec b/anda/games/umu-wrapper/rust-umu-wrapper.spec index ca5d5455a0..8a41c42add 100644 --- a/anda/games/umu-wrapper/rust-umu-wrapper.spec +++ b/anda/games/umu-wrapper/rust-umu-wrapper.spec @@ -10,7 +10,7 @@ Summary: Simplified wrapper for UMU-Launcher License: MIT URL: https://crates.io/crates/umu-wrapper -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: mold anda-srpm-macros rust-packaging >= 21 diff --git a/anda/langs/rust/bacon/rust-bacon.spec b/anda/langs/rust/bacon/rust-bacon.spec index 638330ba0a..c8001c067a 100644 --- a/anda/langs/rust/bacon/rust-bacon.spec +++ b/anda/langs/rust/bacon/rust-bacon.spec @@ -12,7 +12,7 @@ Packager: metcya License: AGPL-3.0 URL: https://crates.io/crates/bacon -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: anda-srpm-macros BuildRequires: mold diff --git a/anda/langs/rust/bandwhich/rust-bandwhich.spec b/anda/langs/rust/bandwhich/rust-bandwhich.spec index 4a0bb0b811..20e1ab4898 100644 --- a/anda/langs/rust/bandwhich/rust-bandwhich.spec +++ b/anda/langs/rust/bandwhich/rust-bandwhich.spec @@ -11,7 +11,7 @@ Summary: Display current network utilization by process, connection and r License: MIT URL: https://crates.io/crates/bandwhich -Source: %{crates_source} +Source: %{terra_crates_source} # Automatically generated patch to strip dependencies and normalize metadata Patch: bandwhich-fix-metadata-auto.diff diff --git a/anda/langs/rust/bottom/rust-bottom.spec b/anda/langs/rust/bottom/rust-bottom.spec index 0ef25d0dac..20fd0b220f 100644 --- a/anda/langs/rust/bottom/rust-bottom.spec +++ b/anda/langs/rust/bottom/rust-bottom.spec @@ -11,7 +11,7 @@ Summary: Customizable cross-platform graphical process/system monitor for License: MIT URL: https://crates.io/crates/bottom -Source: %{crates_source} +Source: %{terra_crates_source} # Automatically generated patch to strip dependencies and normalize metadata Patch: bottom-fix-metadata-auto.diff diff --git a/anda/langs/rust/dysk/rust-dysk.spec b/anda/langs/rust/dysk/rust-dysk.spec index a97f42b1aa..bf1f2f226b 100644 --- a/anda/langs/rust/dysk/rust-dysk.spec +++ b/anda/langs/rust/dysk/rust-dysk.spec @@ -10,7 +10,7 @@ Summary: Give information on mounted filesystems License: MIT URL: https://crates.io/crates/dysk -Source: %{crates_source} +Source: %{terra_crates_source} Packager: madonuko BuildRequires: cargo-rpm-macros >= 24 diff --git a/anda/langs/rust/eza/rust-eza.spec b/anda/langs/rust/eza/rust-eza.spec index 173dd8d6fe..88d6cbc86e 100644 --- a/anda/langs/rust/eza/rust-eza.spec +++ b/anda/langs/rust/eza/rust-eza.spec @@ -10,7 +10,7 @@ Summary: Modern replacement for ls License: EUPL-1.2 URL: https://crates.io/crates/eza -Source: %{crates_source} +Source: %{terra_crates_source} # Automatically generated patch to strip dependencies and normalize metadata Patch: eza-fix-metadata-auto.diff diff --git a/anda/langs/rust/felix/rust-felix.spec b/anda/langs/rust/felix/rust-felix.spec index 0a600f0fb7..7e83783ee8 100644 --- a/anda/langs/rust/felix/rust-felix.spec +++ b/anda/langs/rust/felix/rust-felix.spec @@ -9,7 +9,7 @@ Summary: Tui file manager with vim-like key mapping License: MIT URL: https://crates.io/crates/felix -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: anda-srpm-macros rust-packaging >= 21 mold diff --git a/anda/langs/rust/gitoxide/rust-gitoxide.spec b/anda/langs/rust/gitoxide/rust-gitoxide.spec index c5e42b5c26..cfffb2109b 100644 --- a/anda/langs/rust/gitoxide/rust-gitoxide.spec +++ b/anda/langs/rust/gitoxide/rust-gitoxide.spec @@ -11,7 +11,7 @@ Summary: Command-line application for interacting with git repositories License: MIT OR Apache-2.0 URL: https://crates.io/crates/gitoxide -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: openssl-devel-engine cmake anda-srpm-macros rust-packaging >= 21 mold diff --git a/anda/langs/rust/gping/rust-gping.spec b/anda/langs/rust/gping/rust-gping.spec index c0cab5906c..1572cef8a6 100644 --- a/anda/langs/rust/gping/rust-gping.spec +++ b/anda/langs/rust/gping/rust-gping.spec @@ -12,7 +12,7 @@ Summary: Ping, but with a graph License: MIT URL: https://crates.io/crates/gping -Source: %{crates_source} +Source: %{terra_crates_source} Source1: https://github.com/orf/gping/blob/gping-v%version/LICENSE BuildRequires: anda-srpm-macros rust-packaging >= 21 mold diff --git a/anda/langs/rust/jellyfin-rpc/rust-jellyfin-rpc-cli.spec b/anda/langs/rust/jellyfin-rpc/rust-jellyfin-rpc-cli.spec index 7eed036285..518f869bc7 100644 --- a/anda/langs/rust/jellyfin-rpc/rust-jellyfin-rpc-cli.spec +++ b/anda/langs/rust/jellyfin-rpc/rust-jellyfin-rpc-cli.spec @@ -11,7 +11,7 @@ Summary: Displays the content you're currently watching on Discord! License: GPL-3.0-or-later URL: https://crates.io/crates/jellyfin-rpc-cli -Source0: %{crates_source} +Source0: %{terra_crates_source} Source1: https://raw.githubusercontent.com/Radiicall/jellyfin-rpc/%version/LICENSE Packager: madonuko diff --git a/anda/langs/rust/joshuto/rust-joshuto.spec b/anda/langs/rust/joshuto/rust-joshuto.spec index dadba92643..d4b6fc5c7f 100644 --- a/anda/langs/rust/joshuto/rust-joshuto.spec +++ b/anda/langs/rust/joshuto/rust-joshuto.spec @@ -11,7 +11,7 @@ Summary: Terminal file manager inspired by ranger License: LGPL-3.0 URL: https://crates.io/crates/joshuto -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: anda-srpm-macros rust-packaging >= 21 diff --git a/anda/langs/rust/koji/rust-koji.spec b/anda/langs/rust/koji/rust-koji.spec index 8cc6e7ac9a..b984fd948c 100644 --- a/anda/langs/rust/koji/rust-koji.spec +++ b/anda/langs/rust/koji/rust-koji.spec @@ -11,7 +11,7 @@ Summary: Interactive CLI for creating conventional commits License: MIT URL: https://crates.io/crates/koji -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: cargo-rpm-macros >= 24 anda-srpm-macros BuildRequires: openssl-devel diff --git a/anda/langs/rust/kondo-ui/rust-kondo-ui.spec b/anda/langs/rust/kondo-ui/rust-kondo-ui.spec index e96222e791..115cf141a8 100644 --- a/anda/langs/rust/kondo-ui/rust-kondo-ui.spec +++ b/anda/langs/rust/kondo-ui/rust-kondo-ui.spec @@ -8,7 +8,7 @@ Summary: Filesystem cleaning tool that recursively searches directories f License: MIT URL: https://crates.io/crates/kondo-ui -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: pkgconfig(glib-2.0) pkgconfig(cairo) pkgconfig(cairo-gobject) pkgconfig(gdk-pixbuf-2.0) >= 2.30 pkgconfig(pango) >= 1.36 pkgconfig(atk) >= 2.14 BuildRequires: pkgconfig(gdk-3.0) >= 3.22 diff --git a/anda/langs/rust/ouch/rust-ouch.spec b/anda/langs/rust/ouch/rust-ouch.spec index 53a9b31389..633a71170d 100644 --- a/anda/langs/rust/ouch/rust-ouch.spec +++ b/anda/langs/rust/ouch/rust-ouch.spec @@ -11,7 +11,7 @@ Summary: Command-line utility for easily compressing and decompressing fi License: MIT URL: https://crates.io/crates/ouch -Source: %{crates_source} +Source: %{terra_crates_source} # Automatically generated patch to strip dependencies and normalize metadata %dnl Patch: ouch-fix-metadata-auto.diff diff --git a/anda/langs/rust/starship/rust-starship.spec b/anda/langs/rust/starship/rust-starship.spec index ea49b6f1b1..2cf618e5bb 100644 --- a/anda/langs/rust/starship/rust-starship.spec +++ b/anda/langs/rust/starship/rust-starship.spec @@ -10,7 +10,7 @@ Summary: Minimal, blazing-fast, and infinitely customizable prompt for an License: ISC URL: https://crates.io/crates/starship -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: cargo-rpm-macros >= 24 BuildRequires: anda-srpm-macros diff --git a/anda/langs/rust/tectonic/rust-tectonic.spec b/anda/langs/rust/tectonic/rust-tectonic.spec index 4aa91177f7..3a47de0bbd 100644 --- a/anda/langs/rust/tectonic/rust-tectonic.spec +++ b/anda/langs/rust/tectonic/rust-tectonic.spec @@ -10,7 +10,7 @@ Summary: Modernized, complete, embeddable TeX/LaTeX engine License: MIT URL: https://crates.io/crates/tectonic -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: pkgconfig(fontconfig) g++ libicu-devel freetype-devel openssl-devel graphite2-devel anda-srpm-macros rust-packaging >= 21 diff --git a/anda/langs/rust/television/rust-television.spec b/anda/langs/rust/television/rust-television.spec index c942822ca1..7f876005ba 100644 --- a/anda/langs/rust/television/rust-television.spec +++ b/anda/langs/rust/television/rust-television.spec @@ -11,7 +11,7 @@ Summary: Very fast, portable and hackable fuzzy finder for the terminal License: MIT URL: https://crates.io/crates/television -Source: %{crates_source} +Source: %{terra_crates_source} # Automatically generated patch to strip dependencies and normalize metadata Patch: television-fix-metadata-auto.diff diff --git a/anda/langs/rust/typstyle/rust-typstyle.spec b/anda/langs/rust/typstyle/rust-typstyle.spec index 213ea988ff..4f40ab8294 100644 --- a/anda/langs/rust/typstyle/rust-typstyle.spec +++ b/anda/langs/rust/typstyle/rust-typstyle.spec @@ -10,7 +10,7 @@ Summary: CLI for Typstyle License: Apache-2.0 URL: https://crates.io/crates/typstyle -Source: %{crates_source} +Source: %{terra_crates_source} Source1: https://raw.githubusercontent.com/typstyle-rs/typstyle/v%{version}/LICENSE Packager: metcya diff --git a/anda/langs/rust/usage/rust-usage-cli.spec b/anda/langs/rust/usage/rust-usage-cli.spec index 92f4e65ff9..9743077480 100644 --- a/anda/langs/rust/usage/rust-usage-cli.spec +++ b/anda/langs/rust/usage/rust-usage-cli.spec @@ -10,7 +10,7 @@ Summary: CLI for working with usage-based CLIs License: MIT URL: https://crates.io/crates/usage-cli -Source: %{crates_source} +Source: %{terra_crates_source} Source1: https://raw.githubusercontent.com/jdx/usage/refs/tags/v%version/LICENSE Packager: madonuko diff --git a/anda/langs/rust/wild/rust-wild-linker.spec b/anda/langs/rust/wild/rust-wild-linker.spec index f4d2f8624f..1e60f8f26b 100644 --- a/anda/langs/rust/wild/rust-wild-linker.spec +++ b/anda/langs/rust/wild/rust-wild-linker.spec @@ -10,7 +10,7 @@ Summary: Very fast linker for Linux License: MIT OR Apache-2.0 URL: https://crates.io/crates/wild-linker -Source: %{crates_source} +Source: %{terra_crates_source} Source1: https://github.com/davidlattimore/wild/archive/refs/tags/%version.tar.gz BuildRequires: cargo-rpm-macros >= 24 diff --git a/anda/langs/rust/xdvdfs/rust-xdvdfs-cli.spec b/anda/langs/rust/xdvdfs/rust-xdvdfs-cli.spec index a45f7c2070..79a1ededa7 100644 --- a/anda/langs/rust/xdvdfs/rust-xdvdfs-cli.spec +++ b/anda/langs/rust/xdvdfs/rust-xdvdfs-cli.spec @@ -10,7 +10,7 @@ Summary: Tool for interacting with XISO/XDVDFS images License: MIT URL: https://crates.io/crates/xdvdfs-cli -Source: %{crates_source} +Source: %{terra_crates_source} Source1: https://raw.githubusercontent.com/antangelo/xdvdfs/v%version/LICENSE Packager: madonuko diff --git a/anda/langs/rust/xplr/rust-xplr.spec b/anda/langs/rust/xplr/rust-xplr.spec index 8c56a06815..ad5cfea51f 100644 --- a/anda/langs/rust/xplr/rust-xplr.spec +++ b/anda/langs/rust/xplr/rust-xplr.spec @@ -10,7 +10,7 @@ Summary: Hackable, minimal, fast TUI file explorer License: MIT URL: https://crates.io/crates/xplr -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: cargo-rpm-macros >= 24 BuildRequires: mold diff --git a/anda/langs/rust/youki/rust-youki.spec b/anda/langs/rust/youki/rust-youki.spec index 03ddf728ec..73853507ca 100644 --- a/anda/langs/rust/youki/rust-youki.spec +++ b/anda/langs/rust/youki/rust-youki.spec @@ -10,7 +10,7 @@ Summary: Container runtime written in Rust License: None URL: https://crates.io/crates/youki -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: anda-srpm-macros cargo-rpm-macros >= 24 BuildRequires: pkg-config diff --git a/anda/langs/rust/zellij/rust-zellij.spec b/anda/langs/rust/zellij/rust-zellij.spec index 95bace45f5..aef0b8ae65 100644 --- a/anda/langs/rust/zellij/rust-zellij.spec +++ b/anda/langs/rust/zellij/rust-zellij.spec @@ -11,7 +11,7 @@ Summary: Terminal workspace with batteries included License: MIT URL: https://crates.io/crates/zellij -Source: %{crates_source} +Source: %{terra_crates_source} ExclusiveArch: %{rust_arches} diff --git a/anda/langs/rust/zoi/rust-zoi-rs.spec b/anda/langs/rust/zoi/rust-zoi-rs.spec index 07fa971633..d17274b178 100644 --- a/anda/langs/rust/zoi/rust-zoi-rs.spec +++ b/anda/langs/rust/zoi/rust-zoi-rs.spec @@ -10,7 +10,7 @@ Summary: Universal Package Manager & Environment Setup Tool SourceLicense: Apache-2.0 License: ((Apache-2.0 OR MIT) AND BSD-3-Clause) AND (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND (Apache-2.0 AND ISC) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND BSD-2-Clause AND BSD-3-Clause AND BSL-1.0 AND CDLA-Permissive-2.0 AND ISC AND LGPL-2.0-or-later AND MIT AND (MIT OR Apache-2.0) AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (MIT OR Zlib OR Apache-2.0) AND MPL-2.0 AND MPL-2.0+ AND Unicode-3.0 AND (Unlicense OR MIT) AND Zlib URL: https://crates.io/crates/zoi-rs -Source: %{crates_source %{crate} %{crate_version}} +Source: https://static.crates.io/crates/%{crate}/%{crate}-%{crate_version}.crate BuildRequires: cargo BuildRequires: gcc-c++ BuildRequires: rpm_macro(cargo_install) diff --git a/anda/misc/pokeget/pokeget.spec b/anda/misc/pokeget/pokeget.spec index 202dd358b7..c4e8516080 100644 --- a/anda/misc/pokeget/pokeget.spec +++ b/anda/misc/pokeget/pokeget.spec @@ -10,7 +10,7 @@ SourceLicense: MIT License: (0BSD OR MIT OR Apache-2.0) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND BSD-2-Clause AND (MIT OR Apache-2.0 OR Zlib) AND (MIT OR Apache-2.0) AND (MIT OR Zlib OR Apache-2.0) AND MIT AND (Unlicense OR MIT) AND (Zlib OR Apache-2.0 OR MIT) Summary: A better Rust version of pokeget. URL: https://crates.io/crates/%{crate} -Source0: %{crates_source} +Source0: %{terra_crates_source} BuildRequires: anda-srpm-macros BuildRequires: cargo-rpm-macros BuildRequires: mold diff --git a/anda/terra/sccache/terra-sccache.spec b/anda/terra/sccache/terra-sccache.spec index 74077393ab..719984432e 100644 --- a/anda/terra/sccache/terra-sccache.spec +++ b/anda/terra/sccache/terra-sccache.spec @@ -14,7 +14,7 @@ Summary: Remote caching enabled builds of sccache SourceLicense: Apache-2.0 AND (Apache-2.0 OR MIT) License: ((Apache-2.0 OR MIT) AND BSD-3-Clause) AND (MIT OR Apache-2.0) AND Unicode-DFS-2016) AND (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND (Apache-2.0 AND ISC) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND BSD-2-Clause AND BSD-3-Clause AND (CC0-1.0 OR Apache-2.0 OR Apache-2.0 WITH LLVM-exception) AND (CC0-1.0 OR MIT-0 OR Apache-2.0) AND CDLA-Permissive-2.0 AND ISC AND MIT AND (MIT OR Apache-2.0) AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (MIT OR Apache-2.0 OR Zlib) AND (MIT OR Zlib OR Apache-2.0) AND MPL-2.0 AND (Unlicense OR MIT) AND Zlib AND (Zlib OR Apache-2.0 OR MIT) URL: https://crates.io/crates/sccache -Source0: %{crates_source} +Source0: %{terra_crates_source} BuildRequires: anda-srpm-macros BuildRequires: cargo BuildRequires: cargo-rpm-macros diff --git a/anda/tools/kanata/rust-kanata.spec b/anda/tools/kanata/rust-kanata.spec index f503bc4d9e..5922679c15 100644 --- a/anda/tools/kanata/rust-kanata.spec +++ b/anda/tools/kanata/rust-kanata.spec @@ -10,7 +10,7 @@ Summary: Multi-layer keyboard customization License: LGPL-3.0-only URL: https://crates.io/crates/kanata -Source: %{crates_source} +Source: %{terra_crates_source} # Automatically generated patch to strip dependencies and normalize metadata Patch: kanata-fix-metadata-auto.diff Packager: madonuko diff --git a/anda/tools/sheldon/sheldon.spec b/anda/tools/sheldon/sheldon.spec index 08f88b83c0..a9bbf98715 100644 --- a/anda/tools/sheldon/sheldon.spec +++ b/anda/tools/sheldon/sheldon.spec @@ -10,7 +10,7 @@ Summary: Fast, configurable, shell plugin manager License: MIT OR Apache-2.0 URL: https://sheldon.cli.rs -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: cargo-rpm-macros >= 24 BuildRequires: anda-srpm-macros diff --git a/anda/tools/tauri/tauri.spec b/anda/tools/tauri/tauri.spec index 27caecb202..cb8a69ecca 100644 --- a/anda/tools/tauri/tauri.spec +++ b/anda/tools/tauri/tauri.spec @@ -7,7 +7,7 @@ Release: 1%{?dist} Summary: Command line interface for building Tauri apps License: Apache-2.0 OR MIT URL: https://crates.io/crates/create-tauri-app -Source: %{crates_source} +Source: %{terra_crates_source} BuildRequires: anda-srpm-macros BuildRequires: cargo-rpm-macros BuildRequires: mold diff --git a/anda/tools/typos/typos.spec b/anda/tools/typos/typos.spec index 5a13a3349a..b6d1723750 100644 --- a/anda/tools/typos/typos.spec +++ b/anda/tools/typos/typos.spec @@ -8,7 +8,7 @@ Summary: Source Code Spelling Correction License: MIT OR Apache-2.0 URL: https://crates.io/crates/typos-cli -Source0: %{crates_source} +Source0: %{terra_crates_source} Source1: https://raw.githubusercontent.com/crate-ci/%{name}/refs/tags/v%{version}/LICENSE-MIT Source2: https://raw.githubusercontent.com/crate-ci/%{name}/refs/tags/v%{version}/LICENSE-APACHE From 42e403d02d6a923dc8eae2ef65722c557ed1fc13 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sat, 20 Jun 2026 17:48:52 +0000 Subject: [PATCH 14/68] bump: carapace --- anda/tools/carapace/carapace.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/tools/carapace/carapace.spec b/anda/tools/carapace/carapace.spec index eda7fa0e4b..37fd09e871 100644 --- a/anda/tools/carapace/carapace.spec +++ b/anda/tools/carapace/carapace.spec @@ -1,7 +1,7 @@ %define debug_package %{nil} %global goipath github.com/carapace-sh/carapace-bin -Version: 1.7.0 +Version: 1.7.1 %gometa -f From 1d7f759bc3787acb59c478d51290148cc5fe6f27 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sat, 20 Jun 2026 19:04:06 +0000 Subject: [PATCH 15/68] bump: Arctis-Sound-Manager --- anda/apps/Arctis-Sound-Manager/Arctis-Sound-Manager.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/apps/Arctis-Sound-Manager/Arctis-Sound-Manager.spec b/anda/apps/Arctis-Sound-Manager/Arctis-Sound-Manager.spec index fb149eddc9..59683c95cd 100644 --- a/anda/apps/Arctis-Sound-Manager/Arctis-Sound-Manager.spec +++ b/anda/apps/Arctis-Sound-Manager/Arctis-Sound-Manager.spec @@ -4,7 +4,7 @@ %global arctis_sound_manager_services arctis-manager.service arctis-video-router.service arctis-gui.service Name: python-%{pypi_name} -Version: 1.1.80 +Version: 1.1.81 Release: 1%{?dist} Summary: GUI for SteelSeries Arctis headsets License: GPL-3.0-or-later From 465556af654be362f0a2412b9a3c6479a8041a39 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sat, 20 Jun 2026 23:08:57 +0000 Subject: [PATCH 16/68] bump: rom-properties MareTF yt-dlp-git --- anda/games/rom-properties/rom-properties.spec | 2 +- anda/tools/MareTF/MareTF.spec | 2 +- anda/tools/yt-dlp/yt-dlp-git.spec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/anda/games/rom-properties/rom-properties.spec b/anda/games/rom-properties/rom-properties.spec index 51a4f0790b..284c1eee4f 100644 --- a/anda/games/rom-properties/rom-properties.spec +++ b/anda/games/rom-properties/rom-properties.spec @@ -1,5 +1,5 @@ Name: rom-properties -Version: 2.7.1 +Version: 2.8 Release: 1%{?dist} Summary: File browser extension for managing video game ROM and disc images License: GPL-2.0-only diff --git a/anda/tools/MareTF/MareTF.spec b/anda/tools/MareTF/MareTF.spec index 123d95bee3..72abf71a90 100644 --- a/anda/tools/MareTF/MareTF.spec +++ b/anda/tools/MareTF/MareTF.spec @@ -1,7 +1,7 @@ %define debug_package %{nil} Name: MareTF -Version: 0.11.0 +Version: 0.12.0 Release: 1%{?dist} License: MIT Summary: A utility to create, edit, and display every type of VTF file ever made diff --git a/anda/tools/yt-dlp/yt-dlp-git.spec b/anda/tools/yt-dlp/yt-dlp-git.spec index d858fd0c66..1557627679 100644 --- a/anda/tools/yt-dlp/yt-dlp-git.spec +++ b/anda/tools/yt-dlp/yt-dlp-git.spec @@ -2,7 +2,7 @@ %global oldpkgname yt-dlp-nightly Name: yt-dlp-git -Version: 2026.06.18.220525 +Version: 2026.06.20.225939 Release: 1%{?dist} Summary: A command-line program to download videos from online video platforms From b9c22083ac97a7dfc8c02a9525d88fc69d9ecfba Mon Sep 17 00:00:00 2001 From: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> Date: Sun, 21 Jun 2026 05:58:26 +0200 Subject: [PATCH 17/68] add: ghc-fail (#13213) Signed-off-by: Owen-sz --- anda/langs/haskell/ghc-fail/anda.hcl | 5 ++ anda/langs/haskell/ghc-fail/ghc-fail.spec | 72 +++++++++++++++++++++++ anda/langs/haskell/ghc-fail/update.rhai | 1 + 3 files changed, 78 insertions(+) create mode 100644 anda/langs/haskell/ghc-fail/anda.hcl create mode 100644 anda/langs/haskell/ghc-fail/ghc-fail.spec create mode 100644 anda/langs/haskell/ghc-fail/update.rhai diff --git a/anda/langs/haskell/ghc-fail/anda.hcl b/anda/langs/haskell/ghc-fail/anda.hcl new file mode 100644 index 0000000000..d9fe1b487e --- /dev/null +++ b/anda/langs/haskell/ghc-fail/anda.hcl @@ -0,0 +1,5 @@ +project pkg { + rpm { + spec = "ghc-fail.spec" + } +} diff --git a/anda/langs/haskell/ghc-fail/ghc-fail.spec b/anda/langs/haskell/ghc-fail/ghc-fail.spec new file mode 100644 index 0000000000..cca9d62add --- /dev/null +++ b/anda/langs/haskell/ghc-fail/ghc-fail.spec @@ -0,0 +1,72 @@ +# generated by cabal-rpm-2.3.2 +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ + +%global pkg_name fail +%global pkgver %{pkg_name}-%{version} +%{?haskell_setup} + +Name: ghc-%{pkg_name} +Version: 4.9.0.0 +Release: 1%{?dist} +Summary: Forward-compatible MonadFail class + +License: BSD-3-Clause +URL: https://hackage.haskell.org/package/fail +# Begin cabal-rpm sources: +Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +# End cabal-rpm sources + +# Begin cabal-rpm deps: +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-Cabal-devel +# End cabal-rpm deps + +Packager: Owen Zimmerman + +%description +This package contains the "Control.Monad.Fail" module providing the + class +that became available in for older 'base' package versions. + +This package turns into an empty package when used with GHC versions which +already provide the "Control.Monad.Fail" module to make way for GHC's own +"Control.Monad.Fail" module. + + +%package devel +Summary: Haskell %{pkg_name} library development files +%if %{defined ghc_version} +Requires: ghc-compiler = %{ghc_version} +%endif + +%description devel +This package provides the Haskell %{pkg_name} library development files. + + +%prep +# Begin cabal-rpm setup: +%setup -q -n %{pkgver} +# End cabal-rpm setup + + +%build +# Begin cabal-rpm build: +%ghc_lib_build_without_haddock +# End cabal-rpm build + + +%install +# Begin cabal-rpm install +%ghc_lib_install -m +mv %{buildroot}%{_ghcdocdir}{,-devel} +# End cabal-rpm install + + +%files devel -f %{name}-devel.files +%license LICENSE + + +%changelog +* Sun Jun 21 2026 Owen Zimmerman - 4.9.0.0-1 +- Initial commit diff --git a/anda/langs/haskell/ghc-fail/update.rhai b/anda/langs/haskell/ghc-fail/update.rhai new file mode 100644 index 0000000000..1014d94332 --- /dev/null +++ b/anda/langs/haskell/ghc-fail/update.rhai @@ -0,0 +1 @@ +rpm.version(hackage("fail")); From 291f74daf0eac377afc950b078cb46ef2a4fbe2e Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sun, 21 Jun 2026 04:45:01 +0000 Subject: [PATCH 18/68] bump(nightly): mpv-nightly libsingularity zed-nightly v2ray-nightly v2ray-domain-list-community cloud-hypervisor-nightly --- anda/apps/mpv/mpv-nightly.spec | 4 ++-- .../desktops/singularity/libsingularity/libsingularity.spec | 4 ++-- anda/devs/zed/nightly/zed-nightly.spec | 4 ++-- anda/langs/go/v2ray/nightly/v2ray-nightly.spec | 4 ++-- .../v2ray-domain-list-community.spec | 6 +++--- .../cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec | 4 ++-- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/anda/apps/mpv/mpv-nightly.spec b/anda/apps/mpv/mpv-nightly.spec index 9e5f49f84d..710789ffef 100644 --- a/anda/apps/mpv/mpv-nightly.spec +++ b/anda/apps/mpv/mpv-nightly.spec @@ -1,9 +1,9 @@ # Disable X11 for RHEL 10+ %bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10] -%global commit 2d5dfb343aeac72e4ee7303dbf34347a0ff4425d +%global commit efe8644a93aacf2190ed162207731d0c3beac227 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20260618 +%global commit_date 20260621 %global ver 0.41.0 Name: mpv-nightly diff --git a/anda/desktops/singularity/libsingularity/libsingularity.spec b/anda/desktops/singularity/libsingularity/libsingularity.spec index dfaf618419..7fe6a95142 100644 --- a/anda/desktops/singularity/libsingularity/libsingularity.spec +++ b/anda/desktops/singularity/libsingularity/libsingularity.spec @@ -1,5 +1,5 @@ -%global commit 51ad7203edccbf9c40b68928cb5fe8ae1298a5be -%global commit_date 20260619 +%global commit a7e59124efa6eb174e7bc9b4dfa9e1ea5362669e +%global commit_date 20260621 %global shortcommit %(c=%{commit}; echo ${c:0:7}) Name: libsingularity diff --git a/anda/devs/zed/nightly/zed-nightly.spec b/anda/devs/zed/nightly/zed-nightly.spec index 4bd7a37fe3..243cb45589 100644 --- a/anda/devs/zed/nightly/zed-nightly.spec +++ b/anda/devs/zed/nightly/zed-nightly.spec @@ -1,6 +1,6 @@ -%global commit 9f56a4df515c9989bf0baa71c2150408cce0608e +%global commit 50e6411571398f007863dfa8fc3a5e2737d7290a %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20260620 +%global commit_date 20260621 %global ver 1.9.0 %bcond_with check diff --git a/anda/langs/go/v2ray/nightly/v2ray-nightly.spec b/anda/langs/go/v2ray/nightly/v2ray-nightly.spec index 13547bcdf3..2407969612 100644 --- a/anda/langs/go/v2ray/nightly/v2ray-nightly.spec +++ b/anda/langs/go/v2ray/nightly/v2ray-nightly.spec @@ -1,7 +1,7 @@ -%global commit 63f97f5a5616bf008033225461fce5686a157da6 +%global commit c1523c4578f8aacc4cc232d1eac9c54b0341ad38 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global ver v5.49.0 -%global commit_date 20260611 +%global commit_date 20260621 %global goipath github.com/v2fly/v2ray-core Version: %{ver}^%{commit_date}git.%{shortcommit} diff --git a/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec b/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec index 9cbc6fcd5b..924f391e1d 100644 --- a/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec +++ b/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec @@ -1,7 +1,7 @@ -%global commit dccbbd62a026752603f3205a12de0f2ff7ff2ab0 +%global commit 794e0216c9eff1f5c93b225d1d45b280c9c4564f %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global ver 20260620002456 -%global commit_date 20260620 +%global ver 20260621035818 +%global commit_date 20260621 Name: v2ray-domain-list-community Version: %{ver}^%{commit_date}git.%{shortcommit} diff --git a/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec b/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec index e295ccad97..af21f0268c 100644 --- a/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec +++ b/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec @@ -1,5 +1,5 @@ -%global commit b0610f3e9109274730d6b7044f6d7b6603eaac3f -%global commit_date 20260620 +%global commit dd2f18e73e72813d24b5df0bf7a14ab5b43c44c7 +%global commit_date 20260621 %global shortcommit %(c=%{commit}; echo ${c:0:7}) Name: cloud-hypervisor-nightly From 05d1eb5a4af0baee35cb139eaa1e2966664f84d3 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sun, 21 Jun 2026 05:24:43 +0000 Subject: [PATCH 19/68] bump: inputplumber zig-master-bootstrap yt-dlp-git --- anda/games/inputplumber/inputplumber.spec | 2 +- anda/langs/zig/bootstrap/setup.sh | 2 +- anda/langs/zig/bootstrap/zig-master-bootstrap.spec | 2 +- anda/tools/yt-dlp/yt-dlp-git.spec | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/anda/games/inputplumber/inputplumber.spec b/anda/games/inputplumber/inputplumber.spec index c61a434f6b..4385f0ae3f 100644 --- a/anda/games/inputplumber/inputplumber.spec +++ b/anda/games/inputplumber/inputplumber.spec @@ -1,7 +1,7 @@ %global __brp_mangle_shebangs %{nil} Name: inputplumber -Version: 0.77.6 +Version: 0.77.7 Release: 1%{?dist} Summary: Open source input router and remapper daemon for Linux License: GPL-3.0-or-later diff --git a/anda/langs/zig/bootstrap/setup.sh b/anda/langs/zig/bootstrap/setup.sh index e3ba71295b..e9676b2e1d 100755 --- a/anda/langs/zig/bootstrap/setup.sh +++ b/anda/langs/zig/bootstrap/setup.sh @@ -1,6 +1,6 @@ #!/usr/bin/bash -version=0.17.0-dev.902+7255f3e72 +version=0.17.0-dev.931+84f84267c mirrors=() diff --git a/anda/langs/zig/bootstrap/zig-master-bootstrap.spec b/anda/langs/zig/bootstrap/zig-master-bootstrap.spec index 5bf6952dc0..b91f52413a 100644 --- a/anda/langs/zig/bootstrap/zig-master-bootstrap.spec +++ b/anda/langs/zig/bootstrap/zig-master-bootstrap.spec @@ -6,7 +6,7 @@ %define llvm_compat 22 %endif %global llvm_version 22.0.0 -%global ver 0.17.0-dev.902+7255f3e72 +%global ver 0.17.0-dev.931+84f84267c %bcond bootstrap 1 %bcond docs %{without bootstrap} %bcond test 1 diff --git a/anda/tools/yt-dlp/yt-dlp-git.spec b/anda/tools/yt-dlp/yt-dlp-git.spec index 1557627679..ec1b8dc484 100644 --- a/anda/tools/yt-dlp/yt-dlp-git.spec +++ b/anda/tools/yt-dlp/yt-dlp-git.spec @@ -2,7 +2,7 @@ %global oldpkgname yt-dlp-nightly Name: yt-dlp-git -Version: 2026.06.20.225939 +Version: 2026.06.20.231202 Release: 1%{?dist} Summary: A command-line program to download videos from online video platforms From d22f0c1bed305b7c34defd83cc4c58701b7785cb Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sun, 21 Jun 2026 08:15:01 +0000 Subject: [PATCH 20/68] bump(branch): zig-master --- anda/langs/zig/master/zig-master.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/langs/zig/master/zig-master.spec b/anda/langs/zig/master/zig-master.spec index 7ce8a035b8..ce0fb6b883 100644 --- a/anda/langs/zig/master/zig-master.spec +++ b/anda/langs/zig/master/zig-master.spec @@ -18,7 +18,7 @@ %global zig_cache_dir %{builddir}/zig-cache Name: zig-master -Version: 0.17.0~dev.902+7255f3e72 +Version: 0.17.0~dev.931+84f84267c Release: 2%{?dist} Summary: Master builds of the Zig language License: MIT AND NCSA AND LGPL-2.1-or-later AND LGPL-2.1-or-later WITH GCC-exception-2.0 AND GPL-2.0-or-later AND GPL-2.0-or-later WITH GCC-exception-2.0 AND BSD-3-Clause AND Inner-Net-2.0 AND ISC AND LicenseRef-Fedora-Public-Domain AND GFDL-1.1-or-later AND ZPL-2.1 From c86b2a81c235e4986a57a8e2f5f48a94ad1cb653 Mon Sep 17 00:00:00 2001 From: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> Date: Sun, 21 Jun 2026 11:21:31 +0200 Subject: [PATCH 21/68] add: ghc-HCodecs (#13214) Signed-off-by: Owen-sz --- anda/langs/haskell/ghc-HCodecs/anda.hcl | 5 + .../haskell/ghc-HCodecs/ghc-HCodecs.spec | 128 ++++++++++++++++++ anda/langs/haskell/ghc-HCodecs/update.rhai | 1 + 3 files changed, 134 insertions(+) create mode 100644 anda/langs/haskell/ghc-HCodecs/anda.hcl create mode 100644 anda/langs/haskell/ghc-HCodecs/ghc-HCodecs.spec create mode 100644 anda/langs/haskell/ghc-HCodecs/update.rhai diff --git a/anda/langs/haskell/ghc-HCodecs/anda.hcl b/anda/langs/haskell/ghc-HCodecs/anda.hcl new file mode 100644 index 0000000000..5820c659dd --- /dev/null +++ b/anda/langs/haskell/ghc-HCodecs/anda.hcl @@ -0,0 +1,5 @@ +project pkg { + rpm { + spec = "ghc-HCodecs.spec" + } +} diff --git a/anda/langs/haskell/ghc-HCodecs/ghc-HCodecs.spec b/anda/langs/haskell/ghc-HCodecs/ghc-HCodecs.spec new file mode 100644 index 0000000000..f007df6bb7 --- /dev/null +++ b/anda/langs/haskell/ghc-HCodecs/ghc-HCodecs.spec @@ -0,0 +1,128 @@ +# generated by cabal-rpm-2.3.2 +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ + +%global pkg_name HCodecs +%global pkgver %{pkg_name}-%{version} +%{?haskell_setup} + +# testsuite missing deps: QuickCheck fail random semigroups + +Name: ghc-%{pkg_name} +Version: 0.5.2 +Release: 1%{?dist} +Summary: A library to read, write and manipulate MIDI, WAVE, and SoundFont2 files + +License: BSD-3-Clause +URL: https://hackage.haskell.org/package/HCodecs +# Begin cabal-rpm sources: +Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +# End cabal-rpm sources + +# Begin cabal-rpm deps: +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-QuickCheck-devel +BuildRequires: ghc-array-devel +BuildRequires: ghc-base-devel +BuildRequires: ghc-bytestring-devel +BuildRequires: ghc-fail-devel +BuildRequires: ghc-random-devel +BuildRequires: ghc-semigroups-devel +%if %{with ghc_prof} +BuildRequires: ghc-QuickCheck-prof +BuildRequires: ghc-array-prof +BuildRequires: ghc-base-prof +BuildRequires: ghc-bytestring-prof +BuildRequires: ghc-random-prof +BuildRequires: ghc-semigroups-prof +%endif +# End cabal-rpm deps + +Packager: Owen Zimmerman + +%description +The library provides functions to read, write and manipulate MIDI, WAVE and +SoundFont2 multimedia files. It is written entirely in Haskell (without any +FFI). It uses efficient parsing and building combinators for binary data stored +in ByteStrings (based on the one in 'binary' package). + +Correctness of significant parts of the library has been validated with +QuickCheck and Haskell Program Coverage (HPC) tool-kits. + + +%package devel +Summary: Haskell %{pkg_name} library development files +Provides: %{name}-static = %{version}-%{release} +Provides: %{name}-static%{?_isa} = %{version}-%{release} +%if %{defined ghc_version} +Requires: ghc-compiler = %{ghc_version} +%endif +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +This package provides the Haskell %{pkg_name} library development files. + + +%if %{with haddock} +%package doc +Summary: Haskell %{pkg_name} library documentation +BuildArch: noarch +Requires: ghc-filesystem + +%description doc +This package provides the Haskell %{pkg_name} library documentation. +%endif + + +%if %{with ghc_prof} +%package prof +Summary: Haskell %{pkg_name} profiling library +Requires: %{name}-devel%{?_isa} = %{version}-%{release} +Supplements: (%{name}-devel and ghc-prof) + +%description prof +This package provides the Haskell %{pkg_name} profiling library. +%endif + + +%prep +# Begin cabal-rpm setup: +%setup -q -n %{pkgver} +# End cabal-rpm setup + + +%build +# Begin cabal-rpm build: +%ghc_lib_build +# End cabal-rpm build + + +%install +# Begin cabal-rpm install +%ghc_lib_install +# End cabal-rpm install + + +%files -f %{name}.files +# Begin cabal-rpm files: +%license LICENSE +# End cabal-rpm files + + +%files devel -f %{name}-devel.files + + +%if %{with haddock} +%files doc -f %{name}-doc.files +%license LICENSE +%endif + + +%if %{with ghc_prof} +%files prof -f %{name}-prof.files +%endif + + +%changelog +* Sun Jun 21 2026 Owen Zimmerman - 0.5.2-1 +- Inital commit diff --git a/anda/langs/haskell/ghc-HCodecs/update.rhai b/anda/langs/haskell/ghc-HCodecs/update.rhai new file mode 100644 index 0000000000..eee19ae291 --- /dev/null +++ b/anda/langs/haskell/ghc-HCodecs/update.rhai @@ -0,0 +1 @@ +rpm.version(hackage("HCodecs")); From 3cfc64fd2c8629eca6694beea1295160527b41d6 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sun, 21 Jun 2026 11:52:27 +0000 Subject: [PATCH 22/68] bump: muon --- anda/buildsys/muon/muon.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/buildsys/muon/muon.spec b/anda/buildsys/muon/muon.spec index 5a6538904d..1475ff9e69 100644 --- a/anda/buildsys/muon/muon.spec +++ b/anda/buildsys/muon/muon.spec @@ -1,6 +1,6 @@ Name: muon -Version: 0.5.0 -Release: 4%{?dist} +Version: 0.6.0 +Release: 1%{?dist} Summary: A meson-compatible build system # https://git.sr.ht/~lattis/muon/tree/master/item/LICENSES From bd421edfc0e1199642f7258fd2d5a1c31c70d576 Mon Sep 17 00:00:00 2001 From: madomado Date: Sun, 21 Jun 2026 22:52:36 +0800 Subject: [PATCH 23/68] add: source-han-{sans,serif} (#13193) * add: source-han-{sans,serif} close #8682 * frogt * a * OTC/ * bruh I forgot to add -fonts suffix * feat: add variable fonts as subpkgs * why doesn't ci run * hah? * a * uyes * no hw --- anda/fonts/source-han-sans/anda.hcl | 9 ++ .../source-han-sans-fonts.spec | 149 ++++++++++++++++++ anda/fonts/source-han-sans/update.rhai | 1 + anda/fonts/source-han-serif/anda.hcl | 9 ++ .../source-han-serif-fonts.spec | 119 ++++++++++++++ anda/fonts/source-han-serif/update.rhai | 1 + 6 files changed, 288 insertions(+) create mode 100644 anda/fonts/source-han-sans/anda.hcl create mode 100644 anda/fonts/source-han-sans/source-han-sans-fonts.spec create mode 100644 anda/fonts/source-han-sans/update.rhai create mode 100644 anda/fonts/source-han-serif/anda.hcl create mode 100644 anda/fonts/source-han-serif/source-han-serif-fonts.spec create mode 100644 anda/fonts/source-han-serif/update.rhai diff --git a/anda/fonts/source-han-sans/anda.hcl b/anda/fonts/source-han-sans/anda.hcl new file mode 100644 index 0000000000..fdf4d3eb8d --- /dev/null +++ b/anda/fonts/source-han-sans/anda.hcl @@ -0,0 +1,9 @@ +project pkg { + arches = ["x86_64"] + rpm { + spec = "source-han-sans-fonts.spec" + } + labels { + weekly = 6 + } +} diff --git a/anda/fonts/source-han-sans/source-han-sans-fonts.spec b/anda/fonts/source-han-sans/source-han-sans-fonts.spec new file mode 100644 index 0000000000..ee5e7198d9 --- /dev/null +++ b/anda/fonts/source-han-sans/source-han-sans-fonts.spec @@ -0,0 +1,149 @@ +%define debug_package %nil +%global ver 2.005R + +Name: source-han-sans-fonts +Version: %(echo %ver | sed -E 's/R$//') +Release: 1%?dist +Summary: Source Han Sans | 思源黑体 | 思源黑體 | 思源黑體 香港 | 源ノ角ゴシック | 본고딕 +License: OFL-1.1 +URL: https://github.com/adobe-fonts/source-han-sans +Source0: %url/releases/download/%ver/03_SourceHanSansOTC.zip +Source1: %url/releases/download/%ver/02_SourceHanSans-VF.zip +Packager: madonuko +BuildArch: noarch +BuildRequires: unzip + +%description +Source Han Sans is a set of OpenType Pan-CJK fonts. + +This package ships the Static OTC versions. + +%files +%license LICENSE.txt +%_datadir/fonts/%name/ + + +%dnl DO NOT CHANGE THIS TO `%global`, I REPEAT, DO NOT USE `%global`, OTHERWISE MACROS LIKE `%{-h}` DO NOT EXPAND. +%dnl Parameterized macros cannot be defined using `%global`. Guess I'm today years old. — mado +%dnl ╭── %define fpkg(vhs) +%define fpkg(vhs) \ +%package %{-h:hw-}%{-v:vf-}%{-s:subset-}%1 \ +Summary: %name: %{-h:half-width }%{-v:variable }%{-s:subset }%{upper:%1} font files \ + \ +%description %{-h:hw-}%{-v:vf-}%{-s:subset-}%1 \ +This package provides a specific font type of %name. \ +%{-v:VF: variable font: Variable font weights are supported. \ +}%{-h:HW: half-width: some proportional punctuations are turned into half-width. \ +The list can be seen here, at page 19~20, section "Proportional & Half-Width CJK Punctuation": \ +https://github.com/adobe-fonts/source-han-sans/blob/release/SourceHanSansReadMe.pdf \ +}%{-s:Subset: The fonts are split into regional-specific subset fonts. \ +} \ + \ +%files %{-h:hw-}%{-v:vf-}%{-s:subset-}%1 \ +%license LICENSE.txt +%dnl ╰── %define fpkg(vhs) + +%fpkg -v otc +%_datadir/fonts/%name/SourceHanSans-VF.*.ttc + +%fpkg -vh otc +%_datadir/fonts/%name/SourceHanSansHW-VF.*.ttc + +%fpkg -v otf +%_datadir/fonts/%name/SourceHanSans-VF.otf +%_datadir/fonts/%name/SourceHanSansHC-VF.otf +%_datadir/fonts/%name/SourceHanSansK-VF.otf +%_datadir/fonts/%name/SourceHanSansSC-VF.otf +%_datadir/fonts/%name/SourceHanSansTC-VF.otf + +%fpkg -vh otf +%_datadir/fonts/%name/SourceHanSansHW-VF.otf +%_datadir/fonts/%name/SourceHanSansHWHC-VF.otf +%_datadir/fonts/%name/SourceHanSansHWK-VF.otf +%_datadir/fonts/%name/SourceHanSansHWSC-VF.otf +%_datadir/fonts/%name/SourceHanSansHWTC-VF.otf + +%fpkg -vs otf +%_datadir/fonts/%name/SourceHanSansCN-VF.otf +%_datadir/fonts/%name/SourceHanSansHK-VF.otf +%_datadir/fonts/%name/SourceHanSansJP-VF.otf +%_datadir/fonts/%name/SourceHanSansKR-VF.otf +%_datadir/fonts/%name/SourceHanSansTW-VF.otf + +%fpkg -v ttf +%_datadir/fonts/%name/SourceHanSans-VF.ttf +%_datadir/fonts/%name/SourceHanSansHC-VF.ttf +%_datadir/fonts/%name/SourceHanSansK-VF.ttf +%_datadir/fonts/%name/SourceHanSansSC-VF.ttf +%_datadir/fonts/%name/SourceHanSansTC-VF.ttf + +%fpkg -vh ttf +%_datadir/fonts/%name/SourceHanSansHW-VF.ttf +%_datadir/fonts/%name/SourceHanSansHWHC-VF.ttf +%_datadir/fonts/%name/SourceHanSansHWK-VF.ttf +%_datadir/fonts/%name/SourceHanSansHWSC-VF.ttf +%_datadir/fonts/%name/SourceHanSansHWTC-VF.ttf + +%fpkg -vs ttf +%_datadir/fonts/%name/SourceHanSansCN-VF.ttf +%_datadir/fonts/%name/SourceHanSansHK-VF.ttf +%_datadir/fonts/%name/SourceHanSansJP-VF.ttf +%_datadir/fonts/%name/SourceHanSansKR-VF.ttf +%_datadir/fonts/%name/SourceHanSansTW-VF.ttf + +%fpkg -v otf-woff2 +%_datadir/fonts/%name/SourceHanSans-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSansHC-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSansK-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSansSC-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSansTC-VF.otf.woff2 + +%fpkg -vh otf-woff2 +%_datadir/fonts/%name/SourceHanSansHW-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSansHWHC-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSansHWK-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSansHWSC-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSansHWTC-VF.otf.woff2 + +%fpkg -vs otf-woff2 +%_datadir/fonts/%name/SourceHanSansCN-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSansHK-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSansJP-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSansKR-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSansTW-VF.otf.woff2 + +%fpkg -v ttf-woff2 +%_datadir/fonts/%name/SourceHanSans-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSansHC-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSansK-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSansSC-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSansTC-VF.ttf.woff2 + +%fpkg -vh ttf-woff2 +%_datadir/fonts/%name/SourceHanSansHW-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSansHWHC-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSansHWK-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSansHWSC-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSansHWTC-VF.ttf.woff2 + +%fpkg -vs ttf-woff2 +%_datadir/fonts/%name/SourceHanSansCN-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSansHK-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSansJP-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSansKR-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSansTW-VF.ttf.woff2 + + +%prep +unzip %{S:0} +yes | unzip %{S:1} + +%build + +%install +install -Dpm644 OTC/SourceHanSans-*.ttc -t %buildroot%_datadir/fonts/%name +install -Dpm644 Variable/OTC/*.* -t %buildroot%_datadir/fonts/%name +install -Dpm644 Variable/{,WOFF2/}{OTF,TTF}/{,HW/,Subset/}*.* -t %buildroot%_datadir/fonts/%name +%changelog +* Sat Jun 20 2026 madonuko - 2.005-1 +- Initial package. diff --git a/anda/fonts/source-han-sans/update.rhai b/anda/fonts/source-han-sans/update.rhai new file mode 100644 index 0000000000..fe37fab1a5 --- /dev/null +++ b/anda/fonts/source-han-sans/update.rhai @@ -0,0 +1 @@ +rpm.global("ver", gh("adobe-fonts/source-han-sans")); diff --git a/anda/fonts/source-han-serif/anda.hcl b/anda/fonts/source-han-serif/anda.hcl new file mode 100644 index 0000000000..1293386323 --- /dev/null +++ b/anda/fonts/source-han-serif/anda.hcl @@ -0,0 +1,9 @@ +project pkg { + arches = ["x86_64"] + rpm { + spec = "source-han-serif-fonts.spec" + } + labels { + weekly = 6 + } +} diff --git a/anda/fonts/source-han-serif/source-han-serif-fonts.spec b/anda/fonts/source-han-serif/source-han-serif-fonts.spec new file mode 100644 index 0000000000..3feed92b3e --- /dev/null +++ b/anda/fonts/source-han-serif/source-han-serif-fonts.spec @@ -0,0 +1,119 @@ +%define debug_package %nil +%global ver 2.003R + +Name: source-han-serif-fonts +Version: %(echo %ver | sed -E 's/R$//') +Release: 1%?dist +Summary: Source Han Serif | 思源宋体 | 思源宋體 | 思源宋體 香港 | 源ノ明朝 | 본명조 +License: OFL-1.1 +URL: https://github.com/adobe-fonts/source-han-serif +Source0: %url/releases/download/%ver/03_SourceHanSerifOTC.zip +Source1: %url/releases/download/%ver/02_SourceHanSerif-VF.zip +Packager: madonuko +BuildArch: noarch +BuildRequires: unzip + +%description +Source Han Serif is a set of OpenType Pan-CJK fonts. + +This package ships the Static OTC versions. + +%files +%license LICENSE.txt +%_datadir/fonts/%name/ + + +%dnl DO NOT CHANGE THIS TO `%global`, I REPEAT, DO NOT USE `%global`, OTHERWISE MACROS LIKE `%{-h}` DO NOT EXPAND. +%dnl Parameterized macros cannot be defined using `%global`. Guess I'm today years old. — mado +%dnl ╭── %define fpkg(vhs) +%define fpkg(vhs) \ +%package %{-h:hw-}%{-v:vf-}%{-s:subset-}%1 \ +Summary: %name: %{-h:half-width }%{-v:variable }%{-s:subset }%{upper:%1} font files \ + \ +%description %{-h:hw-}%{-v:vf-}%{-s:subset-}%1 \ +This package provides a specific font type of %name. \ +%{-v:VF: variable font: Variable font weights are supported. \ +}%{-h:HW: half-width: some proportional punctuations are turned into half-width. \ +The list can be seen here, at page 19~20, section "Proportional & Half-Width CJK Punctuation": \ +https://github.com/adobe-fonts/source-han-sans/blob/release/SourceHanSansReadMe.pdf \ +}%{-s:Subset: The fonts are split into regional-specific subset fonts. \ +} \ + \ +%files %{-h:hw-}%{-v:vf-}%{-s:subset-}%1 \ +%license LICENSE.txt +%dnl ╰── %define fpkg(vhs) + +%fpkg -v otc +%_datadir/fonts/%name/SourceHanSerif-VF.*.ttc + +%fpkg -v otf +%_datadir/fonts/%name/SourceHanSerif-VF.otf +%_datadir/fonts/%name/SourceHanSerifHC-VF.otf +%_datadir/fonts/%name/SourceHanSerifK-VF.otf +%_datadir/fonts/%name/SourceHanSerifSC-VF.otf +%_datadir/fonts/%name/SourceHanSerifTC-VF.otf + +%fpkg -vs otf +%_datadir/fonts/%name/SourceHanSerifCN-VF.otf +%_datadir/fonts/%name/SourceHanSerifHK-VF.otf +%_datadir/fonts/%name/SourceHanSerifJP-VF.otf +%_datadir/fonts/%name/SourceHanSerifKR-VF.otf +%_datadir/fonts/%name/SourceHanSerifTW-VF.otf + +%fpkg -v ttf +%_datadir/fonts/%name/SourceHanSerif-VF.ttf +%_datadir/fonts/%name/SourceHanSerifHC-VF.ttf +%_datadir/fonts/%name/SourceHanSerifK-VF.ttf +%_datadir/fonts/%name/SourceHanSerifSC-VF.ttf +%_datadir/fonts/%name/SourceHanSerifTC-VF.ttf + +%fpkg -vs ttf +%_datadir/fonts/%name/SourceHanSerifCN-VF.ttf +%_datadir/fonts/%name/SourceHanSerifHK-VF.ttf +%_datadir/fonts/%name/SourceHanSerifJP-VF.ttf +%_datadir/fonts/%name/SourceHanSerifKR-VF.ttf +%_datadir/fonts/%name/SourceHanSerifTW-VF.ttf + +%fpkg -v otf-woff2 +%_datadir/fonts/%name/SourceHanSerif-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSerifHC-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSerifK-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSerifSC-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSerifTC-VF.otf.woff2 + +%fpkg -vs otf-woff2 +%_datadir/fonts/%name/SourceHanSerifCN-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSerifHK-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSerifJP-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSerifKR-VF.otf.woff2 +%_datadir/fonts/%name/SourceHanSerifTW-VF.otf.woff2 + +%fpkg -v ttf-woff2 +%_datadir/fonts/%name/SourceHanSerif-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSerifHC-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSerifK-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSerifSC-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSerifTC-VF.ttf.woff2 + +%fpkg -vs ttf-woff2 +%_datadir/fonts/%name/SourceHanSerifCN-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSerifHK-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSerifJP-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSerifKR-VF.ttf.woff2 +%_datadir/fonts/%name/SourceHanSerifTW-VF.ttf.woff2 + + +%prep +unzip %{S:0} +yes | unzip %{S:1} + +%build + +%install +install -Dpm644 OTC/SourceHanSerif-*.ttc -t %buildroot%_datadir/fonts/%name +install -Dpm644 Variable/OTC/*.* -t %buildroot%_datadir/fonts/%name +install -Dpm644 Variable/{,WOFF2/}{OTF,TTF}/{,Subset/}*.* -t %buildroot%_datadir/fonts/%name + +%changelog +* Sat Jun 20 2026 madonuko - 2.005R-1 +- Initial package. diff --git a/anda/fonts/source-han-serif/update.rhai b/anda/fonts/source-han-serif/update.rhai new file mode 100644 index 0000000000..c313573e4d --- /dev/null +++ b/anda/fonts/source-han-serif/update.rhai @@ -0,0 +1 @@ +rpm.version(gh("adobe-fonts/source-han-serif")); From 220c07988ffaafaf65fcbc7f7b088db0817e4edc Mon Sep 17 00:00:00 2001 From: madomado Date: Sun, 21 Jun 2026 22:54:36 +0800 Subject: [PATCH 24/68] fix(zed-nightly): no bdep openssl-devel-engine (#13190) --- anda/devs/zed/nightly/zed-nightly.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/anda/devs/zed/nightly/zed-nightly.spec b/anda/devs/zed/nightly/zed-nightly.spec index 243cb45589..b9e5541d97 100644 --- a/anda/devs/zed/nightly/zed-nightly.spec +++ b/anda/devs/zed/nightly/zed-nightly.spec @@ -51,9 +51,6 @@ BuildRequires: fontconfig-devel BuildRequires: wayland-devel BuildRequires: libxkbcommon-x11-devel BuildRequires: openssl-devel -%if 0%{?fedora} -BuildRequires: openssl-devel-engine -%endif BuildRequires: libzstd-devel BuildRequires: perl-FindBin BuildRequires: perl-IPC-Cmd From 5e480af498cd43b6a2a994538f924f1f31d16995 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sun, 21 Jun 2026 16:12:38 +0000 Subject: [PATCH 25/68] bump: rpcs3 --- anda/games/rpcs3/rpcs3.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/games/rpcs3/rpcs3.spec b/anda/games/rpcs3/rpcs3.spec index d5e2ad7386..8b2d0e23aa 100644 --- a/anda/games/rpcs3/rpcs3.spec +++ b/anda/games/rpcs3/rpcs3.spec @@ -9,8 +9,8 @@ # GLIBCXX_ASSERTIONS is known to break RPCS3 %global build_cflags %(echo "%{__build_flags_lang_c}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags} %global build_cxxflags %(echo "%{__build_flags_lang_cxx}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags} -%global commit e32d19ffac500c6194f93b0338a4a64c51399b38 -%global ver 0.0.41-19499 +%global commit efc9a1a6686368e35578715969ce69b3bee5286c +%global ver 0.0.41-19501 Name: rpcs3 Version: %(echo %{ver} | sed 's/-/^/g') From 5470dc4fb2bce964b9397f41ef3cb3890a486be9 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sun, 21 Jun 2026 17:56:05 +0000 Subject: [PATCH 26/68] bump: kvrocks rpcs3 surge --- anda/devs/kvrocks/kvrocks.spec | 4 ++-- anda/games/rpcs3/rpcs3.spec | 4 ++-- anda/tools/surge/surge.spec | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/anda/devs/kvrocks/kvrocks.spec b/anda/devs/kvrocks/kvrocks.spec index eac6b8437d..594e6a14e8 100644 --- a/anda/devs/kvrocks/kvrocks.spec +++ b/anda/devs/kvrocks/kvrocks.spec @@ -1,6 +1,6 @@ Name: kvrocks -Version: 2.15.0 -Release: 1%?dist +Version: 2.16.0 +Release: 1%{?dist} Summary: Distributed key value NoSQL database that uses RocksDB License: Apache-2.0 URL: https://kvrocks.apache.org/ diff --git a/anda/games/rpcs3/rpcs3.spec b/anda/games/rpcs3/rpcs3.spec index 8b2d0e23aa..24daa7b07f 100644 --- a/anda/games/rpcs3/rpcs3.spec +++ b/anda/games/rpcs3/rpcs3.spec @@ -9,8 +9,8 @@ # GLIBCXX_ASSERTIONS is known to break RPCS3 %global build_cflags %(echo "%{__build_flags_lang_c}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags} %global build_cxxflags %(echo "%{__build_flags_lang_cxx}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags} -%global commit efc9a1a6686368e35578715969ce69b3bee5286c -%global ver 0.0.41-19501 +%global commit 2af7b58ce44a3b2bf2764c4f913e87aa5a2e2023 +%global ver 0.0.41-19502 Name: rpcs3 Version: %(echo %{ver} | sed 's/-/^/g') diff --git a/anda/tools/surge/surge.spec b/anda/tools/surge/surge.spec index 948060cfc8..e8081765e9 100644 --- a/anda/tools/surge/surge.spec +++ b/anda/tools/surge/surge.spec @@ -1,5 +1,5 @@ %global goipath github.com/surge-downloader/surge -Version: 0.9.0 +Version: 0.10.0 %gometa From 831d059df25cf04d9cdf522d22e6be656fbf3f98 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sun, 21 Jun 2026 19:43:54 +0000 Subject: [PATCH 27/68] bump: rpcs3 --- anda/games/rpcs3/rpcs3.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/games/rpcs3/rpcs3.spec b/anda/games/rpcs3/rpcs3.spec index 24daa7b07f..9f18d8f1fd 100644 --- a/anda/games/rpcs3/rpcs3.spec +++ b/anda/games/rpcs3/rpcs3.spec @@ -9,8 +9,8 @@ # GLIBCXX_ASSERTIONS is known to break RPCS3 %global build_cflags %(echo "%{__build_flags_lang_c}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags} %global build_cxxflags %(echo "%{__build_flags_lang_cxx}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags} -%global commit 2af7b58ce44a3b2bf2764c4f913e87aa5a2e2023 -%global ver 0.0.41-19502 +%global commit c7478d6dcc3b5e5303a91a107b6a393e79c0e7cb +%global ver 0.0.41-19507 Name: rpcs3 Version: %(echo %{ver} | sed 's/-/^/g') From 9a2ebce47bdef991ccc7e600c655309b55642952 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sun, 21 Jun 2026 20:59:06 +0000 Subject: [PATCH 28/68] bump: pkgcore vicinae --- anda/langs/python/pkgcore/pkgcore.spec | 2 +- anda/system/vicinae/vicinae.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/langs/python/pkgcore/pkgcore.spec b/anda/langs/python/pkgcore/pkgcore.spec index cddc25e169..aabb4daa3e 100644 --- a/anda/langs/python/pkgcore/pkgcore.spec +++ b/anda/langs/python/pkgcore/pkgcore.spec @@ -2,7 +2,7 @@ %global _desc A framework for package management. Name: python-%{pypi_name} -Version: 0.12.34 +Version: 0.12.35 Release: 1%{?dist} Summary: A framework for package management License: BSD-3-Clause diff --git a/anda/system/vicinae/vicinae.spec b/anda/system/vicinae/vicinae.spec index e2244f7011..0a11809ff5 100644 --- a/anda/system/vicinae/vicinae.spec +++ b/anda/system/vicinae/vicinae.spec @@ -6,7 +6,7 @@ Name: vicinae License: GPL-3.0-or-later -Version: 0.21.7 +Version: 0.22.0 Release: 1%{?dist} URL: https://docs.vicinae.com Source: https://github.com/vicinaehq/%{name}/archive/refs/tags/v%{version}.tar.gz From 9213a7f410e7b37c2a07936b0728535c365ad43a Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sun, 21 Jun 2026 22:20:30 +0000 Subject: [PATCH 29/68] bump: vgmstream --- anda/multimedia/vgmstream/vgmstream.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/multimedia/vgmstream/vgmstream.spec b/anda/multimedia/vgmstream/vgmstream.spec index c4227f10d9..2c617d3092 100644 --- a/anda/multimedia/vgmstream/vgmstream.spec +++ b/anda/multimedia/vgmstream/vgmstream.spec @@ -1,6 +1,6 @@ -%global commit a9bb4b886b493fb22b6b230946a720bc1173af23 +%global commit 003f0869e0f0746ac3d9a0f5f32d07d81a45f165 %global shortcommit %{sub %{commit} 1 7} -%global commit_date 20260620 +%global commit_date 20260621 Name: vgmstream Version: 0~%{commit_date}git.%shortcommit From 93c8b1dc06cae795ad47b02e87ba53e092dbde89 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sun, 21 Jun 2026 23:48:29 +0000 Subject: [PATCH 30/68] bump: zig-master-bootstrap fuc yt-dlp-git --- anda/langs/zig/bootstrap/setup.sh | 2 +- anda/langs/zig/bootstrap/zig-master-bootstrap.spec | 2 +- anda/tools/fuc/fuc.spec | 4 ++-- anda/tools/yt-dlp/yt-dlp-git.spec | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/anda/langs/zig/bootstrap/setup.sh b/anda/langs/zig/bootstrap/setup.sh index e9676b2e1d..9d33a54769 100755 --- a/anda/langs/zig/bootstrap/setup.sh +++ b/anda/langs/zig/bootstrap/setup.sh @@ -1,6 +1,6 @@ #!/usr/bin/bash -version=0.17.0-dev.931+84f84267c +version=0.17.0-dev.947+36069a2a7 mirrors=() diff --git a/anda/langs/zig/bootstrap/zig-master-bootstrap.spec b/anda/langs/zig/bootstrap/zig-master-bootstrap.spec index b91f52413a..b1deaef036 100644 --- a/anda/langs/zig/bootstrap/zig-master-bootstrap.spec +++ b/anda/langs/zig/bootstrap/zig-master-bootstrap.spec @@ -6,7 +6,7 @@ %define llvm_compat 22 %endif %global llvm_version 22.0.0 -%global ver 0.17.0-dev.931+84f84267c +%global ver 0.17.0-dev.947+36069a2a7 %bcond bootstrap 1 %bcond docs %{without bootstrap} %bcond test 1 diff --git a/anda/tools/fuc/fuc.spec b/anda/tools/fuc/fuc.spec index 4188f7770a..252244dd69 100644 --- a/anda/tools/fuc/fuc.spec +++ b/anda/tools/fuc/fuc.spec @@ -1,8 +1,8 @@ %global debug_package %{nil} Name: fuc -Version: 3.1.1 -Release: 1%?dist +Version: 3.1.7 +Release: 1%{?dist} Summary: Modern, performance focused unix commands URL: https://github.com/SUPERCILEX/fuc Source0: https://raw.githubusercontent.com/SUPERCILEX/fuc/%{version}/README.md diff --git a/anda/tools/yt-dlp/yt-dlp-git.spec b/anda/tools/yt-dlp/yt-dlp-git.spec index ec1b8dc484..78015cf94d 100644 --- a/anda/tools/yt-dlp/yt-dlp-git.spec +++ b/anda/tools/yt-dlp/yt-dlp-git.spec @@ -2,7 +2,7 @@ %global oldpkgname yt-dlp-nightly Name: yt-dlp-git -Version: 2026.06.20.231202 +Version: 2026.06.21.225258 Release: 1%{?dist} Summary: A command-line program to download videos from online video platforms From 77b27d1442ae46656d919399477fa87125196ca9 Mon Sep 17 00:00:00 2001 From: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> Date: Mon, 22 Jun 2026 03:48:52 +0200 Subject: [PATCH 31/68] chore (Vicinae): Requires: layer-shell-qt (#13236) --- anda/system/vicinae/vicinae.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/anda/system/vicinae/vicinae.spec b/anda/system/vicinae/vicinae.spec index 0a11809ff5..4266e597ea 100644 --- a/anda/system/vicinae/vicinae.spec +++ b/anda/system/vicinae/vicinae.spec @@ -7,7 +7,7 @@ Name: vicinae License: GPL-3.0-or-later Version: 0.22.0 -Release: 1%{?dist} +Release: 2%{?dist} URL: https://docs.vicinae.com Source: https://github.com/vicinaehq/%{name}/archive/refs/tags/v%{version}.tar.gz Summary: A high-performance, native launcher for Linux @@ -42,6 +42,7 @@ BuildRequires: xcb-util-keysyms-devel BuildRequires: desktop-file-utils Requires: nodejs-npm +Requires: layer-shell-qt %description Vicinae (pronounced "vih-SIN-ay") is a high-performance, native launcher for From c3be5c9d5bc8b7a609530a2860e1f11ffb4bdca4 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Mon, 22 Jun 2026 01:59:49 +0000 Subject: [PATCH 32/68] bump(branch): zig-master --- anda/langs/zig/master/zig-master.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/langs/zig/master/zig-master.spec b/anda/langs/zig/master/zig-master.spec index ce0fb6b883..02d67d2b88 100644 --- a/anda/langs/zig/master/zig-master.spec +++ b/anda/langs/zig/master/zig-master.spec @@ -18,7 +18,7 @@ %global zig_cache_dir %{builddir}/zig-cache Name: zig-master -Version: 0.17.0~dev.931+84f84267c +Version: 0.17.0~dev.947+36069a2a7 Release: 2%{?dist} Summary: Master builds of the Zig language License: MIT AND NCSA AND LGPL-2.1-or-later AND LGPL-2.1-or-later WITH GCC-exception-2.0 AND GPL-2.0-or-later AND GPL-2.0-or-later WITH GCC-exception-2.0 AND BSD-3-Clause AND Inner-Net-2.0 AND ISC AND LicenseRef-Fedora-Public-Domain AND GFDL-1.1-or-later AND ZPL-2.1 From 0414bfe29eda5aa8636ab37e22372311e4ce4b36 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Mon, 22 Jun 2026 02:11:32 +0000 Subject: [PATCH 33/68] bump: ruffle-nightly rust-mise --- anda/apps/ruffle/ruffle-nightly.spec | 2 +- anda/buildsys/mise/rust-mise.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/apps/ruffle/ruffle-nightly.spec b/anda/apps/ruffle/ruffle-nightly.spec index 2c3b0b63b1..feb1005953 100644 --- a/anda/apps/ruffle/ruffle-nightly.spec +++ b/anda/apps/ruffle/ruffle-nightly.spec @@ -1,4 +1,4 @@ -%global ver 2026-06-20 +%global ver 2026-06-22 %global goodver %(echo %ver | sed 's/-//g') %global __brp_mangle_shebangs %{nil} %bcond_without mold diff --git a/anda/buildsys/mise/rust-mise.spec b/anda/buildsys/mise/rust-mise.spec index b45d6375c9..0712a8f5ea 100644 --- a/anda/buildsys/mise/rust-mise.spec +++ b/anda/buildsys/mise/rust-mise.spec @@ -5,7 +5,7 @@ %global crate mise Name: rust-mise -Version: 2026.6.11 +Version: 2026.6.12 Release: 1%{?dist} Summary: Front-end to your dev env From 55ef59db8c2f622436ed404306668f2379f94597 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Mon, 22 Jun 2026 02:36:07 +0000 Subject: [PATCH 34/68] bump(weekly): gstreamer1-plugin-icamerasrc --- .../gstreamer1-plugin-icamerasrc.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/multimedia/gstreamer1/gstreamer1-plugin-icamerasrc/gstreamer1-plugin-icamerasrc.spec b/anda/multimedia/gstreamer1/gstreamer1-plugin-icamerasrc/gstreamer1-plugin-icamerasrc.spec index 6b3e12d881..f408fc5dd6 100644 --- a/anda/multimedia/gstreamer1/gstreamer1-plugin-icamerasrc/gstreamer1-plugin-icamerasrc.spec +++ b/anda/multimedia/gstreamer1/gstreamer1-plugin-icamerasrc/gstreamer1-plugin-icamerasrc.spec @@ -1,5 +1,5 @@ -%global fulldate 2026-04-23 -%global commit 867c5b6ab7925c9b69b8374873a832266d97d7e5 +%global fulldate 2026-06-17 +%global commit fe01f98a09b7b864c36ef60a146cdc4e1bf125a6 %global commit_date %(echo %{fulldate} | sed 's/-//g') %global shortcommit %(c=%{commit}; echo ${c:0:7}) From 317716ba9d04ede44c928c5ae9fab31d4152fb65 Mon Sep 17 00:00:00 2001 From: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> Date: Sun, 21 Jun 2026 21:50:40 -0500 Subject: [PATCH 35/68] remove: qdl (#13232) Signed-off-by: Owen-sz --- anda/tools/qdl/anda.hcl | 5 ---- anda/tools/qdl/qdl.spec | 55 -------------------------------------- anda/tools/qdl/update.rhai | 1 - 3 files changed, 61 deletions(-) delete mode 100644 anda/tools/qdl/anda.hcl delete mode 100644 anda/tools/qdl/qdl.spec delete mode 100644 anda/tools/qdl/update.rhai diff --git a/anda/tools/qdl/anda.hcl b/anda/tools/qdl/anda.hcl deleted file mode 100644 index e1f206aa1a..0000000000 --- a/anda/tools/qdl/anda.hcl +++ /dev/null @@ -1,5 +0,0 @@ -project pkg { - rpm { - spec = "qdl.spec" - } -} diff --git a/anda/tools/qdl/qdl.spec b/anda/tools/qdl/qdl.spec deleted file mode 100644 index ad779daed3..0000000000 --- a/anda/tools/qdl/qdl.spec +++ /dev/null @@ -1,55 +0,0 @@ -Name: qdl -Version: 2.7 -Release: 1%{?dist} -Summary: This tool communicates with USB devices of id 05c6:9008 to upload a flash loader and use this to flash images -URL: https://github.com/linux-msm/qdl -Source0: %url/archive/refs/tags/v%version.tar.gz -License: BSD-3-Clause -BuildRequires: meson -BuildRequires: gcc -BuildRequires: help2man -BuildRequires: pkgconfig(libxml-2.0) -BuildRequires: pkgconfig(libusb-1.0) -BuildRequires: pkgconfig(libzip) -BuildRequires: pkgconfig(cmocka) - -Packager: Owen Zimmerman - -%description -%{summary}. - -%prep -%autosetup -n qdl-%{version} - -%conf -%meson - -%build -%meson_build - -%install -%meson_install - -%files -%{_bindir}/qdl -%{_bindir}/qdl-ramdump -%{_bindir}/qdl-ks -%{_mandir}/man1/qdl.1.* -%{_mandir}/man1/qdl-ramdump.1.* -%{_mandir}/man1/qdl-ks.1.* - -%license LICENSE -%doc README.md - -%changelog -* Mon Jun 08 2026 Owen Zimmerman - 2.7-1 -- Update spec for 2.7 - -* Mon Feb 02 2026 Owen Zimmerman -- Switch to tagged versions - -* Wed Nov 26 2025 metcya -- Package manpages - -* Sun Nov 23 2025 Owen Zimmerman -- Initial commit diff --git a/anda/tools/qdl/update.rhai b/anda/tools/qdl/update.rhai deleted file mode 100644 index 635bdd7a96..0000000000 --- a/anda/tools/qdl/update.rhai +++ /dev/null @@ -1 +0,0 @@ -rpm.version(gh_tag("linux-msm/qdl")); \ No newline at end of file From 705f44c491c4e58b04b384474c8d9020e5fa55e4 Mon Sep 17 00:00:00 2001 From: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> Date: Sun, 21 Jun 2026 21:51:18 -0500 Subject: [PATCH 36/68] =?UTF-8?q?chore=20(qtmir):=20use=20proper=20license?= =?UTF-8?q?=20identifier=20and=20don=E2=80=99t=20use=20%autorelease=20(#13?= =?UTF-8?q?233)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- anda/desktops/lomiri-unity/qtmir/qtmir.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/desktops/lomiri-unity/qtmir/qtmir.spec b/anda/desktops/lomiri-unity/qtmir/qtmir.spec index 64332e8627..8c32c7df73 100644 --- a/anda/desktops/lomiri-unity/qtmir/qtmir.spec +++ b/anda/desktops/lomiri-unity/qtmir/qtmir.spec @@ -5,10 +5,10 @@ Name: qtmir Version: 0.8.0 -Release: %autorelease +Release: 2%{?dist} Summary: Mir backed compositor using Qt -License: LGPLv3+ AND GPLv3+ +License: LGPL-3.0-or-later AND GPL-3.0-or-later URL: https://gitlab.com/ubports/development/core/qtmir Source0: %{url}/-/archive/%commit/qtmir-%commit.tar.gz Patch0: https://sources.debian.org/data/main/q/qtmir/0.8.0~git20230223.bd21224-3/debian/patches/1003_require-miroil-in-pkgconfig-file.patch From 19e765c7669e282727913658f8ff172e681668f6 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Mon, 22 Jun 2026 04:51:02 +0000 Subject: [PATCH 37/68] bump(nightly): mpv-nightly hyprutils.nightly noctalia-git ghostty-nightly zed-nightly astal v2ray-domain-list-community cloud-hypervisor-nightly scx-scheds-nightly --- anda/apps/mpv/mpv-nightly.spec | 4 ++-- anda/desktops/hyprland/hyprutils/hyprutils.nightly.spec | 4 ++-- anda/desktops/noctalia-git/noctalia-git.spec | 2 +- anda/devs/ghostty/nightly/ghostty-nightly.spec | 2 +- anda/devs/zed/nightly/zed-nightly.spec | 4 ++-- anda/lib/astal/astal/astal.spec | 4 ++-- .../v2ray-domain-list-community.spec | 6 +++--- .../cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec | 4 ++-- anda/system/scx-scheds/nightly/scx-scheds-nightly.spec | 4 ++-- 9 files changed, 17 insertions(+), 17 deletions(-) diff --git a/anda/apps/mpv/mpv-nightly.spec b/anda/apps/mpv/mpv-nightly.spec index 710789ffef..1334644dec 100644 --- a/anda/apps/mpv/mpv-nightly.spec +++ b/anda/apps/mpv/mpv-nightly.spec @@ -1,9 +1,9 @@ # Disable X11 for RHEL 10+ %bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10] -%global commit efe8644a93aacf2190ed162207731d0c3beac227 +%global commit 2bd9c3229ffd1a6c831d2e4c9297105bb8fc6437 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20260621 +%global commit_date 20260622 %global ver 0.41.0 Name: mpv-nightly diff --git a/anda/desktops/hyprland/hyprutils/hyprutils.nightly.spec b/anda/desktops/hyprland/hyprutils/hyprutils.nightly.spec index 31654ad851..afdba988c4 100644 --- a/anda/desktops/hyprland/hyprutils/hyprutils.nightly.spec +++ b/anda/desktops/hyprland/hyprutils/hyprutils.nightly.spec @@ -3,8 +3,8 @@ %global realname hyprutils %global ver 0.13.1 -%global commit 40ede2e7bdec80ba5d4c443160d905e9f841ae5f -%global commit_date 20260601 +%global commit 9d8bf6e810597152eef8906c670b96679af2faec +%global commit_date 20260622 %global shortcommit %{sub %commit 1 7} Name: %realname.nightly diff --git a/anda/desktops/noctalia-git/noctalia-git.spec b/anda/desktops/noctalia-git/noctalia-git.spec index f12857c94d..b7d8d5dd07 100644 --- a/anda/desktops/noctalia-git/noctalia-git.spec +++ b/anda/desktops/noctalia-git/noctalia-git.spec @@ -2,7 +2,7 @@ %global ver 5.0.0 -%global commit a7af75821ed8aa9e199b0d8044362dc882c78fbc +%global commit 00f47890d8248a6848404b52115afac591c674ea %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global commitdate 20260608 diff --git a/anda/devs/ghostty/nightly/ghostty-nightly.spec b/anda/devs/ghostty/nightly/ghostty-nightly.spec index 856a3e99e9..5310fcec4f 100644 --- a/anda/devs/ghostty/nightly/ghostty-nightly.spec +++ b/anda/devs/ghostty/nightly/ghostty-nightly.spec @@ -1,4 +1,4 @@ -%global commit f9c52d0cd9d0da0cd970a5863b94c655c285d83e +%global commit 4749c4e93731067049bfbf2e4572061cef2bdd17 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global fulldate 2026-06-18 %global commit_date %(echo %{fulldate} | sed 's/-//g') diff --git a/anda/devs/zed/nightly/zed-nightly.spec b/anda/devs/zed/nightly/zed-nightly.spec index b9e5541d97..d1e4db561a 100644 --- a/anda/devs/zed/nightly/zed-nightly.spec +++ b/anda/devs/zed/nightly/zed-nightly.spec @@ -1,6 +1,6 @@ -%global commit 50e6411571398f007863dfa8fc3a5e2737d7290a +%global commit c0945a82018c11f09bae41bbc7035f4b07568a8f %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20260621 +%global commit_date 20260622 %global ver 1.9.0 %bcond_with check diff --git a/anda/lib/astal/astal/astal.spec b/anda/lib/astal/astal/astal.spec index f59ba7c9e0..fb91dff919 100644 --- a/anda/lib/astal/astal/astal.spec +++ b/anda/lib/astal/astal/astal.spec @@ -1,7 +1,7 @@ -%global commit 1c762bf4cf2f7e2aab1648d562dc98d2abc6e6ec +%global commit 11842ae3045c1367fb3a62a2302dba0d9ccb4a33 %global shortcommit %{sub %commit 1 7} -%global commit_date 20260619 +%global commit_date 20260622 Name: astal Version: 0^%commit_date.%shortcommit diff --git a/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec b/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec index 924f391e1d..1e4a04c78b 100644 --- a/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec +++ b/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec @@ -1,7 +1,7 @@ -%global commit 794e0216c9eff1f5c93b225d1d45b280c9c4564f +%global commit 3a8c07a8c2194bfe4390faa2bd364c428c4f1402 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global ver 20260621035818 -%global commit_date 20260621 +%global ver 20260621074522 +%global commit_date 20260622 Name: v2ray-domain-list-community Version: %{ver}^%{commit_date}git.%{shortcommit} diff --git a/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec b/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec index af21f0268c..ed85262522 100644 --- a/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec +++ b/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec @@ -1,5 +1,5 @@ -%global commit dd2f18e73e72813d24b5df0bf7a14ab5b43c44c7 -%global commit_date 20260621 +%global commit 1db8858fac037277f6d744db8dbcb637b1295b9b +%global commit_date 20260622 %global shortcommit %(c=%{commit}; echo ${c:0:7}) Name: cloud-hypervisor-nightly diff --git a/anda/system/scx-scheds/nightly/scx-scheds-nightly.spec b/anda/system/scx-scheds/nightly/scx-scheds-nightly.spec index af07866892..7e9fd7a546 100644 --- a/anda/system/scx-scheds/nightly/scx-scheds-nightly.spec +++ b/anda/system/scx-scheds/nightly/scx-scheds-nightly.spec @@ -1,6 +1,6 @@ -%global commit f5e46f7fe7d7a804c422d8e981c5825402d8dac6 +%global commit dd06cd278d5d24205800d36b3ec75c4c14c753b6 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commitdate 20260618 +%global commitdate 20260622 %global ver 1.1.1 %undefine __brp_mangle_shebangs From b6c2bae9f978d88a428be32d7f05b9b9682a7f04 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Mon, 22 Jun 2026 07:30:48 +0000 Subject: [PATCH 38/68] bump(branch): astal-gtk --- anda/lib/astal/astal-gtk/astal-gtk.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/anda/lib/astal/astal-gtk/astal-gtk.spec b/anda/lib/astal/astal-gtk/astal-gtk.spec index 8cdb888a8a..9beb695aa0 100644 --- a/anda/lib/astal/astal-gtk/astal-gtk.spec +++ b/anda/lib/astal/astal-gtk/astal-gtk.spec @@ -1,6 +1,6 @@ -%global commit 1c762bf4cf2f7e2aab1648d562dc98d2abc6e6ec -%global shortcommit 1c762bf -%global commit_date 20260619 +%global commit 11842ae3045c1367fb3a62a2302dba0d9ccb4a33 +%global shortcommit 11842ae +%global commit_date 20260622 Name: astal Version: 0^%commit_date.%commit From 2e90922b03b8a83cd9337f7ca44f493acde4eccb Mon Sep 17 00:00:00 2001 From: Raboneko Date: Mon, 22 Jun 2026 07:43:48 +0000 Subject: [PATCH 39/68] bump: rust-bottom --- anda/langs/rust/bottom/rust-bottom.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/langs/rust/bottom/rust-bottom.spec b/anda/langs/rust/bottom/rust-bottom.spec index 20fd0b220f..75d5e61a5b 100644 --- a/anda/langs/rust/bottom/rust-bottom.spec +++ b/anda/langs/rust/bottom/rust-bottom.spec @@ -5,7 +5,7 @@ %global crate bottom Name: rust-bottom -Version: 0.14.0 +Version: 0.14.1 Release: 1%{?dist} Summary: Customizable cross-platform graphical process/system monitor for the terminal From 7d5716ac453860633d5e665db09ccf46cf080c37 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Mon, 22 Jun 2026 13:21:36 +0000 Subject: [PATCH 40/68] bump: juce driftwm rpcs3 posthog rust-gitoxide --- anda/apps/juce/juce.spec | 2 +- anda/desktops/driftwm/driftwm.spec | 2 +- anda/games/rpcs3/rpcs3.spec | 4 ++-- anda/langs/python/posthog/posthog.spec | 2 +- anda/langs/rust/gitoxide/rust-gitoxide.spec | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/anda/apps/juce/juce.spec b/anda/apps/juce/juce.spec index 545ff2789b..91a3b48d5a 100644 --- a/anda/apps/juce/juce.spec +++ b/anda/apps/juce/juce.spec @@ -1,5 +1,5 @@ Name: juce -Version: 8.0.13 +Version: 8.0.14 Release: 1%{?dist} License: AGPL-3.0-or-later Summary: framework for audio application and plug-in development diff --git a/anda/desktops/driftwm/driftwm.spec b/anda/desktops/driftwm/driftwm.spec index db1e4f82ec..8dcf5a6521 100644 --- a/anda/desktops/driftwm/driftwm.spec +++ b/anda/desktops/driftwm/driftwm.spec @@ -1,5 +1,5 @@ Name: driftwm -Version: 0.11.0 +Version: 0.12.0 Release: 1%{?dist} Summary: A trackpad-first infinite canvas Wayland compositor License: GPL-3.0-or-later diff --git a/anda/games/rpcs3/rpcs3.spec b/anda/games/rpcs3/rpcs3.spec index 9f18d8f1fd..b8e3de75bf 100644 --- a/anda/games/rpcs3/rpcs3.spec +++ b/anda/games/rpcs3/rpcs3.spec @@ -9,8 +9,8 @@ # GLIBCXX_ASSERTIONS is known to break RPCS3 %global build_cflags %(echo "%{__build_flags_lang_c}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags} %global build_cxxflags %(echo "%{__build_flags_lang_cxx}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags} -%global commit c7478d6dcc3b5e5303a91a107b6a393e79c0e7cb -%global ver 0.0.41-19507 +%global commit 927e2492ef720d2223bd8b149a02af875e11c398 +%global ver 0.0.41-19508 Name: rpcs3 Version: %(echo %{ver} | sed 's/-/^/g') diff --git a/anda/langs/python/posthog/posthog.spec b/anda/langs/python/posthog/posthog.spec index eb731f4631..7255b5e129 100644 --- a/anda/langs/python/posthog/posthog.spec +++ b/anda/langs/python/posthog/posthog.spec @@ -2,7 +2,7 @@ %global _desc Send usage data from your Python code to PostHog. Name: python-%{pypi_name} -Version: 7.19.2 +Version: 7.20.1 Release: 1%{?dist} Summary: Send usage data from your Python code to PostHog License: MIT diff --git a/anda/langs/rust/gitoxide/rust-gitoxide.spec b/anda/langs/rust/gitoxide/rust-gitoxide.spec index cfffb2109b..64d4965e3d 100644 --- a/anda/langs/rust/gitoxide/rust-gitoxide.spec +++ b/anda/langs/rust/gitoxide/rust-gitoxide.spec @@ -5,7 +5,7 @@ %global crate gitoxide Name: rust-gitoxide -Version: 0.54.0 +Version: 0.55.0 Release: 1%{?dist} Summary: Command-line application for interacting with git repositories From 591e757e78ec679c78b5ba7b98bb889eba6f6044 Mon Sep 17 00:00:00 2001 From: LionHeartP Date: Mon, 22 Jun 2026 18:40:27 +0300 Subject: [PATCH 41/68] fix(noctalia-git): fix typo in update.rhai so commitdate gets properly bumped (#13251) --- anda/desktops/noctalia-git/update.rhai | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/desktops/noctalia-git/update.rhai b/anda/desktops/noctalia-git/update.rhai index 5ebe190122..48b5541ff8 100644 --- a/anda/desktops/noctalia-git/update.rhai +++ b/anda/desktops/noctalia-git/update.rhai @@ -1,6 +1,6 @@ rpm.global("commit", get("https://api.github.com/repos/noctalia-dev/noctalia/commits/main").json().sha); if rpm.changed() { // rpm.global("ver", gh("noctalia-dev/noctalia")); - rpm.global("commit_date", date()); + rpm.global("commitdate", date()); rpm.release(); } From 8a33a23fe8440516870cd5f2329aef45e93d8062 Mon Sep 17 00:00:00 2001 From: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> Date: Mon, 22 Jun 2026 11:12:08 -0500 Subject: [PATCH 42/68] chore (vala-language-server-nightly): use proper license identifier (#13256) --- .../vala-language-server-nightly.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/langs/vala/vala-language-server-nightly/vala-language-server-nightly.spec b/anda/langs/vala/vala-language-server-nightly/vala-language-server-nightly.spec index 712eccb69c..f9c0782088 100644 --- a/anda/langs/vala/vala-language-server-nightly/vala-language-server-nightly.spec +++ b/anda/langs/vala/vala-language-server-nightly/vala-language-server-nightly.spec @@ -14,7 +14,7 @@ Release: 1%{?dist} # The entire source is LGPLv2+, except plugins/gnome-builder/vala_langserv.py, which is GPLv3+. # It is not installed when the "plugins" meson option is set to false. # Since GNOME Builder 41, the VLS the plugin has been included. -License: LGPL-2.0+ +License: LGPL-2.0-or-later URL: https://github.com/vala-lang/vala-language-server Source0: https://github.com/vala-lang/vala-language-server/archive/%{commit}/%{real_name}-%{shortcommit}.tar.gz From b353227c789d041919dfb50379edd98688e8cc99 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Mon, 22 Jun 2026 18:02:47 +0000 Subject: [PATCH 43/68] bump: discord-canary-openasar discord-canary subtitleedit driftwm flutter posthog --- anda/apps/discord-canary-openasar/discord-canary-openasar.spec | 2 +- anda/apps/discord-canary/discord-canary.spec | 2 +- anda/apps/subtitleedit/subtitleedit.spec | 2 +- anda/desktops/driftwm/driftwm.spec | 2 +- anda/devs/flutter/flutter.spec | 2 +- anda/langs/python/posthog/posthog.spec | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec index d42b8d635a..8214b97ab5 100644 --- a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec +++ b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec @@ -6,7 +6,7 @@ %global __provides_exclude_from %{_datadir}/%{name}/.*\\.so Name: discord-canary-openasar -Version: 1.0.1317 +Version: 1.0.1319 Release: 1%{?dist} Summary: A snappier Discord rewrite with features like further customization and theming License: MIT AND https://discord.com/terms diff --git a/anda/apps/discord-canary/discord-canary.spec b/anda/apps/discord-canary/discord-canary.spec index a1f4eee315..e05f6890f8 100644 --- a/anda/apps/discord-canary/discord-canary.spec +++ b/anda/apps/discord-canary/discord-canary.spec @@ -1,5 +1,5 @@ Name: discord-canary -Version: 1.0.1317 +Version: 1.0.1319 Release: 1%{?dist} Summary: Free Voice and Text Chat for Gamers URL: discord.com diff --git a/anda/apps/subtitleedit/subtitleedit.spec b/anda/apps/subtitleedit/subtitleedit.spec index ca1e4ab417..32747b46e0 100644 --- a/anda/apps/subtitleedit/subtitleedit.spec +++ b/anda/apps/subtitleedit/subtitleedit.spec @@ -2,7 +2,7 @@ %global realname subtitleedit Name: %realname.bin -Version: 4.0.16 +Version: 5.0.0 Release: 1%{?dist} Summary: An advanced subtitle editor and converter License: GPL-3.0-only diff --git a/anda/desktops/driftwm/driftwm.spec b/anda/desktops/driftwm/driftwm.spec index 8dcf5a6521..4751d34373 100644 --- a/anda/desktops/driftwm/driftwm.spec +++ b/anda/desktops/driftwm/driftwm.spec @@ -1,5 +1,5 @@ Name: driftwm -Version: 0.12.0 +Version: 0.12.1 Release: 1%{?dist} Summary: A trackpad-first infinite canvas Wayland compositor License: GPL-3.0-or-later diff --git a/anda/devs/flutter/flutter.spec b/anda/devs/flutter/flutter.spec index 5f1c4f2792..1a9cd555dc 100644 --- a/anda/devs/flutter/flutter.spec +++ b/anda/devs/flutter/flutter.spec @@ -1,5 +1,5 @@ Name: flutter -Version: 3.44.2 +Version: 3.44.3 Release: 1%{?dist} Summary: SDK for crafting beautiful, fast user experiences from a single codebase License: BSD-3-Clause diff --git a/anda/langs/python/posthog/posthog.spec b/anda/langs/python/posthog/posthog.spec index 7255b5e129..7efbed40ee 100644 --- a/anda/langs/python/posthog/posthog.spec +++ b/anda/langs/python/posthog/posthog.spec @@ -2,7 +2,7 @@ %global _desc Send usage data from your Python code to PostHog. Name: python-%{pypi_name} -Version: 7.20.1 +Version: 7.20.2 Release: 1%{?dist} Summary: Send usage data from your Python code to PostHog License: MIT From eda0e0f420d787de9578ff8af3325b66c585e9c7 Mon Sep 17 00:00:00 2001 From: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> Date: Mon, 22 Jun 2026 13:19:58 -0500 Subject: [PATCH 44/68] test (bdf2sfd): use declarative build (#13262) --- anda/tools/bdf2sfd/bdf2sfd.spec | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/anda/tools/bdf2sfd/bdf2sfd.spec b/anda/tools/bdf2sfd/bdf2sfd.spec index c904daa897..cba59da679 100644 --- a/anda/tools/bdf2sfd/bdf2sfd.spec +++ b/anda/tools/bdf2sfd/bdf2sfd.spec @@ -6,6 +6,7 @@ License: BSD-2-Clause URL: https://github.com/fcambus/bdf2sfd Source0: %url/archive/refs/tags/%version.tar.gz BuildRequires: cmake gcc +BuildSystem: cmake %description bdf2sfd is a BDF to SFD converter, allowing to vectorize bitmap fonts. @@ -13,16 +14,6 @@ bdf2sfd is a BDF to SFD converter, allowing to vectorize bitmap fonts. It works by converting each pixel of a glyph to a polygon, which produces large and unoptimized SFD files that should be post-processed using FontForge. -%prep -%autosetup - -%build -%cmake -%cmake_build - -%install -%cmake_install - %files %doc README.md ChangeLog AUTHORS THANKS %license LICENSE From 8465314f5277a22217d569a9cfdea77e25fe2875 Mon Sep 17 00:00:00 2001 From: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> Date: Mon, 22 Jun 2026 14:30:01 -0500 Subject: [PATCH 45/68] fix: MareTF (#13212) * fix: MareTF Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> * oops Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> --------- Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> --- anda/tools/MareTF/MareTF.spec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/anda/tools/MareTF/MareTF.spec b/anda/tools/MareTF/MareTF.spec index 72abf71a90..022af94b65 100644 --- a/anda/tools/MareTF/MareTF.spec +++ b/anda/tools/MareTF/MareTF.spec @@ -43,12 +43,15 @@ BuildRequires: vulkan-headers %files %doc README.md %license LICENSE +%license %{_defaultlicensedir}/maretf/CREDITS %{_bindir}/maretf %{_bindir}/maretf_gui +%{_bindir}/maretf_thumbnailer %{_appsdir}/maretf.desktop %{_hicolordir}/512x512/apps/maretf.png %{_defaultlicensedir}/maretf/LICENSE %{_datadir}/mime/packages/maretf.xml +%{_datadir}/thumbnailers/maretf.thumbnailer %changelog * Sun Mar 15 2026 Owen Zimmerman From 96c6a2c985d7cc107a132872f92550f2ba7dd197 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Mon, 22 Jun 2026 21:11:23 +0000 Subject: [PATCH 46/68] bump: discord-canary-openasar discord-canary discord-openasar discord lomiri-system-settings somewm swayosd zed-preview xray --- anda/apps/discord-canary-openasar/discord-canary-openasar.spec | 2 +- anda/apps/discord-canary/discord-canary.spec | 2 +- anda/apps/discord-openasar/discord-openasar.spec | 2 +- anda/apps/discord/discord.spec | 2 +- .../lomiri-system-settings/lomiri-system-settings.spec | 2 +- anda/desktops/somewm/somewm.spec | 2 +- anda/desktops/sway/swayosd/swayosd.spec | 2 +- anda/devs/zed/preview/zed-preview.spec | 2 +- anda/langs/go/xray/stable/xray.spec | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec index 8214b97ab5..a4970e43d4 100644 --- a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec +++ b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec @@ -6,7 +6,7 @@ %global __provides_exclude_from %{_datadir}/%{name}/.*\\.so Name: discord-canary-openasar -Version: 1.0.1319 +Version: 1.0.1321 Release: 1%{?dist} Summary: A snappier Discord rewrite with features like further customization and theming License: MIT AND https://discord.com/terms diff --git a/anda/apps/discord-canary/discord-canary.spec b/anda/apps/discord-canary/discord-canary.spec index e05f6890f8..69e23dfb41 100644 --- a/anda/apps/discord-canary/discord-canary.spec +++ b/anda/apps/discord-canary/discord-canary.spec @@ -1,5 +1,5 @@ Name: discord-canary -Version: 1.0.1319 +Version: 1.0.1321 Release: 1%{?dist} Summary: Free Voice and Text Chat for Gamers URL: discord.com diff --git a/anda/apps/discord-openasar/discord-openasar.spec b/anda/apps/discord-openasar/discord-openasar.spec index 9217ee5724..029bc1dc5b 100644 --- a/anda/apps/discord-openasar/discord-openasar.spec +++ b/anda/apps/discord-openasar/discord-openasar.spec @@ -6,7 +6,7 @@ %global __provides_exclude_from %{_datadir}/%{name}/.*\\.so Name: discord-openasar -Version: 1.0.143 +Version: 1.0.144 Release: 1%{?dist} Summary: A snappier Discord rewrite with features like further customization and theming License: MIT AND https://discord.com/terms diff --git a/anda/apps/discord/discord.spec b/anda/apps/discord/discord.spec index b148f0f672..c5c370e630 100644 --- a/anda/apps/discord/discord.spec +++ b/anda/apps/discord/discord.spec @@ -1,5 +1,5 @@ Name: discord -Version: 1.0.143 +Version: 1.0.144 Release: 1%{?dist} Summary: Free Voice and Text Chat for Gamers URL: https://discord.com diff --git a/anda/desktops/lomiri-unity/lomiri-system-settings/lomiri-system-settings.spec b/anda/desktops/lomiri-unity/lomiri-system-settings/lomiri-system-settings.spec index 42567db754..3da96a9eb8 100644 --- a/anda/desktops/lomiri-unity/lomiri-system-settings/lomiri-system-settings.spec +++ b/anda/desktops/lomiri-unity/lomiri-system-settings/lomiri-system-settings.spec @@ -1,5 +1,5 @@ %global forgeurl https://gitlab.com/ubports/development/core/lomiri-system-settings -%global commit 611f0bdfc80f7934cf890b703a0b2ec112626a27 +%global commit a1bee4359f0544c9cea46d1744a7ff828b193725 %forgemeta Name: lomiri-system-settings diff --git a/anda/desktops/somewm/somewm.spec b/anda/desktops/somewm/somewm.spec index 9caa130fed..fca9ed48cd 100644 --- a/anda/desktops/somewm/somewm.spec +++ b/anda/desktops/somewm/somewm.spec @@ -1,5 +1,5 @@ Name: somewm -Version: 1.4.1 +Version: 1.4.2 Release: 1%{?dist} Summary: Wayland compositor that brings AwesomeWM's Lua API to Wayland License: GPL-3.0-or-later diff --git a/anda/desktops/sway/swayosd/swayosd.spec b/anda/desktops/sway/swayosd/swayosd.spec index 76cf36b4b1..f2bd57d0f7 100644 --- a/anda/desktops/sway/swayosd/swayosd.spec +++ b/anda/desktops/sway/swayosd/swayosd.spec @@ -1,5 +1,5 @@ Name: SwayOSD -Version: 0.3.1 +Version: 0.3.2 Release: 1%{?dist} Summary: A GTK based on screen display for keyboard shortcuts like caps-lock and volume License: GPL-3.0-only diff --git a/anda/devs/zed/preview/zed-preview.spec b/anda/devs/zed/preview/zed-preview.spec index f1c527d8a3..1d5c52b465 100644 --- a/anda/devs/zed/preview/zed-preview.spec +++ b/anda/devs/zed/preview/zed-preview.spec @@ -7,7 +7,7 @@ %global debug_package %{nil} %endif -%global ver 1.8.0-pre +%global ver 1.8.2-pre # Exclude input files from mangling %global __brp_mangle_shebangs_exclude_from ^/usr/src/.*$ diff --git a/anda/langs/go/xray/stable/xray.spec b/anda/langs/go/xray/stable/xray.spec index 2326b8d970..5429372589 100644 --- a/anda/langs/go/xray/stable/xray.spec +++ b/anda/langs/go/xray/stable/xray.spec @@ -1,7 +1,7 @@ # Disabled because compiled without debug %global goipath github.com/XTLS/Xray-core -Version: 26.6.1 +Version: 26.6.22 %global golicenses LICENSE %global godocs README.md SECURITY.md CODE_OF_CONDUCT.md From 9a11b0cd17504e7ee10f3e5239dea2daa3b1c583 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Mon, 22 Jun 2026 22:56:55 +0000 Subject: [PATCH 47/68] bump: discord-canary-openasar discord-canary wails3 --- anda/apps/discord-canary-openasar/discord-canary-openasar.spec | 2 +- anda/apps/discord-canary/discord-canary.spec | 2 +- anda/lib/wails/v3/wails3.spec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec index a4970e43d4..ecc0a8e3e1 100644 --- a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec +++ b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec @@ -6,7 +6,7 @@ %global __provides_exclude_from %{_datadir}/%{name}/.*\\.so Name: discord-canary-openasar -Version: 1.0.1321 +Version: 1.0.1322 Release: 1%{?dist} Summary: A snappier Discord rewrite with features like further customization and theming License: MIT AND https://discord.com/terms diff --git a/anda/apps/discord-canary/discord-canary.spec b/anda/apps/discord-canary/discord-canary.spec index 69e23dfb41..9ecfd7fbf5 100644 --- a/anda/apps/discord-canary/discord-canary.spec +++ b/anda/apps/discord-canary/discord-canary.spec @@ -1,5 +1,5 @@ Name: discord-canary -Version: 1.0.1321 +Version: 1.0.1322 Release: 1%{?dist} Summary: Free Voice and Text Chat for Gamers URL: discord.com diff --git a/anda/lib/wails/v3/wails3.spec b/anda/lib/wails/v3/wails3.spec index a34467c2af..697caab307 100644 --- a/anda/lib/wails/v3/wails3.spec +++ b/anda/lib/wails/v3/wails3.spec @@ -1,4 +1,4 @@ -%global ver webview2/v1.0.24 +%global ver webview2/v1.0.25 %global sanitized_ver %(echo %{ver} | sed 's/-/~/g') %global goipath github.com/wailsapp/wails/v3 From 100a1533ef1b2f19b4e83f5e2d12bf0c5c982fba Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 23 Jun 2026 03:54:55 +0000 Subject: [PATCH 48/68] bump(nightly): gnome-shell-extension-multi-monitors-bar noctalia-git ghostty-nightly zed-nightly xray-nightly types-colorama cloud-hypervisor-nightly opentabletdriver-nightly scx-scheds-nightly HeadsetControl-nightly --- .../gnome-shell-extension-multi-monitors-bar.spec | 4 ++-- anda/desktops/noctalia-git/noctalia-git.spec | 4 ++-- anda/devs/ghostty/nightly/ghostty-nightly.spec | 4 ++-- anda/devs/zed/nightly/zed-nightly.spec | 4 ++-- anda/langs/go/xray/nightly/xray-nightly.spec | 4 ++-- anda/langs/python/types-colorama/types-colorama.spec | 4 ++-- .../cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec | 4 ++-- .../opentabletdriver-nightly/opentabletdriver-nightly.spec | 4 ++-- anda/system/scx-scheds/nightly/scx-scheds-nightly.spec | 4 ++-- anda/tools/HeadsetControl-nightly/HeadsetControl-nightly.spec | 2 +- 10 files changed, 19 insertions(+), 19 deletions(-) diff --git a/anda/desktops/gnome/gnome-shell-extension-multi-monitors-bar/gnome-shell-extension-multi-monitors-bar.spec b/anda/desktops/gnome/gnome-shell-extension-multi-monitors-bar/gnome-shell-extension-multi-monitors-bar.spec index 3f60663e6d..15a270d2ce 100644 --- a/anda/desktops/gnome/gnome-shell-extension-multi-monitors-bar/gnome-shell-extension-multi-monitors-bar.spec +++ b/anda/desktops/gnome/gnome-shell-extension-multi-monitors-bar/gnome-shell-extension-multi-monitors-bar.spec @@ -1,5 +1,5 @@ -%global commit fd9ad168cd5e5c8bb326262fc5983912b42dc500 -%global commit_date 20260618 +%global commit 98e57dfcbedae4d88130f689d25d0dd0961731ba +%global commit_date 20260623 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global extension multi-monitors-bar diff --git a/anda/desktops/noctalia-git/noctalia-git.spec b/anda/desktops/noctalia-git/noctalia-git.spec index b7d8d5dd07..e21cdcf1b5 100644 --- a/anda/desktops/noctalia-git/noctalia-git.spec +++ b/anda/desktops/noctalia-git/noctalia-git.spec @@ -2,9 +2,9 @@ %global ver 5.0.0 -%global commit 00f47890d8248a6848404b52115afac591c674ea +%global commit a5eeef13338167fb85ecf8ea7c2fabb4c5536010 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commitdate 20260608 +%global commitdate 20260623 Name: noctalia-git Version: %{ver}^%{commitdate}git.%{shortcommit} diff --git a/anda/devs/ghostty/nightly/ghostty-nightly.spec b/anda/devs/ghostty/nightly/ghostty-nightly.spec index 5310fcec4f..bafe68310e 100644 --- a/anda/devs/ghostty/nightly/ghostty-nightly.spec +++ b/anda/devs/ghostty/nightly/ghostty-nightly.spec @@ -1,6 +1,6 @@ -%global commit 4749c4e93731067049bfbf2e4572061cef2bdd17 +%global commit 65744ffe358d883ae74aa67389dcbfa35f91a551 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global fulldate 2026-06-18 +%global fulldate 2026-06-20 %global commit_date %(echo %{fulldate} | sed 's/-//g') %global public_key RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV %global ver 1.3.2 diff --git a/anda/devs/zed/nightly/zed-nightly.spec b/anda/devs/zed/nightly/zed-nightly.spec index d1e4db561a..c059b66dbe 100644 --- a/anda/devs/zed/nightly/zed-nightly.spec +++ b/anda/devs/zed/nightly/zed-nightly.spec @@ -1,6 +1,6 @@ -%global commit c0945a82018c11f09bae41bbc7035f4b07568a8f +%global commit 14f9b9d077ea4de768408aa3bed285baacea13b0 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20260622 +%global commit_date 20260623 %global ver 1.9.0 %bcond_with check diff --git a/anda/langs/go/xray/nightly/xray-nightly.spec b/anda/langs/go/xray/nightly/xray-nightly.spec index f1709608b0..a770ce2f92 100644 --- a/anda/langs/go/xray/nightly/xray-nightly.spec +++ b/anda/langs/go/xray/nightly/xray-nightly.spec @@ -1,7 +1,7 @@ -%global commit be8009c62509322682299bfbe969a62cee03f4d5 +%global commit b99c3e56574fb0317608c49dd1dd9af816db7a9e %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global ver v26.3.27 -%global commit_date 20260620 +%global commit_date 20260623 %global goipath github.com/XTLS/Xray-core Version: %{ver}^%{commit_date}git.%{shortcommit} diff --git a/anda/langs/python/types-colorama/types-colorama.spec b/anda/langs/python/types-colorama/types-colorama.spec index c3402ad59f..8b2706bc6b 100644 --- a/anda/langs/python/types-colorama/types-colorama.spec +++ b/anda/langs/python/types-colorama/types-colorama.spec @@ -1,5 +1,5 @@ -%global commit fb2af6606cf8fa85a8bf06c0d1f5689327d4b6fc -%global commit_date 20260620 +%global commit c9e422dbac410054732ae2006fa088db44f7d07d +%global commit_date 20260623 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global pypi_name types-colorama diff --git a/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec b/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec index ed85262522..d1abc9403d 100644 --- a/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec +++ b/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec @@ -1,5 +1,5 @@ -%global commit 1db8858fac037277f6d744db8dbcb637b1295b9b -%global commit_date 20260622 +%global commit bb81c6650ba70d5972d9ff34d3a1e503e3666b81 +%global commit_date 20260623 %global shortcommit %(c=%{commit}; echo ${c:0:7}) Name: cloud-hypervisor-nightly diff --git a/anda/system/opentabletdriver-nightly/opentabletdriver-nightly.spec b/anda/system/opentabletdriver-nightly/opentabletdriver-nightly.spec index 3d5e7c402f..834f2eb6a9 100644 --- a/anda/system/opentabletdriver-nightly/opentabletdriver-nightly.spec +++ b/anda/system/opentabletdriver-nightly/opentabletdriver-nightly.spec @@ -1,6 +1,6 @@ -%global commit 6aa6d3a505ebd39d37d16ee4583d4870c178538c +%global commit 6c33043154969d82b60ba8bb47da8d778063af56 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20260604 +%global commit_date 20260623 %global ver 0.6.7 # We aren't using Mono but RPM expected Mono diff --git a/anda/system/scx-scheds/nightly/scx-scheds-nightly.spec b/anda/system/scx-scheds/nightly/scx-scheds-nightly.spec index 7e9fd7a546..a12e2122b6 100644 --- a/anda/system/scx-scheds/nightly/scx-scheds-nightly.spec +++ b/anda/system/scx-scheds/nightly/scx-scheds-nightly.spec @@ -1,6 +1,6 @@ -%global commit dd06cd278d5d24205800d36b3ec75c4c14c753b6 +%global commit 2088c10c1c24eda0a733d5ab0892ca493a9b1df7 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commitdate 20260622 +%global commitdate 20260623 %global ver 1.1.1 %undefine __brp_mangle_shebangs diff --git a/anda/tools/HeadsetControl-nightly/HeadsetControl-nightly.spec b/anda/tools/HeadsetControl-nightly/HeadsetControl-nightly.spec index 61f6942620..87bfd7c690 100644 --- a/anda/tools/HeadsetControl-nightly/HeadsetControl-nightly.spec +++ b/anda/tools/HeadsetControl-nightly/HeadsetControl-nightly.spec @@ -1,6 +1,6 @@ %global _udevrulesdir /usr/lib/udev/rules.d -%global commit da4477e4a9f09b4df8de8c7e0864166b8683327c +%global commit 1507c7204181440ed4bc7676e3641415d9ba8163 %global commitdate 20251121 %global shortcommit %(c=%{commit}; echo ${c:0:7}) From e0a3540e938b25a143546860f8c15a46a6a62647 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 23 Jun 2026 04:32:25 +0000 Subject: [PATCH 49/68] bump: ruffle-nightly --- anda/apps/ruffle/ruffle-nightly.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/apps/ruffle/ruffle-nightly.spec b/anda/apps/ruffle/ruffle-nightly.spec index feb1005953..f7412c1f6d 100644 --- a/anda/apps/ruffle/ruffle-nightly.spec +++ b/anda/apps/ruffle/ruffle-nightly.spec @@ -1,4 +1,4 @@ -%global ver 2026-06-22 +%global ver 2026-06-23 %global goodver %(echo %ver | sed 's/-//g') %global __brp_mangle_shebangs %{nil} %bcond_without mold From e4e142c871caa56376be493f07fe1d534403dce5 Mon Sep 17 00:00:00 2001 From: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> Date: Tue, 23 Jun 2026 03:50:25 -0500 Subject: [PATCH 50/68] chore (coreboot-utils): update for 26.06, build archive and debug subpackages (#13272) * chore (coreboot-utils): update for 26.06 Signed-off-by: Owen-sz * remove debugpackage %nil Signed-off-by: Owen-sz * build archive Signed-off-by: Owen-sz --------- Signed-off-by: Owen-sz --- anda/tools/coreboot-utils/coreboot-utils.spec | 48 +++++++++---------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/anda/tools/coreboot-utils/coreboot-utils.spec b/anda/tools/coreboot-utils/coreboot-utils.spec index 7be00dca8f..7947965c3b 100644 --- a/anda/tools/coreboot-utils/coreboot-utils.spec +++ b/anda/tools/coreboot-utils/coreboot-utils.spec @@ -1,5 +1,3 @@ -%define debug_package %nil - Name: coreboot-utils Version: 26.06 Release: 1%{?dist} @@ -32,6 +30,7 @@ BuildRequires: glibc-devel BuildRequires: ncurses-devel BuildRequires: libfl-devel BuildRequires: pciutils-devel +BuildRequires: zlib-ng-devel BuildRequires: libxcrypt-devel BuildRequires: yaml-cpp-devel BuildRequires: openssl-devel @@ -45,10 +44,6 @@ BuildRequires: acpica-tools BuildRequires: binutils BuildRequires: python3 -%if 0%{?fedora} >= 42 -BuildRequires: gcc14 gcc14-c++ -%endif - %description %summary. @@ -59,7 +54,7 @@ Requires: %{name}-abuild Requires: %{name}-amdfwtool Requires: %{name}-amdtools Requires: %{name}-apcb -%dnl Requires: %{name}-archive +Requires: %{name}-archive Requires: %{name}-autoport Requires: %{name}-bincfg Requires: %{name}-board_status @@ -156,11 +151,11 @@ and GPIO selection pins. apcb_edit - This tool allows patching an existing APCB binary with specific SPDs and GPIO selection pins. apcb_v3_edit - This tool allows patching an existing APCB v3 binary with up to 16 specific SPDs. -%dnl %package archive - ### Currently bugged and does not compile ### -%dnl Requires: coreboot-utils = %{evr} -%dnl Summary: Concatenate files and create an archive -%dnl %description archive -%dnl %summary. +%package archive +Requires: coreboot-utils = %{evr} +Summary: Concatenate files and create an archive +%description archive +%summary. %package autoport Summary: Porting coreboot using autoport @@ -501,20 +496,19 @@ Requires: coreboot-utils = %{evr} %conf %ifarch x86_64 -pushd msrtool +pushd util/msrtool %configure popd %endif -%build -%if 0%{?fedora} >= 42 -export CC=gcc-14 -export CXX=g++-14 -%endif +pushd util/coreboot-configurator +%meson +popd +%build pushd util %make_build -C amdfwtool LDFLAGS="-fPIE -lcrypto" -%dnl %make_build -C archive # bugged upstream, does not build +%make_build -C archive CFLAGS="-O2 -Wall -Wextra -Wshadow -Werror -Wno-nonnull" %make_build -C bincfg %ifarch x86_64 %make_build -C bucts LDFLAGS="-fPIE" @@ -524,7 +518,7 @@ pushd util %ifarch x86_64 %make_build -C ectool LDFLAGS="-fPIE" %endif -%make_build -C futility +%make_build -C futility CFLAGS="$CFLAGS -DEC_EFS=0" %make_build -C hda-decoder %make_build -C ifdtool %ifarch x86_64 @@ -534,7 +528,7 @@ pushd util %make_build -C intelp2m %endif %ifarch x86_64 -%make_build -C inteltool +%make_build -C inteltool CFLAGS="-O2 -fkeep-inline-functions" %endif %ifarch x86_64 %make_build -C intelvbttool @@ -568,7 +562,6 @@ export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readon popd pushd coreboot-configurator -%meson %meson_build popd popd @@ -589,7 +582,7 @@ install -Dm 755 util/apcb/apcb_edit.py %{buildroot}%{_bindir}/apcb_edit.py install -Dm 755 util/apcb/apcb_v3a_edit.py %{buildroot}%{_bindir}/apcb_v3a_edit.py install -Dm 755 util/apcb/apcb_v3_edit.py %{buildroot}%{_bindir}/apcb_v3_edit.py -%dnl install -Dm 777 util/archive/archive %{buildroot}%{_bindir}/archive +install -Dm 777 util/archive/archive %{buildroot}%{_bindir}/archive install -Dm 755 %{_builddir}/autoport %{buildroot}%{_bindir}/autoport @@ -647,7 +640,7 @@ install -Dm 755 util/hda-decoder/hda-decoder %{buildroot}%{_bindir}/hda-decoder install -Dm 755 util/ifdtool/ifdtool %{buildroot}%{_bindir}/ifdtool %ifarch x86_64 -install -Dm 755 util/intelmetool/intelmetool %{buildroot}%{_bindir}/intelmetool +install -Dm 755 util/intelmetool/build/intelmetool %{buildroot}%{_bindir}/intelmetool %endif %ifarch x86_64 @@ -850,6 +843,10 @@ cp Documentation/util/smmstoretool/index.md %{buildroot}%{_pkgdocdir}/smmstoreto %doc util/apcb/README %doc util/apcb/description.md +%files archive +%{_bindir}/archive +%doc util/archive/description.md + %files autoport %{_bindir}/autoport %doc util/autoport/*.md @@ -1130,6 +1127,9 @@ cp Documentation/util/smmstoretool/index.md %{buildroot}%{_pkgdocdir}/smmstoreto %doc util/xcompile/description.md %changelog +* Mon Jun 22 2026 Owen Zimmerman +- Update for 26.06, build archive subpackage + * Sun Dec 28 2025 Owen Zimmerman - Update macros, add %post symlinks From 4749c5bcb8c251c56efab240dad011fcec4277e7 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 23 Jun 2026 14:00:59 +0000 Subject: [PATCH 51/68] bump: lomiri-schemas --- .../lomiri-unity/lomiri-schemas/lomiri-schemas.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/anda/desktops/lomiri-unity/lomiri-schemas/lomiri-schemas.spec b/anda/desktops/lomiri-unity/lomiri-schemas/lomiri-schemas.spec index bc14a407ce..84f8e5bc8b 100644 --- a/anda/desktops/lomiri-unity/lomiri-schemas/lomiri-schemas.spec +++ b/anda/desktops/lomiri-unity/lomiri-schemas/lomiri-schemas.spec @@ -1,10 +1,10 @@ %global forgeurl https://gitlab.com/ubports/development/core/lomiri-schemas -%global commit f24a7d2ebbf2847bf2a82235935af787ca05bf90 +%global commit 1e7766c845373fd4689dae9307274c3dc4f1ac2d %forgemeta Name: lomiri-schemas -Version: 0.1.10 -Release: 1%?dist +Version: 0.1.11 +Release: 1%{?dist} Summary: Configuration schemas for lomiri License: LGPL-2.0-or-later URL: https://gitlab.com/ubports/development/core/lomiri-schemas From 59ee3973e07f87647f0d11c13bfdf7380fde1840 Mon Sep 17 00:00:00 2001 From: Pornpipat Popum Date: Tue, 23 Jun 2026 21:20:53 +0700 Subject: [PATCH 52/68] fix(1password): Exclude Electron vendored Chromium libraries, add helper (#13280) --- anda/apps/1password/1password.spec | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/anda/apps/1password/1password.spec b/anda/apps/1password/1password.spec index a25a2f4f18..d6a346879f 100644 --- a/anda/apps/1password/1password.spec +++ b/anda/apps/1password/1password.spec @@ -2,6 +2,10 @@ %global policy_owners unix-group:wheel %global appdir %{_datadir}/1password +# Exclude private Electron libraries bundled in the app payload. +%global __provides_exclude libffmpeg.so|libvk_swiftshader.so|libvulkan.so|libEGL.so|libGLESv2.so +%global __requires_exclude libffmpeg.so|libvk_swiftshader.so|libvulkan.so|libEGL.so|libGLESv2.so + %ifarch x86_64 %global tararch x64 %elifarch aarch64 @@ -10,7 +14,7 @@ Name: 1password Version: 8.12.24 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Password manager and secure wallet Packager: Cappy Ishihara @@ -66,16 +70,24 @@ rm -f %{buildroot}%{appdir}/com.1password.1Password.policy \ %{buildroot}%{appdir}/install.sh \ %{buildroot}%{appdir}/install_biometrics_policy.sh -mkdir -p %{buildroot}%{_bindir} +mkdir -p %{buildroot}%{_bindir} %{buildroot}%{_libexecdir} ln -sr %{buildroot}%{appdir}/%{name} %{buildroot}%{_bindir}/%{name} +ln -sr %{buildroot}%{appdir}/1Password-Crash-Handler %{buildroot}%{_libexecdir}/1Password-Crash-Handler +ln -sr %{buildroot}%{appdir}/1Password-BrowserSupport %{buildroot}%{_libexecdir}/1Password-BrowserSupport +ln -sr %{buildroot}%{appdir}/1Password-LastPass-Exporter %{buildroot}%{_libexecdir}/1Password-LastPass-Exporter +ln -sr %{buildroot}%{appdir}/op-ssh-sign %{buildroot}%{_libexecdir}/op-ssh-sign chmod 4755 %{buildroot}%{appdir}/chrome-sandbox chmod 2755 %{buildroot}%{appdir}/1Password-BrowserSupport if [ -f %{buildroot}%{appdir}/onepassword-mcp ]; then + ln -sr %{buildroot}%{appdir}/onepassword-mcp %{buildroot}%{_libexecdir}/onepassword-mcp chmod 2755 %{buildroot}%{appdir}/onepassword-mcp fi find %{buildroot}%{appdir} -type f \ ! -name chrome-sandbox \ + ! -name 1Password-Crash-Handler \ ! -name 1Password-BrowserSupport \ + ! -name 1Password-LastPass-Exporter \ + ! -name op-ssh-sign \ ! -name onepassword-mcp \ -printf '/%%P\n' | sed "s|^/|%{appdir}/|" > app.files @@ -84,9 +96,17 @@ find %{buildroot}%{appdir} -type f \ %files -f app.files %{_bindir}/%{name} +%{_libexecdir}/1Password-Crash-Handler +%{_libexecdir}/1Password-BrowserSupport +%{_libexecdir}/1Password-LastPass-Exporter +%{_libexecdir}/op-ssh-sign +%{_libexecdir}/onepassword-mcp %dir %{appdir} %attr(4755,root,root) %{appdir}/chrome-sandbox +%{appdir}/1Password-Crash-Handler %attr(2755,root,onepassword) %{appdir}/1Password-BrowserSupport +%{appdir}/1Password-LastPass-Exporter +%{appdir}/op-ssh-sign %attr(2755,root,onepassword-mcp) %{appdir}/onepassword-mcp %{_datadir}/icons/hicolor/32x32/apps/1password.png %{_datadir}/icons/hicolor/64x64/apps/1password.png From 43e6159e47d1c94a6a1a7a5632b04a7da45d6e8d Mon Sep 17 00:00:00 2001 From: madomado Date: Tue, 23 Jun 2026 23:31:31 +0800 Subject: [PATCH 53/68] fix: topgrade (#13286) close #13278 Signed-off-by: madomado --- anda/tools/topgrade/rust-topgrade.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/tools/topgrade/rust-topgrade.spec b/anda/tools/topgrade/rust-topgrade.spec index 29bd74ef1a..7b7c305d41 100644 --- a/anda/tools/topgrade/rust-topgrade.spec +++ b/anda/tools/topgrade/rust-topgrade.spec @@ -10,7 +10,7 @@ Summary: Upgrade all the things SourceLicense: GPL-3.0-or-later License: ((MIT OR Apache-2.0) AND Unicode-3.0) AND (0BSD OR MIT OR Apache-2.0) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND GPL-3.0 AND GPL-3.0-only AND MIT AND (MIT OR Apache-2.0) AND (MIT OR Zlib OR Apache-2.0) AND MPL-2.0 AND (Unlicense OR MIT) AND (Zlib OR Apache-2.0 OR MIT) URL: https://crates.io/crates/topgrade -Source: %crates_source +Source: %terra_crates_source # Automatically generated patch to strip dependencies and normalize metadata BuildRequires: cargo From 325fc27f081d4e6b1d63e693ec6f669742ada856 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 23 Jun 2026 16:38:09 +0000 Subject: [PATCH 54/68] bump: discord-canary-openasar discord-canary glaze --- anda/apps/discord-canary-openasar/discord-canary-openasar.spec | 2 +- anda/apps/discord-canary/discord-canary.spec | 2 +- anda/lib/glaze/glaze.spec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec index ecc0a8e3e1..4abc3c7f85 100644 --- a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec +++ b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec @@ -6,7 +6,7 @@ %global __provides_exclude_from %{_datadir}/%{name}/.*\\.so Name: discord-canary-openasar -Version: 1.0.1322 +Version: 1.0.1323 Release: 1%{?dist} Summary: A snappier Discord rewrite with features like further customization and theming License: MIT AND https://discord.com/terms diff --git a/anda/apps/discord-canary/discord-canary.spec b/anda/apps/discord-canary/discord-canary.spec index 9ecfd7fbf5..b93f9d6d91 100644 --- a/anda/apps/discord-canary/discord-canary.spec +++ b/anda/apps/discord-canary/discord-canary.spec @@ -1,5 +1,5 @@ Name: discord-canary -Version: 1.0.1322 +Version: 1.0.1323 Release: 1%{?dist} Summary: Free Voice and Text Chat for Gamers URL: discord.com diff --git a/anda/lib/glaze/glaze.spec b/anda/lib/glaze/glaze.spec index a44efa1df4..f922378175 100644 --- a/anda/lib/glaze/glaze.spec +++ b/anda/lib/glaze/glaze.spec @@ -2,7 +2,7 @@ %global debug_package %{nil} Name: glaze-devel -Version: 7.8.2 +Version: 7.8.3 Release: 1%{?dist} License: MIT URL: https://stephenberry.github.io/glaze From 0fa94962943d2dd12ffd5cec2cc0bdce99360598 Mon Sep 17 00:00:00 2001 From: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> Date: Tue, 23 Jun 2026 13:20:15 -0500 Subject: [PATCH 55/68] fix: wails3 (#13271) Signed-off-by: Owen Zimmerman <123591347+Owen-sz@users.noreply.github.com> --- anda/lib/wails/v3/wails3.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/lib/wails/v3/wails3.spec b/anda/lib/wails/v3/wails3.spec index 697caab307..f86c6b1ad5 100644 --- a/anda/lib/wails/v3/wails3.spec +++ b/anda/lib/wails/v3/wails3.spec @@ -1,5 +1,5 @@ %global ver webview2/v1.0.25 -%global sanitized_ver %(echo %{ver} | sed 's/-/~/g') +%global sanitized_ver %(echo %{ver} | sed 's|.*/||') %global goipath github.com/wailsapp/wails/v3 Version: %{sanitized_ver} From f01e415a5021f087944ca97ec39353bfee802fc8 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 23 Jun 2026 18:29:36 +0000 Subject: [PATCH 56/68] bump: discord-canary-openasar discord-canary posthog --- anda/apps/discord-canary-openasar/discord-canary-openasar.spec | 2 +- anda/apps/discord-canary/discord-canary.spec | 2 +- anda/langs/python/posthog/posthog.spec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec index 4abc3c7f85..1a6315167c 100644 --- a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec +++ b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec @@ -6,7 +6,7 @@ %global __provides_exclude_from %{_datadir}/%{name}/.*\\.so Name: discord-canary-openasar -Version: 1.0.1323 +Version: 1.0.1324 Release: 1%{?dist} Summary: A snappier Discord rewrite with features like further customization and theming License: MIT AND https://discord.com/terms diff --git a/anda/apps/discord-canary/discord-canary.spec b/anda/apps/discord-canary/discord-canary.spec index b93f9d6d91..e0b1eb8969 100644 --- a/anda/apps/discord-canary/discord-canary.spec +++ b/anda/apps/discord-canary/discord-canary.spec @@ -1,5 +1,5 @@ Name: discord-canary -Version: 1.0.1323 +Version: 1.0.1324 Release: 1%{?dist} Summary: Free Voice and Text Chat for Gamers URL: discord.com diff --git a/anda/langs/python/posthog/posthog.spec b/anda/langs/python/posthog/posthog.spec index 7efbed40ee..d0b3589463 100644 --- a/anda/langs/python/posthog/posthog.spec +++ b/anda/langs/python/posthog/posthog.spec @@ -2,7 +2,7 @@ %global _desc Send usage data from your Python code to PostHog. Name: python-%{pypi_name} -Version: 7.20.2 +Version: 7.20.3 Release: 1%{?dist} Summary: Send usage data from your Python code to PostHog License: MIT From 4b76352e83af9d36ad710bd9a19252e303a5a99f Mon Sep 17 00:00:00 2001 From: Hikari Hayashi Date: Wed, 24 Jun 2026 03:38:53 +0800 Subject: [PATCH 57/68] fix: add fonts suffix to Source Han subpackages (#13234) * Add fonts suffix to Source Han subpackages * Use full names for Source Han subpackages --- anda/fonts/source-han-sans/source-han-sans-fonts.spec | 6 +++--- anda/fonts/source-han-serif/source-han-serif-fonts.spec | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/anda/fonts/source-han-sans/source-han-sans-fonts.spec b/anda/fonts/source-han-sans/source-han-sans-fonts.spec index ee5e7198d9..1c43d63fd2 100644 --- a/anda/fonts/source-han-sans/source-han-sans-fonts.spec +++ b/anda/fonts/source-han-sans/source-han-sans-fonts.spec @@ -27,10 +27,10 @@ This package ships the Static OTC versions. %dnl Parameterized macros cannot be defined using `%global`. Guess I'm today years old. — mado %dnl ╭── %define fpkg(vhs) %define fpkg(vhs) \ -%package %{-h:hw-}%{-v:vf-}%{-s:subset-}%1 \ +%package -n source-han-sans-%{-h:hw-}%{-v:vf-}%{-s:subset-}%1-fonts \ Summary: %name: %{-h:half-width }%{-v:variable }%{-s:subset }%{upper:%1} font files \ \ -%description %{-h:hw-}%{-v:vf-}%{-s:subset-}%1 \ +%description -n source-han-sans-%{-h:hw-}%{-v:vf-}%{-s:subset-}%1-fonts \ This package provides a specific font type of %name. \ %{-v:VF: variable font: Variable font weights are supported. \ }%{-h:HW: half-width: some proportional punctuations are turned into half-width. \ @@ -39,7 +39,7 @@ https://github.com/adobe-fonts/source-han-sans/blob/release/SourceHanSansReadMe. }%{-s:Subset: The fonts are split into regional-specific subset fonts. \ } \ \ -%files %{-h:hw-}%{-v:vf-}%{-s:subset-}%1 \ +%files -n source-han-sans-%{-h:hw-}%{-v:vf-}%{-s:subset-}%1-fonts \ %license LICENSE.txt %dnl ╰── %define fpkg(vhs) diff --git a/anda/fonts/source-han-serif/source-han-serif-fonts.spec b/anda/fonts/source-han-serif/source-han-serif-fonts.spec index 3feed92b3e..dc1e250a8e 100644 --- a/anda/fonts/source-han-serif/source-han-serif-fonts.spec +++ b/anda/fonts/source-han-serif/source-han-serif-fonts.spec @@ -27,10 +27,10 @@ This package ships the Static OTC versions. %dnl Parameterized macros cannot be defined using `%global`. Guess I'm today years old. — mado %dnl ╭── %define fpkg(vhs) %define fpkg(vhs) \ -%package %{-h:hw-}%{-v:vf-}%{-s:subset-}%1 \ +%package -n source-han-serif-%{-h:hw-}%{-v:vf-}%{-s:subset-}%1-fonts \ Summary: %name: %{-h:half-width }%{-v:variable }%{-s:subset }%{upper:%1} font files \ \ -%description %{-h:hw-}%{-v:vf-}%{-s:subset-}%1 \ +%description -n source-han-serif-%{-h:hw-}%{-v:vf-}%{-s:subset-}%1-fonts \ This package provides a specific font type of %name. \ %{-v:VF: variable font: Variable font weights are supported. \ }%{-h:HW: half-width: some proportional punctuations are turned into half-width. \ @@ -39,7 +39,7 @@ https://github.com/adobe-fonts/source-han-sans/blob/release/SourceHanSansReadMe. }%{-s:Subset: The fonts are split into regional-specific subset fonts. \ } \ \ -%files %{-h:hw-}%{-v:vf-}%{-s:subset-}%1 \ +%files -n source-han-serif-%{-h:hw-}%{-v:vf-}%{-s:subset-}%1-fonts \ %license LICENSE.txt %dnl ╰── %define fpkg(vhs) From b805d498351ec45b09a023ea7b20b88be46d1cc9 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 23 Jun 2026 20:35:27 +0000 Subject: [PATCH 58/68] bump: discord-canary-openasar discord-canary rust-mise rust-usage-cli zig-master-bootstrap vgmstream electron --- .../apps/discord-canary-openasar/discord-canary-openasar.spec | 2 +- anda/apps/discord-canary/discord-canary.spec | 2 +- anda/buildsys/mise/rust-mise.spec | 2 +- anda/langs/rust/usage/rust-usage-cli.spec | 2 +- anda/langs/zig/bootstrap/setup.sh | 2 +- anda/langs/zig/bootstrap/zig-master-bootstrap.spec | 2 +- anda/multimedia/vgmstream/vgmstream.spec | 4 ++-- anda/tools/electron/electron.spec | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec index 1a6315167c..166b89df2e 100644 --- a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec +++ b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec @@ -6,7 +6,7 @@ %global __provides_exclude_from %{_datadir}/%{name}/.*\\.so Name: discord-canary-openasar -Version: 1.0.1324 +Version: 1.0.1326 Release: 1%{?dist} Summary: A snappier Discord rewrite with features like further customization and theming License: MIT AND https://discord.com/terms diff --git a/anda/apps/discord-canary/discord-canary.spec b/anda/apps/discord-canary/discord-canary.spec index e0b1eb8969..5decc698d0 100644 --- a/anda/apps/discord-canary/discord-canary.spec +++ b/anda/apps/discord-canary/discord-canary.spec @@ -1,5 +1,5 @@ Name: discord-canary -Version: 1.0.1324 +Version: 1.0.1326 Release: 1%{?dist} Summary: Free Voice and Text Chat for Gamers URL: discord.com diff --git a/anda/buildsys/mise/rust-mise.spec b/anda/buildsys/mise/rust-mise.spec index 0712a8f5ea..ec2cf557c1 100644 --- a/anda/buildsys/mise/rust-mise.spec +++ b/anda/buildsys/mise/rust-mise.spec @@ -5,7 +5,7 @@ %global crate mise Name: rust-mise -Version: 2026.6.12 +Version: 2026.6.13 Release: 1%{?dist} Summary: Front-end to your dev env diff --git a/anda/langs/rust/usage/rust-usage-cli.spec b/anda/langs/rust/usage/rust-usage-cli.spec index 9743077480..c315f74624 100644 --- a/anda/langs/rust/usage/rust-usage-cli.spec +++ b/anda/langs/rust/usage/rust-usage-cli.spec @@ -4,7 +4,7 @@ %global crate usage-cli Name: rust-usage-cli -Version: 3.5.2 +Version: 3.5.3 Release: 1%{?dist} Summary: CLI for working with usage-based CLIs diff --git a/anda/langs/zig/bootstrap/setup.sh b/anda/langs/zig/bootstrap/setup.sh index 9d33a54769..4070904d83 100755 --- a/anda/langs/zig/bootstrap/setup.sh +++ b/anda/langs/zig/bootstrap/setup.sh @@ -1,6 +1,6 @@ #!/usr/bin/bash -version=0.17.0-dev.947+36069a2a7 +version=0.17.0-dev.956+2dca73595 mirrors=() diff --git a/anda/langs/zig/bootstrap/zig-master-bootstrap.spec b/anda/langs/zig/bootstrap/zig-master-bootstrap.spec index b1deaef036..8706a6c955 100644 --- a/anda/langs/zig/bootstrap/zig-master-bootstrap.spec +++ b/anda/langs/zig/bootstrap/zig-master-bootstrap.spec @@ -6,7 +6,7 @@ %define llvm_compat 22 %endif %global llvm_version 22.0.0 -%global ver 0.17.0-dev.947+36069a2a7 +%global ver 0.17.0-dev.956+2dca73595 %bcond bootstrap 1 %bcond docs %{without bootstrap} %bcond test 1 diff --git a/anda/multimedia/vgmstream/vgmstream.spec b/anda/multimedia/vgmstream/vgmstream.spec index 2c617d3092..be6942fe2d 100644 --- a/anda/multimedia/vgmstream/vgmstream.spec +++ b/anda/multimedia/vgmstream/vgmstream.spec @@ -1,6 +1,6 @@ -%global commit 003f0869e0f0746ac3d9a0f5f32d07d81a45f165 +%global commit c7ab409b3f912cf87c59f05b2bc310cc5f70bfbe %global shortcommit %{sub %{commit} 1 7} -%global commit_date 20260621 +%global commit_date 20260623 Name: vgmstream Version: 0~%{commit_date}git.%shortcommit diff --git a/anda/tools/electron/electron.spec b/anda/tools/electron/electron.spec index f5fb0de3cc..3275257a5c 100644 --- a/anda/tools/electron/electron.spec +++ b/anda/tools/electron/electron.spec @@ -1,6 +1,6 @@ Name: electron %electronmeta -Version: 42.4.1 +Version: 42.5.0 Release: 1%{?dist} Summary: Build cross platform desktop apps with web technologies License: %{electron_license} From f742d220c14745b26267ecdd2f103ebc27ed42fa Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 23 Jun 2026 22:02:07 +0000 Subject: [PATCH 59/68] bump: discord-canary-openasar discord-canary gmodpatchtool --- anda/apps/discord-canary-openasar/discord-canary-openasar.spec | 2 +- anda/apps/discord-canary/discord-canary.spec | 2 +- anda/games/gmodpatchtool/gmodpatchtool.spec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec index 166b89df2e..136c74d2b9 100644 --- a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec +++ b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec @@ -6,7 +6,7 @@ %global __provides_exclude_from %{_datadir}/%{name}/.*\\.so Name: discord-canary-openasar -Version: 1.0.1326 +Version: 1.0.1328 Release: 1%{?dist} Summary: A snappier Discord rewrite with features like further customization and theming License: MIT AND https://discord.com/terms diff --git a/anda/apps/discord-canary/discord-canary.spec b/anda/apps/discord-canary/discord-canary.spec index 5decc698d0..2ad8f3b265 100644 --- a/anda/apps/discord-canary/discord-canary.spec +++ b/anda/apps/discord-canary/discord-canary.spec @@ -1,5 +1,5 @@ Name: discord-canary -Version: 1.0.1326 +Version: 1.0.1328 Release: 1%{?dist} Summary: Free Voice and Text Chat for Gamers URL: discord.com diff --git a/anda/games/gmodpatchtool/gmodpatchtool.spec b/anda/games/gmodpatchtool/gmodpatchtool.spec index 95344b2db8..7597eb1221 100644 --- a/anda/games/gmodpatchtool/gmodpatchtool.spec +++ b/anda/games/gmodpatchtool/gmodpatchtool.spec @@ -11,7 +11,7 @@ Automatically patches Garry's Mod's internal Chromium Embedded Framework to: %undefine __brp_mangle_shebangs Name: gmodpatchtool -Version: 20251102 +Version: 20260623 Release: 1%{?dist} SourceLicense: GPL-3.0-only License: ((MIT OR Apache-2.0) AND Unicode-3.0) AND (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND (Apache-2.0 AND ISC) AND (Apache-2.0 AND MIT) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR GPL-2.0-only) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND BSD-2-Clause AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND BSD-3-Clause AND (BSD-3-Clause AND MIT) AND (BSD-3-Clause OR MIT) AND (BSD-3-Clause OR MIT OR Apache-2.0) AND BSL-1.0 AND CC0-1.0 AND (CC0-1.0 OR Apache-2.0 OR Apache-2.0 WITH LLVM-exception) AND (CC0-1.0 OR MIT-0 OR Apache-2.0) AND GPL-3.0-only AND ISC AND MIT AND (MIT OR Apache-2.0) AND (MIT OR Apache-2.0 OR CC0-1.0) AND (MIT OR Apache-2.0 OR LGPL-2.1-or-later) AND (MIT OR Apache-2.0 OR Zlib) AND (MIT OR Zlib OR Apache-2.0) AND MPL-2.0 AND Unicode-3.0 AND (Unlicense OR MIT) AND Zlib AND (Zlib OR Apache-2.0 OR MIT) AND bzip2-1.0.6 From dcc453032e9ee484ae35b4c76dd19b77014c6a75 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 23 Jun 2026 22:44:57 +0000 Subject: [PATCH 60/68] bump(branch): zig-master --- anda/langs/zig/master/zig-master.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/langs/zig/master/zig-master.spec b/anda/langs/zig/master/zig-master.spec index 02d67d2b88..df882bfc8a 100644 --- a/anda/langs/zig/master/zig-master.spec +++ b/anda/langs/zig/master/zig-master.spec @@ -18,7 +18,7 @@ %global zig_cache_dir %{builddir}/zig-cache Name: zig-master -Version: 0.17.0~dev.947+36069a2a7 +Version: 0.17.0~dev.956+2dca73595 Release: 2%{?dist} Summary: Master builds of the Zig language License: MIT AND NCSA AND LGPL-2.1-or-later AND LGPL-2.1-or-later WITH GCC-exception-2.0 AND GPL-2.0-or-later AND GPL-2.0-or-later WITH GCC-exception-2.0 AND BSD-3-Clause AND Inner-Net-2.0 AND ISC AND LicenseRef-Fedora-Public-Domain AND GFDL-1.1-or-later AND ZPL-2.1 From 2c67858f61297a26e3192f2e8a6613a2a6be8bad Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 23 Jun 2026 23:19:39 +0000 Subject: [PATCH 61/68] bump: lomiri-url-dispatcher rpcs3 --- .../lomiri-url-dispatcher/lomiri-url-dispatcher.spec | 6 +++--- anda/games/rpcs3/rpcs3.spec | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/anda/desktops/lomiri-unity/lomiri-url-dispatcher/lomiri-url-dispatcher.spec b/anda/desktops/lomiri-unity/lomiri-url-dispatcher/lomiri-url-dispatcher.spec index 338303c598..073acfc758 100644 --- a/anda/desktops/lomiri-unity/lomiri-url-dispatcher/lomiri-url-dispatcher.spec +++ b/anda/desktops/lomiri-unity/lomiri-url-dispatcher/lomiri-url-dispatcher.spec @@ -1,10 +1,10 @@ %global forgeurl https://gitlab.com/ubports/development/core/lomiri-url-dispatcher -%global commit 8aa052982ef67fdd130ee7b5d4731eb2162e4e47 +%global commit c8b423ef0e18ca7f57a40a00a8319cffbdfb000a %forgemeta Name: lomiri-url-dispatcher -Version: 0.1.4 -Release: 1%?dist +Version: 0.1.5 +Release: 1%{?dist} Summary: A small library for handling URLs over dbus License: LGPL-3.0 diff --git a/anda/games/rpcs3/rpcs3.spec b/anda/games/rpcs3/rpcs3.spec index b8e3de75bf..c9fc54b550 100644 --- a/anda/games/rpcs3/rpcs3.spec +++ b/anda/games/rpcs3/rpcs3.spec @@ -9,8 +9,8 @@ # GLIBCXX_ASSERTIONS is known to break RPCS3 %global build_cflags %(echo "%{__build_flags_lang_c}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags} %global build_cxxflags %(echo "%{__build_flags_lang_cxx}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags} -%global commit 927e2492ef720d2223bd8b149a02af875e11c398 -%global ver 0.0.41-19508 +%global commit 42242b3c430934c1ee47c1406919658c96c6f579 +%global ver 0.0.41-19510 Name: rpcs3 Version: %(echo %{ver} | sed 's/-/^/g') From c7e5a776eb5204edeef03169848a0517cfa646df Mon Sep 17 00:00:00 2001 From: Raboneko Date: Wed, 24 Jun 2026 00:15:24 +0000 Subject: [PATCH 62/68] bump: discord-canary-openasar discord-canary --- anda/apps/discord-canary-openasar/discord-canary-openasar.spec | 2 +- anda/apps/discord-canary/discord-canary.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec index 136c74d2b9..b57fff77f5 100644 --- a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec +++ b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec @@ -6,7 +6,7 @@ %global __provides_exclude_from %{_datadir}/%{name}/.*\\.so Name: discord-canary-openasar -Version: 1.0.1328 +Version: 1.0.1330 Release: 1%{?dist} Summary: A snappier Discord rewrite with features like further customization and theming License: MIT AND https://discord.com/terms diff --git a/anda/apps/discord-canary/discord-canary.spec b/anda/apps/discord-canary/discord-canary.spec index 2ad8f3b265..89a4fe9231 100644 --- a/anda/apps/discord-canary/discord-canary.spec +++ b/anda/apps/discord-canary/discord-canary.spec @@ -1,5 +1,5 @@ Name: discord-canary -Version: 1.0.1328 +Version: 1.0.1330 Release: 1%{?dist} Summary: Free Voice and Text Chat for Gamers URL: discord.com From f0873fa15c76d9d87821be27d7b619a114f6f07b Mon Sep 17 00:00:00 2001 From: Raboneko Date: Wed, 24 Jun 2026 03:56:26 +0000 Subject: [PATCH 63/68] bump(nightly): mpv-nightly zed-nightly xray-nightly nim-nightly types-colorama v2ray-domain-list-community cloud-hypervisor-nightly opentabletdriver-nightly scx-scheds-nightly natscli rpi-utils --- anda/apps/mpv/mpv-nightly.spec | 4 ++-- anda/devs/zed/nightly/zed-nightly.spec | 4 ++-- anda/langs/go/xray/nightly/xray-nightly.spec | 4 ++-- anda/langs/nim/nim-nightly/nim-nightly.spec | 4 ++-- anda/langs/python/types-colorama/types-colorama.spec | 4 ++-- .../v2ray-domain-list-community.spec | 6 +++--- .../cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec | 4 ++-- .../opentabletdriver-nightly/opentabletdriver-nightly.spec | 4 ++-- anda/system/scx-scheds/nightly/scx-scheds-nightly.spec | 4 ++-- anda/tools/natscli/natscli.spec | 4 ++-- anda/tools/rpi-utils/rpi-utils.spec | 4 ++-- 11 files changed, 23 insertions(+), 23 deletions(-) diff --git a/anda/apps/mpv/mpv-nightly.spec b/anda/apps/mpv/mpv-nightly.spec index 1334644dec..6e1b144468 100644 --- a/anda/apps/mpv/mpv-nightly.spec +++ b/anda/apps/mpv/mpv-nightly.spec @@ -1,9 +1,9 @@ # Disable X11 for RHEL 10+ %bcond x11 %[%{undefined rhel} || 0%{?rhel} < 10] -%global commit 2bd9c3229ffd1a6c831d2e4c9297105bb8fc6437 +%global commit 2339eb72767517fc5a113283939f59076946fbc1 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20260622 +%global commit_date 20260624 %global ver 0.41.0 Name: mpv-nightly diff --git a/anda/devs/zed/nightly/zed-nightly.spec b/anda/devs/zed/nightly/zed-nightly.spec index c059b66dbe..11669973c6 100644 --- a/anda/devs/zed/nightly/zed-nightly.spec +++ b/anda/devs/zed/nightly/zed-nightly.spec @@ -1,6 +1,6 @@ -%global commit 14f9b9d077ea4de768408aa3bed285baacea13b0 +%global commit c49a29f46179525358eb74dbce67fddb2aafa1f0 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20260623 +%global commit_date 20260624 %global ver 1.9.0 %bcond_with check diff --git a/anda/langs/go/xray/nightly/xray-nightly.spec b/anda/langs/go/xray/nightly/xray-nightly.spec index a770ce2f92..6f805dfc32 100644 --- a/anda/langs/go/xray/nightly/xray-nightly.spec +++ b/anda/langs/go/xray/nightly/xray-nightly.spec @@ -1,7 +1,7 @@ -%global commit b99c3e56574fb0317608c49dd1dd9af816db7a9e +%global commit ac04c445bd09541cc9c35a120ee01d8a177a4d83 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global ver v26.3.27 -%global commit_date 20260623 +%global commit_date 20260624 %global goipath github.com/XTLS/Xray-core Version: %{ver}^%{commit_date}git.%{shortcommit} diff --git a/anda/langs/nim/nim-nightly/nim-nightly.spec b/anda/langs/nim/nim-nightly/nim-nightly.spec index ac20b7fc8e..634bcbce01 100644 --- a/anda/langs/nim/nim-nightly/nim-nightly.spec +++ b/anda/langs/nim/nim-nightly/nim-nightly.spec @@ -1,8 +1,8 @@ %global csrc_commit 561b417c65791cd8356b5f73620914ceff845d10 -%global commit f8e470eb579c96515693d76ad393dbd41b393f26 +%global commit d251eaedeb35f4cf9d7b0bf3f197bf67f4821600 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global ver 2.3.1 -%global commit_date 20260617 +%global commit_date 20260624 %global debug_package %nil Name: nim-nightly diff --git a/anda/langs/python/types-colorama/types-colorama.spec b/anda/langs/python/types-colorama/types-colorama.spec index 8b2706bc6b..893376182c 100644 --- a/anda/langs/python/types-colorama/types-colorama.spec +++ b/anda/langs/python/types-colorama/types-colorama.spec @@ -1,5 +1,5 @@ -%global commit c9e422dbac410054732ae2006fa088db44f7d07d -%global commit_date 20260623 +%global commit f9e0f8ce9a933648022d618961693ee74cb8d4f4 +%global commit_date 20260624 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global pypi_name types-colorama diff --git a/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec b/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec index 1e4a04c78b..e76c495a97 100644 --- a/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec +++ b/anda/misc/v2ray-domain-list-community/v2ray-domain-list-community.spec @@ -1,7 +1,7 @@ -%global commit 3a8c07a8c2194bfe4390faa2bd364c428c4f1402 +%global commit 42ca460bb0495eec5a704611d6bc6cff387257a5 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global ver 20260621074522 -%global commit_date 20260622 +%global ver 20260623060549 +%global commit_date 20260624 Name: v2ray-domain-list-community Version: %{ver}^%{commit_date}git.%{shortcommit} diff --git a/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec b/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec index d1abc9403d..4e0df82889 100644 --- a/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec +++ b/anda/system/cloud-hypervisor/nightly/cloud-hypervisor-nightly.spec @@ -1,5 +1,5 @@ -%global commit bb81c6650ba70d5972d9ff34d3a1e503e3666b81 -%global commit_date 20260623 +%global commit 755d42eec0a18025ccbb215f08e11a526310bc2c +%global commit_date 20260624 %global shortcommit %(c=%{commit}; echo ${c:0:7}) Name: cloud-hypervisor-nightly diff --git a/anda/system/opentabletdriver-nightly/opentabletdriver-nightly.spec b/anda/system/opentabletdriver-nightly/opentabletdriver-nightly.spec index 834f2eb6a9..e5b6f0a2d1 100644 --- a/anda/system/opentabletdriver-nightly/opentabletdriver-nightly.spec +++ b/anda/system/opentabletdriver-nightly/opentabletdriver-nightly.spec @@ -1,6 +1,6 @@ -%global commit 6c33043154969d82b60ba8bb47da8d778063af56 +%global commit 183c3d76c26aeb97fc25bdade9df7b734fbfb2f3 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20260623 +%global commit_date 20260624 %global ver 0.6.7 # We aren't using Mono but RPM expected Mono diff --git a/anda/system/scx-scheds/nightly/scx-scheds-nightly.spec b/anda/system/scx-scheds/nightly/scx-scheds-nightly.spec index a12e2122b6..c57adccc19 100644 --- a/anda/system/scx-scheds/nightly/scx-scheds-nightly.spec +++ b/anda/system/scx-scheds/nightly/scx-scheds-nightly.spec @@ -1,6 +1,6 @@ -%global commit 2088c10c1c24eda0a733d5ab0892ca493a9b1df7 +%global commit 19ed8749bb7acca29bd361479d71a07815442273 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commitdate 20260623 +%global commitdate 20260624 %global ver 1.1.1 %undefine __brp_mangle_shebangs diff --git a/anda/tools/natscli/natscli.spec b/anda/tools/natscli/natscli.spec index 83d3f62933..60a7788404 100644 --- a/anda/tools/natscli/natscli.spec +++ b/anda/tools/natscli/natscli.spec @@ -1,7 +1,7 @@ # https://github.com/nats-io/natscli %global goipath github.com/nats-io/natscli -%global commit 6d4a7d8a8b746b41149a47c9a9a354f4d8e4c59e -%global commit_date 20260606 +%global commit 565da5e43bc513c1a91576511dc0a98104eeae79 +%global commit_date 20260624 %global shortcommit %{sub %{commit} 1 7} %gometa -f diff --git a/anda/tools/rpi-utils/rpi-utils.spec b/anda/tools/rpi-utils/rpi-utils.spec index 560109e553..0ff6c837dd 100644 --- a/anda/tools/rpi-utils/rpi-utils.spec +++ b/anda/tools/rpi-utils/rpi-utils.spec @@ -1,5 +1,5 @@ -%global commit 61371fa6d93463c5451131f7bb68ae145aaf1e7a -%global commit_date 20260618 +%global commit a30e7c7b227d9a5e6dbedc1d343077be7ad92959 +%global commit_date 20260624 %global shortcommit %(c=%{commit}; echo ${c:0:7}) Name: rpi-utils From 5ceea3d618bc9302e1e08d7aa73a2f9fe1c89ff5 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Wed, 24 Jun 2026 04:40:28 +0000 Subject: [PATCH 64/68] bump: discord-canary-openasar discord-canary ruffle-nightly --- anda/apps/discord-canary-openasar/discord-canary-openasar.spec | 2 +- anda/apps/discord-canary/discord-canary.spec | 2 +- anda/apps/ruffle/ruffle-nightly.spec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec index b57fff77f5..1c1a881019 100644 --- a/anda/apps/discord-canary-openasar/discord-canary-openasar.spec +++ b/anda/apps/discord-canary-openasar/discord-canary-openasar.spec @@ -6,7 +6,7 @@ %global __provides_exclude_from %{_datadir}/%{name}/.*\\.so Name: discord-canary-openasar -Version: 1.0.1330 +Version: 1.0.1333 Release: 1%{?dist} Summary: A snappier Discord rewrite with features like further customization and theming License: MIT AND https://discord.com/terms diff --git a/anda/apps/discord-canary/discord-canary.spec b/anda/apps/discord-canary/discord-canary.spec index 89a4fe9231..45533c73d1 100644 --- a/anda/apps/discord-canary/discord-canary.spec +++ b/anda/apps/discord-canary/discord-canary.spec @@ -1,5 +1,5 @@ Name: discord-canary -Version: 1.0.1330 +Version: 1.0.1333 Release: 1%{?dist} Summary: Free Voice and Text Chat for Gamers URL: discord.com diff --git a/anda/apps/ruffle/ruffle-nightly.spec b/anda/apps/ruffle/ruffle-nightly.spec index f7412c1f6d..04f684b5d0 100644 --- a/anda/apps/ruffle/ruffle-nightly.spec +++ b/anda/apps/ruffle/ruffle-nightly.spec @@ -1,4 +1,4 @@ -%global ver 2026-06-23 +%global ver 2026-06-24 %global goodver %(echo %ver | sed 's/-//g') %global __brp_mangle_shebangs %{nil} %bcond_without mold From 072926c2f6f68470f8eff8c655b94000627546c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 02:38:32 -0500 Subject: [PATCH 65/68] build(deps): bump actions/checkout from 6.0.3 to 7.0.0 (#13298) Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.3 to 7.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/df4cb1c069e1874edd31b4311f1884172cec0e10...9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/autobuild.yml | 2 +- .github/workflows/bootstrap.yml | 2 +- .github/workflows/build.yml | 2 +- .github/workflows/json-build.yml | 2 +- .github/workflows/scorecard.yml | 2 +- .github/workflows/update-branch.yml | 2 +- .github/workflows/update-comps.yml | 2 +- .github/workflows/update-nightly.yml | 2 +- .github/workflows/update-weekly.yml | 2 +- .github/workflows/update.yml | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/autobuild.yml b/.github/workflows/autobuild.yml index ab3adfb9f4..e7e84fa87d 100644 --- a/.github/workflows/autobuild.yml +++ b/.github/workflows/autobuild.yml @@ -33,7 +33,7 @@ jobs: - name: Set workspace as safe run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Checkout - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: fetch-depth: 0 - name: Generate build matrix diff --git a/.github/workflows/bootstrap.yml b/.github/workflows/bootstrap.yml index e21cb767aa..330334f577 100644 --- a/.github/workflows/bootstrap.yml +++ b/.github/workflows/bootstrap.yml @@ -24,7 +24,7 @@ jobs: dnf5 swap -y --setopt=install_weak_deps=False systemd-standalone-sysusers systemd dnf5 install -y --setopt=install_weak_deps=False curl wget git-core openssl-devel cargo podman fuse-overlayfs dnf5-plugins rpmbuild script - - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: ref: f${{ matrix.version }} fetch-depth: 1 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 28e0af35fc..3adab0003a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,7 @@ jobs: options: --cap-add=SYS_ADMIN --privileged steps: - name: Checkout - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: fetch-depth: 0 - name: Setup Git diff --git a/.github/workflows/json-build.yml b/.github/workflows/json-build.yml index a5232bd3e0..c9ca5186dc 100644 --- a/.github/workflows/json-build.yml +++ b/.github/workflows/json-build.yml @@ -51,7 +51,7 @@ jobs: options: --cap-add=SYS_ADMIN --privileged steps: - name: Checkout - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: fetch-depth: 0 diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index 039ff7772b..6f888de5a3 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -34,7 +34,7 @@ jobs: steps: - name: "Checkout code" - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: persist-credentials: false diff --git a/.github/workflows/update-branch.yml b/.github/workflows/update-branch.yml index e46e20be6c..be1ba9a5e0 100644 --- a/.github/workflows/update-branch.yml +++ b/.github/workflows/update-branch.yml @@ -24,7 +24,7 @@ jobs: options: --cap-add=SYS_ADMIN --privileged steps: - name: Checkout - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: ref: ${{ matrix.branch }} fetch-depth: 0 diff --git a/.github/workflows/update-comps.yml b/.github/workflows/update-comps.yml index 15609c4dae..0e5cfa18eb 100644 --- a/.github/workflows/update-comps.yml +++ b/.github/workflows/update-comps.yml @@ -20,7 +20,7 @@ jobs: container: image: ghcr.io/terrapkg/builder:frawhide steps: - - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - name: Push to subatomic run: | branch=${{ github.ref_name }} diff --git a/.github/workflows/update-nightly.yml b/.github/workflows/update-nightly.yml index 403e7d2ba0..8a68dfbcce 100644 --- a/.github/workflows/update-nightly.yml +++ b/.github/workflows/update-nightly.yml @@ -16,7 +16,7 @@ jobs: options: --cap-add=SYS_ADMIN --privileged steps: - name: Checkout - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: fetch-depth: 0 ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }} diff --git a/.github/workflows/update-weekly.yml b/.github/workflows/update-weekly.yml index 8074bdb5d0..80c43b8022 100644 --- a/.github/workflows/update-weekly.yml +++ b/.github/workflows/update-weekly.yml @@ -16,7 +16,7 @@ jobs: options: --cap-add=SYS_ADMIN --privileged steps: - name: Checkout - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: fetch-depth: 0 ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }} diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index d91a0ab01b..741623d0b3 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -16,7 +16,7 @@ jobs: options: --cap-add=SYS_ADMIN --privileged steps: - name: Checkout - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: fetch-depth: 0 ssh-key: ${{ secrets.SSH_AUTHENTICATION_KEY }} From 475de1b2874960309905f4f4db22742f3d32bbea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 02:40:32 -0500 Subject: [PATCH 66/68] build(deps): bump sorenlouv/backport-github-action from 12.0.0 to 12.0.4 (#13297) Bumps [sorenlouv/backport-github-action](https://github.com/sorenlouv/backport-github-action) from 12.0.0 to 12.0.4. - [Release notes](https://github.com/sorenlouv/backport-github-action/releases) - [Commits](https://github.com/sorenlouv/backport-github-action/compare/85813678d776774a19ec5af56bd3a04305946f8a...8a6c0381851f43f9f1fddc7303f0e9015eb57b62) --- updated-dependencies: - dependency-name: sorenlouv/backport-github-action dependency-version: 12.0.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/sync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml index 6da91e59e6..f80e246eac 100644 --- a/.github/workflows/sync.yml +++ b/.github/workflows/sync.yml @@ -27,7 +27,7 @@ jobs: git config --global commit.gpgsign true - name: Backport Action - uses: sorenlouv/backport-github-action@85813678d776774a19ec5af56bd3a04305946f8a # v12.0.0 + uses: sorenlouv/backport-github-action@8a6c0381851f43f9f1fddc7303f0e9015eb57b62 # v12.0.4 with: github_token: ${{ secrets.RABONEKO_BACKPORT_GITHUB_TOKEN }} auto_backport_label_prefix: sync- From 14ac22d36648335eecdc170cfc1de6a77c4b567d Mon Sep 17 00:00:00 2001 From: Raboneko Date: Wed, 24 Jun 2026 08:04:38 +0000 Subject: [PATCH 67/68] bump: osu-lazer rpcs3 --- anda/games/osu-lazer/osu-lazer.spec | 2 +- anda/games/rpcs3/rpcs3.spec | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/anda/games/osu-lazer/osu-lazer.spec b/anda/games/osu-lazer/osu-lazer.spec index 4d43023159..5bdd70df80 100644 --- a/anda/games/osu-lazer/osu-lazer.spec +++ b/anda/games/osu-lazer/osu-lazer.spec @@ -3,7 +3,7 @@ %define __strip /bin/true Name: osu-lazer -Version: 2026.620.0 +Version: 2026.624.0 Release: 1%{?dist} Summary: The future of osu! and the beginning of an open era! Commonly known by the codename osu!lazer. Pew pew. ExclusiveArch: x86_64 diff --git a/anda/games/rpcs3/rpcs3.spec b/anda/games/rpcs3/rpcs3.spec index c9fc54b550..25ee9fe8da 100644 --- a/anda/games/rpcs3/rpcs3.spec +++ b/anda/games/rpcs3/rpcs3.spec @@ -9,8 +9,8 @@ # GLIBCXX_ASSERTIONS is known to break RPCS3 %global build_cflags %(echo "%{__build_flags_lang_c}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags} %global build_cxxflags %(echo "%{__build_flags_lang_cxx}" | sed 's|-Wp,-D_GLIBCXX_ASSERTIONS ||g') %{?_distro_extra_cflags} -%global commit 42242b3c430934c1ee47c1406919658c96c6f579 -%global ver 0.0.41-19510 +%global commit 87608865b60de01480320b4a29a1bcbda387bad3 +%global ver 0.0.41-19511 Name: rpcs3 Version: %(echo %{ver} | sed 's/-/^/g') From 3da8a3780846e11ef271cd51bc84d85301595635 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Wed, 24 Jun 2026 11:15:04 +0000 Subject: [PATCH 68/68] bump: wails3 --- anda/lib/wails/v3/wails3.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/lib/wails/v3/wails3.spec b/anda/lib/wails/v3/wails3.spec index f86c6b1ad5..a871084490 100644 --- a/anda/lib/wails/v3/wails3.spec +++ b/anda/lib/wails/v3/wails3.spec @@ -1,4 +1,4 @@ -%global ver webview2/v1.0.25 +%global ver webview2/v1.0.26 %global sanitized_ver %(echo %{ver} | sed 's|.*/||') %global goipath github.com/wailsapp/wails/v3