From b26d13c4f3f427a10bb86741929df946ac6651ce Mon Sep 17 00:00:00 2001 From: madomado Date: Thu, 16 May 2024 21:09:03 +0800 Subject: [PATCH 01/25] add: tuxclocker (#1254) --- anda/apps/tuxclocker/anda.hcl | 5 ++++ anda/apps/tuxclocker/tuxclocker.spec | 42 ++++++++++++++++++++++++++++ anda/apps/tuxclocker/update.rhai | 1 + 3 files changed, 48 insertions(+) create mode 100644 anda/apps/tuxclocker/anda.hcl create mode 100644 anda/apps/tuxclocker/tuxclocker.spec create mode 100644 anda/apps/tuxclocker/update.rhai diff --git a/anda/apps/tuxclocker/anda.hcl b/anda/apps/tuxclocker/anda.hcl new file mode 100644 index 0000000000..9989eae358 --- /dev/null +++ b/anda/apps/tuxclocker/anda.hcl @@ -0,0 +1,5 @@ +project pkg { + rpm { + spec = "tuxclocker.spec" + } +} diff --git a/anda/apps/tuxclocker/tuxclocker.spec b/anda/apps/tuxclocker/tuxclocker.spec new file mode 100644 index 0000000000..94a0d2d3e2 --- /dev/null +++ b/anda/apps/tuxclocker/tuxclocker.spec @@ -0,0 +1,42 @@ +Name: tuxclocker +Version: 1.5.1 +Release: 1%?dist +Summary: Qt overclocking tool for GNU/Linux +License: GPL-3.0 +URL: https://github.com/Lurkki14/tuxclocker +# boost qt5-qtbase qt5-qtcharts +Requires: hicolor-icon-theme +BuildRequires: git-core meson hwdata qt5-qttools gettext anda-srpm-macros +BuildRequires: boost-devel qt5-qtbase-devel qt5-qtcharts-devel libdrm-devel libXNVCtrl-devel openssl-devel +Recommends: xorg-x11-drv-nvidia libdrm libXNVCtrl hwdata + +%description +TuxClocker is a hardware controlling and monitoring program. +TuxClocker consists of a DBus daemon and a Qt GUI that uses the daemon. + +%prep +git clone --recursive %url . +git checkout %version + +%build +%meson +%meson_build + +%install +%meson_install + +%files +%doc README.md +%license LICENSE +%_bindir/tuxclocker-qt +%_bindir/tuxclockerd +%_libdir/libtuxclocker.so +%_libdir/tuxclocker/ +%_datadir/applications/tuxclocker.desktop +%_datadir/dbus-1/system-services/org.tuxclocker.service +%_datadir/dbus-1/system.d/org.tuxclocker.conf +%_datadir/locale/*/LC_MESSAGES/tuxclocker.mo +%_iconsdir/hicolor/scalable/apps/tuxclocker-logo.svg + +%changelog +%autochangelog diff --git a/anda/apps/tuxclocker/update.rhai b/anda/apps/tuxclocker/update.rhai new file mode 100644 index 0000000000..c9c48ad0cf --- /dev/null +++ b/anda/apps/tuxclocker/update.rhai @@ -0,0 +1 @@ +rpm.version(gh("Lurkki14/tuxclocker")); From 8e1ff8b170789a3a97c1ffc599e2475b2da8e427 Mon Sep 17 00:00:00 2001 From: madomado Date: Fri, 17 May 2024 00:40:28 +0800 Subject: [PATCH 02/25] add: albius (#1263) * add: albius * update.rhai --- anda/langs/go/albius/albius.spec | 38 ++++++++++++++++++++++++++++++++ anda/langs/go/albius/anda.hcl | 5 +++++ anda/langs/go/albius/update.rhai | 1 + 3 files changed, 44 insertions(+) create mode 100644 anda/langs/go/albius/albius.spec create mode 100644 anda/langs/go/albius/anda.hcl create mode 100644 anda/langs/go/albius/update.rhai diff --git a/anda/langs/go/albius/albius.spec b/anda/langs/go/albius/albius.spec new file mode 100644 index 0000000000..12350b0e7f --- /dev/null +++ b/anda/langs/go/albius/albius.spec @@ -0,0 +1,38 @@ +%define debug_package %nil +%global commit 688ca6ae29de89174794a48be61ecd0fb1111c96 +%global commit_date 20240430 +%global shortcommit %(c=%{commit}; echo ${c:0:7}) + +Name: albius +Version: %date.%shortcommit +Release: 1%?dist +Summary: A Linux installer backend with support for SquashFS and OCI installations +License: GPL-3.0 +URL: https://github.com/Vanilla-OS/Albius +Source0: %url/archive/%commit/albius-%commit.tar.gz +BuildRequires: go anda-srpm-macros btrfs-progs-devel pkgconfig(devmapper) pkgconfig(gpgme) lvm2 gcc + +%description +Albius is a Linux installer backend originally designed for Vanilla OS, +but capable of handling any Linux distribution that uses either Squashfs +or OCI images for distributing the base system. Albius is written entirely +in Go and uses a recipe system (see "recipes" subsection) for describing +operations, mountpoints and options. + +%prep +%autosetup -n Albius-%commit +go mod download + +%build +mkdir -p build/bin +go build -ldflags "-B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \n') -s -w" -buildmode=pie -o build/bin/albius . + +%install +mkdir -p %{buildroot}%{_bindir}/ +install -pm755 build/bin/albius %{buildroot}%{_bindir}/ + +%files +%_bindir/albius + +%changelog +%autochangelog diff --git a/anda/langs/go/albius/anda.hcl b/anda/langs/go/albius/anda.hcl new file mode 100644 index 0000000000..c7692fe7ce --- /dev/null +++ b/anda/langs/go/albius/anda.hcl @@ -0,0 +1,5 @@ +project pkg { + rpm { + spec = "albius.spec" + } +} diff --git a/anda/langs/go/albius/update.rhai b/anda/langs/go/albius/update.rhai new file mode 100644 index 0000000000..87582dfdbd --- /dev/null +++ b/anda/langs/go/albius/update.rhai @@ -0,0 +1 @@ +rpm.version(gh("Vanilla-OS/Albius")); From 61f44cf2086036b32352715398802733c36e4bd0 Mon Sep 17 00:00:00 2001 From: madomado Date: Fri, 17 May 2024 00:52:29 +0800 Subject: [PATCH 03/25] fix: starship (#1252) * fix: starship * deps Signed-off-by: madomado --------- Signed-off-by: madomado --- anda/langs/rust/starship/rust-starship.spec | 8 ++++---- anda/langs/rust/starship/starship-fix-metadata-auto.diff | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/anda/langs/rust/starship/rust-starship.spec b/anda/langs/rust/starship/rust-starship.spec index 74bc2d66f9..9e279815b3 100644 --- a/anda/langs/rust/starship/rust-starship.spec +++ b/anda/langs/rust/starship/rust-starship.spec @@ -5,14 +5,14 @@ Name: rust-starship Version: 1.19.0 -Release: 1%?dist +Release: %autorelease Summary: Minimal, blazing-fast, and infinitely customizable prompt for any shell! ☄🌌️ License: ISC URL: https://crates.io/crates/starship Source: %{crates_source} # Automatically generated patch to strip dependencies and normalize metadata -Patch0: starship-fix-metadata-auto.diff +Patch: starship-fix-metadata-auto.diff BuildRequires: cargo-rpm-macros >= 24 BuildRequires: anda-srpm-macros @@ -175,10 +175,10 @@ use the "starship-battery" feature of the "%{crate}" crate. %cargo_prep_online %build -%{cargo_build} +%cargo_build %install -%{cargo_install} +%cargo_install %if %{with check} %check diff --git a/anda/langs/rust/starship/starship-fix-metadata-auto.diff b/anda/langs/rust/starship/starship-fix-metadata-auto.diff index a3d883dfd4..586bceeb50 100644 --- a/anda/langs/rust/starship/starship-fix-metadata-auto.diff +++ b/anda/langs/rust/starship/starship-fix-metadata-auto.diff @@ -1,5 +1,5 @@ ---- starship-1.18.1/Cargo.toml 1970-01-01T00:00:01+00:00 -+++ starship-1.18.1/Cargo.toml 2024-03-24T13:14:24.022475+00:00 +--- starship-1.19.0/Cargo.toml 1970-01-01T00:00:01+00:00 ++++ starship-1.19.0/Cargo.toml 2024-05-16T10:47:19.540098+00:00 @@ -263,18 +263,3 @@ ] default-features = false @@ -8,7 +8,7 @@ -version = "0.2.0" - -[target."cfg(windows)".dependencies.windows] --version = "0.54.0" +-version = "0.56.0" -features = [ - "Win32_Foundation", - "Win32_UI_Shell", From 9cdc5fe7c6c6a067c652dde8b1a58e6cabcb4eef Mon Sep 17 00:00:00 2001 From: Raboneko Date: Thu, 16 May 2024 18:17:52 +0000 Subject: [PATCH 04/25] bump: lomiri-system-settings --- .../lomiri-system-settings/lomiri-system-settings.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 d667de5ae5..7ea6a23f21 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 a17feddaac58fd275ee470dbce6d54df24da4a0d +%global commit 557b09902c59eae015767367ef5a97c5c47b67fb %forgemeta Name: lomiri-system-settings From 0a3a884a21327f4c2805515df7d8035a5e0f786d Mon Sep 17 00:00:00 2001 From: Raboneko Date: Thu, 16 May 2024 22:21:34 +0000 Subject: [PATCH 05/25] bump: containerd --- anda/docker/containerd/containerd.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/docker/containerd/containerd.spec b/anda/docker/containerd/containerd.spec index 4b981a335d..3c2a52d2af 100644 --- a/anda/docker/containerd/containerd.spec +++ b/anda/docker/containerd/containerd.spec @@ -7,7 +7,7 @@ # https://github.com/containerd/containerd %global goipath github.com/containerd/containerd -Version: 1.7.16 +Version: 1.7.17 %gometa From 20f95544e56d398045d80eebb92f8ba17ed70c23 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Thu, 16 May 2024 22:35:53 +0000 Subject: [PATCH 06/25] bump: sass --- anda/misc/sass/sass.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/misc/sass/sass.spec b/anda/misc/sass/sass.spec index 79eb4dcaad..23dc89fbd6 100644 --- a/anda/misc/sass/sass.spec +++ b/anda/misc/sass/sass.spec @@ -4,7 +4,7 @@ %define _build_id_links none Name: sass -Version: 1.77.1 +Version: 1.77.2 Release: 1%?dist Summary: The reference implementation of Sass, written in Dart License: MIT From 86e6954bcb75443b3b7d173ba8e5b5af89db7c51 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Fri, 17 May 2024 01:12:43 +0000 Subject: [PATCH 07/25] bump(nightly): mpv nim-nightly yt-dlp --- anda/apps/mpv/mpv-nightly.spec | 4 ++-- anda/langs/nim/nim-nightly/nim-nightly.spec | 4 ++-- anda/tools/yt-dlp/yt-dlp-nightly.spec | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/anda/apps/mpv/mpv-nightly.spec b/anda/apps/mpv/mpv-nightly.spec index 5dfdfa4181..8598a9d4c2 100644 --- a/anda/apps/mpv/mpv-nightly.spec +++ b/anda/apps/mpv/mpv-nightly.spec @@ -1,6 +1,6 @@ -%global commit 03ca3408354e99a7c50838c57531bba1c167ef87 +%global commit 47f60d1c5228d9ba0931af0c9c6490ea6b2a4d3c %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20240516 +%global commit_date 20240517 %global ver v0.38.0 Name: mpv-nightly diff --git a/anda/langs/nim/nim-nightly/nim-nightly.spec b/anda/langs/nim/nim-nightly/nim-nightly.spec index e42562723c..851aa78137 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 2c8551556e5b51b7a7e487b1043b92d4ad34dbf0 +%global commit b87732b5f13a39b00a82713a465db6c2f0fef40a %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global ver 2.1.1 -%global commit_date 20240516 +%global commit_date 20240517 %global debug_package %nil Name: nim-nightly diff --git a/anda/tools/yt-dlp/yt-dlp-nightly.spec b/anda/tools/yt-dlp/yt-dlp-nightly.spec index f7a94fe862..666474bb8d 100644 --- a/anda/tools/yt-dlp/yt-dlp-nightly.spec +++ b/anda/tools/yt-dlp/yt-dlp-nightly.spec @@ -1,7 +1,7 @@ #bcond_without tests -%global commit 351dc0bc334c4e1b5f00c152818c3ec0ed71f788 +%global commit 6d8a53d870ff6795f509085bfbf3981417999038 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20240514 +%global commit_date 20240517 %global ver 2024.04.09 Name: yt-dlp-nightly From 2c3267df57866b7763ab25ab0a548b7c83ed73db Mon Sep 17 00:00:00 2001 From: Raboneko Date: Fri, 17 May 2024 09:16:26 +0000 Subject: [PATCH 08/25] bump: neovide --- anda/devs/neovide/neovide.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/devs/neovide/neovide.spec b/anda/devs/neovide/neovide.spec index f57476da27..30ee32999c 100644 --- a/anda/devs/neovide/neovide.spec +++ b/anda/devs/neovide/neovide.spec @@ -1,8 +1,8 @@ %define debug_package %nil Name: neovide -Version: 0.12.2 -Release: 1%{?dist} +Version: 0.13.0 +Release: 1%?dist Summary: No Nonsense Neovim Client in Rust License: MIT URL: https://neovide.dev/ From 980127b7ed0007798a8f1e88fee5294433eccc60 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Fri, 17 May 2024 10:21:27 +0000 Subject: [PATCH 09/25] bump: osu-lazer --- anda/games/osu-lazer/osu-lazer.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/games/osu-lazer/osu-lazer.spec b/anda/games/osu-lazer/osu-lazer.spec index a187e15ff9..0a2089c4b4 100644 --- a/anda/games/osu-lazer/osu-lazer.spec +++ b/anda/games/osu-lazer/osu-lazer.spec @@ -1,4 +1,4 @@ -%define osuresver 2024.510.0 +%define osuresver 2024.517.0 %global debug_package %{nil} %define __strip /bin/true From 010aef5096feddaf861bda7156015422e51ee7ad Mon Sep 17 00:00:00 2001 From: Cappy Ishihara Date: Fri, 17 May 2024 19:30:16 +0700 Subject: [PATCH 10/25] add hard dependency on Qt 4 CLI tools (we should patch this to use Qt 6 CLI tho) (#1270) --- .../kwin-system76-scheduler-integration.spec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/anda/misc/kwin-system76-scheduler-integration/kwin-system76-scheduler-integration.spec b/anda/misc/kwin-system76-scheduler-integration/kwin-system76-scheduler-integration.spec index 2bfe5479fa..8c27a54be3 100644 --- a/anda/misc/kwin-system76-scheduler-integration/kwin-system76-scheduler-integration.spec +++ b/anda/misc/kwin-system76-scheduler-integration/kwin-system76-scheduler-integration.spec @@ -8,7 +8,7 @@ Name: kwin-system76-scheduler-integration %forgemeta Version: 0.1 -Release: 1%?dist +Release: 2%?dist Summary: Notify the System76 Scheduler which app has focus so it can be prioritized License: MIT URL: %forgeurl @@ -16,7 +16,8 @@ Source0: %forgesource Source1: com.system76.Scheduler.dbusproxy.service Requires: bash dbus-tools system76-scheduler kde-cli-tools systemd kf6-kconfig BuildRequires: systemd-rpm-macros - +# We require the Qt 4 package to provide the `qdbus` command +Requires: qt %description System76 Scheduler is a service which optimizes Linux's CPU scheduler and automatically assigns process priorities for improved desktop responsiveness. From ba65389167903728a7a88aa0cf045268a078dfe1 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sat, 18 May 2024 01:11:37 +0000 Subject: [PATCH 11/25] bump(nightly): mpv nim-nightly tdlib yt-dlp --- anda/apps/mpv/mpv-nightly.spec | 4 ++-- anda/langs/nim/nim-nightly/nim-nightly.spec | 4 ++-- anda/lib/tdlib/tdlib-nightly.spec | 2 +- anda/tools/yt-dlp/yt-dlp-nightly.spec | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/anda/apps/mpv/mpv-nightly.spec b/anda/apps/mpv/mpv-nightly.spec index 8598a9d4c2..6f4d48301d 100644 --- a/anda/apps/mpv/mpv-nightly.spec +++ b/anda/apps/mpv/mpv-nightly.spec @@ -1,6 +1,6 @@ -%global commit 47f60d1c5228d9ba0931af0c9c6490ea6b2a4d3c +%global commit 541e00fcdb2b44bb164be65647171ce49869a6cf %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20240517 +%global commit_date 20240518 %global ver v0.38.0 Name: mpv-nightly diff --git a/anda/langs/nim/nim-nightly/nim-nightly.spec b/anda/langs/nim/nim-nightly/nim-nightly.spec index 851aa78137..15e336278f 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 b87732b5f13a39b00a82713a465db6c2f0fef40a +%global commit b3b26b2e56df580b1a4190fb28ef4e05f0cff514 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global ver 2.1.1 -%global commit_date 20240517 +%global commit_date 20240518 %global debug_package %nil Name: nim-nightly diff --git a/anda/lib/tdlib/tdlib-nightly.spec b/anda/lib/tdlib/tdlib-nightly.spec index 4dc22fe313..4d5e16d117 100644 --- a/anda/lib/tdlib/tdlib-nightly.spec +++ b/anda/lib/tdlib/tdlib-nightly.spec @@ -1,4 +1,4 @@ -%global commit 12c1689b54cdc57d145b5ae74b63eaf713847104 +%global commit fd3154b28727df9e66423d64168fab1202d8c849 %global ver 1.8.29 %global commit_date 20240219 %global shortcommit %(c=%{commit}; echo ${c:0:7}) diff --git a/anda/tools/yt-dlp/yt-dlp-nightly.spec b/anda/tools/yt-dlp/yt-dlp-nightly.spec index 666474bb8d..953f6899a9 100644 --- a/anda/tools/yt-dlp/yt-dlp-nightly.spec +++ b/anda/tools/yt-dlp/yt-dlp-nightly.spec @@ -1,7 +1,7 @@ #bcond_without tests -%global commit 6d8a53d870ff6795f509085bfbf3981417999038 +%global commit 12d8ea8246fa901de302ff5cc748caddadc82f41 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20240517 +%global commit_date 20240518 %global ver 2024.04.09 Name: yt-dlp-nightly From 1871d36c61978aca47a833366cbbcf64be679bba Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sat, 18 May 2024 11:56:18 +0000 Subject: [PATCH 12/25] bump: armcord-bin armcord --- anda/apps/armcord-bin/armcord-bin.spec | 4 ++-- anda/apps/armcord/armcord.spec | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/anda/apps/armcord-bin/armcord-bin.spec b/anda/apps/armcord-bin/armcord-bin.spec index 2388618de8..7a221da990 100644 --- a/anda/apps/armcord-bin/armcord-bin.spec +++ b/anda/apps/armcord-bin/armcord-bin.spec @@ -14,8 +14,8 @@ %global __provides_exclude_from %{_datadir}/armcord/.*\\.so Name: armcord-bin -Version: 3.2.6 -Release: 1%{?dist} +Version: 3.2.7 +Release: 1%?dist License: OSL-3.0 Summary: Custom lightweight Discord client designed to enhance your experience URL: https://github.com/ArmCord/ArmCord diff --git a/anda/apps/armcord/armcord.spec b/anda/apps/armcord/armcord.spec index af5421cdd6..68d6b62828 100644 --- a/anda/apps/armcord/armcord.spec +++ b/anda/apps/armcord/armcord.spec @@ -1,8 +1,8 @@ %define debug_package %nil Name: armcord -Version: 3.2.6 -Release: 1%{?dist} +Version: 3.2.7 +Release: 1%?dist License: OSL-3.0 Summary: Custom lightweight Discord client designed to enhance your experience URL: https://github.com/ArmCord/ArmCord From a0499054593c4af9e8ccbbf1bf6581d896d156e6 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sun, 19 May 2024 01:17:09 +0000 Subject: [PATCH 13/25] bump(nightly): mpv prismlauncher-nightly yt-dlp --- anda/apps/mpv/mpv-nightly.spec | 4 ++-- anda/games/prismlauncher-nightly/prismlauncher-nightly.spec | 4 ++-- anda/tools/yt-dlp/yt-dlp-nightly.spec | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/anda/apps/mpv/mpv-nightly.spec b/anda/apps/mpv/mpv-nightly.spec index 6f4d48301d..1571c626b4 100644 --- a/anda/apps/mpv/mpv-nightly.spec +++ b/anda/apps/mpv/mpv-nightly.spec @@ -1,6 +1,6 @@ -%global commit 541e00fcdb2b44bb164be65647171ce49869a6cf +%global commit 2c68e6cb1fb5a650780a97baa26bd53c83305a34 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20240518 +%global commit_date 20240519 %global ver v0.38.0 Name: mpv-nightly diff --git a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec index beb5c2dd5e..ed48d8f7c9 100644 --- a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec +++ b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec @@ -1,13 +1,13 @@ %global real_name prismlauncher %global nice_name PrismLauncher -%global commit 93da066aa24220097d6f424fe13a74bbcfe54c21 +%global commit 5cf7466e4c7bc27a8ace8e99ce650fae67875a15 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global libnbtplusplus_commit a5e8fd52b8bf4ab5d5bcc042b2a247867589985f %global quazip_commit 6117161af08e366c37499895b00ef62f93adc345 %global tomlplusplus_commit 7eb2ffcc09f8e9890dc0b77ff8ab00fc53b1f2b8 -%global commit_date 20240513 +%global commit_date 20240519 %global snapshot_info %{commit_date}.%{shortcommit} %bcond_without qt6 diff --git a/anda/tools/yt-dlp/yt-dlp-nightly.spec b/anda/tools/yt-dlp/yt-dlp-nightly.spec index 953f6899a9..66fe111e6a 100644 --- a/anda/tools/yt-dlp/yt-dlp-nightly.spec +++ b/anda/tools/yt-dlp/yt-dlp-nightly.spec @@ -1,7 +1,7 @@ #bcond_without tests -%global commit 12d8ea8246fa901de302ff5cc748caddadc82f41 +%global commit 3e35aa32c74bc108375be8c8b6b3bfc90dfff1b4 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20240518 +%global commit_date 20240519 %global ver 2024.04.09 Name: yt-dlp-nightly From 83100ae4482b9048989092119be89aa19569e33c Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sun, 19 May 2024 06:47:02 +0000 Subject: [PATCH 14/25] bump: osu-lazer --- anda/games/osu-lazer/osu-lazer.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/games/osu-lazer/osu-lazer.spec b/anda/games/osu-lazer/osu-lazer.spec index 0a2089c4b4..9d89cdd794 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: 2024.412.1 +Version: 2024.519.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 From 45a559e6c5321ff8b74392a783bf5193024cf6ad Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sun, 19 May 2024 06:57:06 +0000 Subject: [PATCH 15/25] bump: pantheon-tweaks switchboard-plug-tweaks --- anda/desktops/elementary/pantheon-tweaks/pantheon-tweaks.spec | 4 ++-- .../switchboard-plug-tweaks/switchboard-plug-tweaks.spec | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/anda/desktops/elementary/pantheon-tweaks/pantheon-tweaks.spec b/anda/desktops/elementary/pantheon-tweaks/pantheon-tweaks.spec index 20b265481a..51dc48a032 100644 --- a/anda/desktops/elementary/pantheon-tweaks/pantheon-tweaks.spec +++ b/anda/desktops/elementary/pantheon-tweaks/pantheon-tweaks.spec @@ -1,6 +1,6 @@ Name: pantheon-tweaks -Version: 1.1.2 -Release: 1%{?dist} +Version: 2.0.0 +Release: 1%?dist Summary: A system settings panel for the Pantheon desktop environment License: GPL-3.0 URL: https://github.com/pantheon-tweaks/pantheon-tweaks diff --git a/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec b/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec index ffaf9643a1..8570c6a9b3 100644 --- a/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec +++ b/anda/desktops/elementary/switchboard-plug-tweaks/switchboard-plug-tweaks.spec @@ -5,8 +5,8 @@ Name: switchboard-plug-tweaks Summary: Switchboard Tweaks Plug -Version: 1.1.2 -Release: 1%{?dist} +Version: 2.0.0 +Release: 1%?dist License: GPL-3.0-or-later URL: https://github.com/pantheon-tweaks/pantheon-tweaks From 887b5baa6ac209a3ce6b051581675ed5c3a52d85 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Sun, 19 May 2024 09:21:19 +0000 Subject: [PATCH 16/25] bump: osu-lazer --- anda/games/osu-lazer/osu-lazer.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/games/osu-lazer/osu-lazer.spec b/anda/games/osu-lazer/osu-lazer.spec index 9d89cdd794..937505fe87 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: 2024.519.0 +Version: 2024.519.1 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 From 5754eae55fa71c34b18ac0d9c43767648541ab8c Mon Sep 17 00:00:00 2001 From: Raboneko Date: Mon, 20 May 2024 01:13:01 +0000 Subject: [PATCH 17/25] bump(nightly): mpv prismlauncher-nightly vala-nightly --- anda/apps/mpv/mpv-nightly.spec | 4 ++-- anda/games/prismlauncher-nightly/prismlauncher-nightly.spec | 4 ++-- anda/langs/vala/vala-nightly/vala-nightly.spec | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/anda/apps/mpv/mpv-nightly.spec b/anda/apps/mpv/mpv-nightly.spec index 1571c626b4..b1f047d7e3 100644 --- a/anda/apps/mpv/mpv-nightly.spec +++ b/anda/apps/mpv/mpv-nightly.spec @@ -1,6 +1,6 @@ -%global commit 2c68e6cb1fb5a650780a97baa26bd53c83305a34 +%global commit e6e0aaa6c6bfa781b1da00553bec2b0df979a079 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20240519 +%global commit_date 20240520 %global ver v0.38.0 Name: mpv-nightly diff --git a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec index ed48d8f7c9..c2e4e5ece2 100644 --- a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec +++ b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec @@ -1,13 +1,13 @@ %global real_name prismlauncher %global nice_name PrismLauncher -%global commit 5cf7466e4c7bc27a8ace8e99ce650fae67875a15 +%global commit 529dc7c6b71cac4416786bef81399a1aeb23ad7e %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global libnbtplusplus_commit a5e8fd52b8bf4ab5d5bcc042b2a247867589985f %global quazip_commit 6117161af08e366c37499895b00ef62f93adc345 %global tomlplusplus_commit 7eb2ffcc09f8e9890dc0b77ff8ab00fc53b1f2b8 -%global commit_date 20240519 +%global commit_date 20240520 %global snapshot_info %{commit_date}.%{shortcommit} %bcond_without qt6 diff --git a/anda/langs/vala/vala-nightly/vala-nightly.spec b/anda/langs/vala/vala-nightly/vala-nightly.spec index 6f50236bd6..a3c8e2d6b0 100644 --- a/anda/langs/vala/vala-nightly/vala-nightly.spec +++ b/anda/langs/vala/vala-nightly/vala-nightly.spec @@ -3,11 +3,11 @@ %global priority 90 %global real_name vala -%global commit fa704b2c2385f35d12568ee31de33568d6d67749 +%global commit ed0077a101ddc5abe39045c36f8aeb053e5c34dd %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global repo https://gitlab.gnome.org/GNOME/%{real_name}.git -%global commit_date 20240426 +%global commit_date 20240520 %global snapshot_info %{commit_date}.%{shortcommit} Name: vala-nightly From 637834893d43c82706be73145c66f0e16d945aaf Mon Sep 17 00:00:00 2001 From: Raboneko Date: Mon, 20 May 2024 18:19:41 +0000 Subject: [PATCH 18/25] bump: xyproto-textoutput xyproto-vt100 --- .../go/xyproto-textoutput/golang-github-xyproto-textoutput.spec | 2 +- anda/langs/go/xyproto-vt100/golang-github-xyproto-vt100.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/langs/go/xyproto-textoutput/golang-github-xyproto-textoutput.spec b/anda/langs/go/xyproto-textoutput/golang-github-xyproto-textoutput.spec index 5aaf2e2854..03bd07fe32 100644 --- a/anda/langs/go/xyproto-textoutput/golang-github-xyproto-textoutput.spec +++ b/anda/langs/go/xyproto-textoutput/golang-github-xyproto-textoutput.spec @@ -3,7 +3,7 @@ # https://github.com/xyproto/textoutput %global goipath github.com/xyproto/textoutput -Version: 1.16.3 +Version: 1.16.4 %gometa -f diff --git a/anda/langs/go/xyproto-vt100/golang-github-xyproto-vt100.spec b/anda/langs/go/xyproto-vt100/golang-github-xyproto-vt100.spec index 0b84423247..08d0ec9741 100644 --- a/anda/langs/go/xyproto-vt100/golang-github-xyproto-vt100.spec +++ b/anda/langs/go/xyproto-vt100/golang-github-xyproto-vt100.spec @@ -3,7 +3,7 @@ # https://github.com/xyproto/vt100 %global goipath github.com/xyproto/vt100 -Version: 1.14.3 +Version: 1.14.4 %gometa -f From 61d31f9b3d269648ec9ec20a8d170ca0bbc559a6 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Mon, 20 May 2024 18:33:13 +0000 Subject: [PATCH 19/25] bump: gendesk --- anda/langs/go/gendesk/golang-github-xyproto-gendesk.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/langs/go/gendesk/golang-github-xyproto-gendesk.spec b/anda/langs/go/gendesk/golang-github-xyproto-gendesk.spec index a7ecea5dcd..c8792a89e2 100644 --- a/anda/langs/go/gendesk/golang-github-xyproto-gendesk.spec +++ b/anda/langs/go/gendesk/golang-github-xyproto-gendesk.spec @@ -5,7 +5,7 @@ # https://github.com/xyproto/gendesk %global goipath github.com/xyproto/gendesk -Version: 1.0.9 +Version: 1.0.10 %global tag 1.0.9 %global commit f074161864697100fdc21a99e09b567e82aeb1b9 @@ -20,7 +20,7 @@ of information.} %global godocs README.md Name: %{goname} -Release: 1%{?dist} +Release: 1%?dist Summary: Generate .desktop files and download .png icons License: BSD-3-Clause From 8b1495fc980065456dd0978797f4f948c50e5444 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 21 May 2024 01:12:27 +0000 Subject: [PATCH 20/25] bump(nightly): mpv latte-dock-nightly prismlauncher-nightly nim-nightly yt-dlp --- anda/apps/mpv/mpv-nightly.spec | 4 ++-- anda/desktops/kde/latte-dock-nightly/latte-dock-nightly.spec | 2 +- anda/games/prismlauncher-nightly/prismlauncher-nightly.spec | 4 ++-- anda/langs/nim/nim-nightly/nim-nightly.spec | 4 ++-- anda/tools/yt-dlp/yt-dlp-nightly.spec | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/anda/apps/mpv/mpv-nightly.spec b/anda/apps/mpv/mpv-nightly.spec index b1f047d7e3..71ec62669a 100644 --- a/anda/apps/mpv/mpv-nightly.spec +++ b/anda/apps/mpv/mpv-nightly.spec @@ -1,6 +1,6 @@ -%global commit e6e0aaa6c6bfa781b1da00553bec2b0df979a079 +%global commit 76ad8efe39260db9880bca5dc0055f317ffbbfed %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20240520 +%global commit_date 20240521 %global ver v0.38.0 Name: mpv-nightly diff --git a/anda/desktops/kde/latte-dock-nightly/latte-dock-nightly.spec b/anda/desktops/kde/latte-dock-nightly/latte-dock-nightly.spec index fcc1431af8..58986db949 100644 --- a/anda/desktops/kde/latte-dock-nightly/latte-dock-nightly.spec +++ b/anda/desktops/kde/latte-dock-nightly/latte-dock-nightly.spec @@ -1,6 +1,6 @@ %global forgeurl https://github.com/KDE/latte-dock/ -%global commit 10be08a7940b86d1cdca963a01542c92b064c7bd +%global commit d1d57b7d01d33d1afd3c6ba867d420c72c468b2d %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global commit_date %(date '+%Y%m%d') %global snapshot_info %{commit_date}.%{shortcommit} diff --git a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec index c2e4e5ece2..265ebaeb42 100644 --- a/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec +++ b/anda/games/prismlauncher-nightly/prismlauncher-nightly.spec @@ -1,13 +1,13 @@ %global real_name prismlauncher %global nice_name PrismLauncher -%global commit 529dc7c6b71cac4416786bef81399a1aeb23ad7e +%global commit 0ecdceccd2ea7432ae6810a7e41afe848ccc452f %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global libnbtplusplus_commit a5e8fd52b8bf4ab5d5bcc042b2a247867589985f %global quazip_commit 6117161af08e366c37499895b00ef62f93adc345 %global tomlplusplus_commit 7eb2ffcc09f8e9890dc0b77ff8ab00fc53b1f2b8 -%global commit_date 20240520 +%global commit_date 20240521 %global snapshot_info %{commit_date}.%{shortcommit} %bcond_without qt6 diff --git a/anda/langs/nim/nim-nightly/nim-nightly.spec b/anda/langs/nim/nim-nightly/nim-nightly.spec index 15e336278f..d621182a56 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 b3b26b2e56df580b1a4190fb28ef4e05f0cff514 +%global commit b838d3ece1e8530f355b5078b2daa96ac01acab5 %global shortcommit %(c=%{commit}; echo ${c:0:7}) %global ver 2.1.1 -%global commit_date 20240518 +%global commit_date 20240521 %global debug_package %nil Name: nim-nightly diff --git a/anda/tools/yt-dlp/yt-dlp-nightly.spec b/anda/tools/yt-dlp/yt-dlp-nightly.spec index 66fe111e6a..50847e9359 100644 --- a/anda/tools/yt-dlp/yt-dlp-nightly.spec +++ b/anda/tools/yt-dlp/yt-dlp-nightly.spec @@ -1,7 +1,7 @@ #bcond_without tests -%global commit 3e35aa32c74bc108375be8c8b6b3bfc90dfff1b4 +%global commit 4ccd73fea0f6f4be343e1ec7f22dd03799addcf8 %global shortcommit %(c=%{commit}; echo ${c:0:7}) -%global commit_date 20240519 +%global commit_date 20240521 %global ver 2024.04.09 Name: yt-dlp-nightly From d368e59609cecd8ff71f4b88696e28f4aa1390ea Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 21 May 2024 05:50:10 +0000 Subject: [PATCH 21/25] bump: sound --- .../desktops/mate/indicators/sound/ayatana-indicator-sound.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/desktops/mate/indicators/sound/ayatana-indicator-sound.spec b/anda/desktops/mate/indicators/sound/ayatana-indicator-sound.spec index 74482cf134..36d31d3af9 100644 --- a/anda/desktops/mate/indicators/sound/ayatana-indicator-sound.spec +++ b/anda/desktops/mate/indicators/sound/ayatana-indicator-sound.spec @@ -1,6 +1,6 @@ Name: ayatana-indicator-sound Summary: Ayatana Indicator Sound Applet -Version: 24.4.0 +Version: 24.4.1 Release: 1%?dist License: GPLv3 URL: https://github.com/AyatanaIndicators/ayatana-indicator-sound From 9a06dd0646b460b6b1fdd88b406355cf74c64532 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 21 May 2024 06:00:09 +0000 Subject: [PATCH 22/25] bump: osu-lazer --- anda/games/osu-lazer/osu-lazer.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/games/osu-lazer/osu-lazer.spec b/anda/games/osu-lazer/osu-lazer.spec index 937505fe87..9f48b3381a 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: 2024.519.1 +Version: 2024.521.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 From 91982d3a3cce3fe1eb03bd3743f241b7ce5bc78a Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 21 May 2024 06:28:03 +0000 Subject: [PATCH 23/25] bump: osu-lazer --- anda/games/osu-lazer/osu-lazer.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/games/osu-lazer/osu-lazer.spec b/anda/games/osu-lazer/osu-lazer.spec index 9f48b3381a..937505fe87 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: 2024.521.0 +Version: 2024.519.1 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 From 3d77c115b42a57a622dfe8088b635595d05ffa0b Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 21 May 2024 07:36:54 +0000 Subject: [PATCH 24/25] bump: osu-lazer --- anda/games/osu-lazer/osu-lazer.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anda/games/osu-lazer/osu-lazer.spec b/anda/games/osu-lazer/osu-lazer.spec index 937505fe87..c4a087484d 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: 2024.519.1 +Version: 2024.521.2 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 From 1b4b95df2f04cfb1d91918c350155edf6fa0253d Mon Sep 17 00:00:00 2001 From: Raboneko Date: Tue, 21 May 2024 10:55:51 +0000 Subject: [PATCH 25/25] bump: kotlin-native kotlin --- anda/langs/kotlin/kotlin-native/kotlin-native.spec | 2 +- anda/langs/kotlin/kotlin/kotlin.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/langs/kotlin/kotlin-native/kotlin-native.spec b/anda/langs/kotlin/kotlin-native/kotlin-native.spec index 40d1c215eb..7a30c879b7 100644 --- a/anda/langs/kotlin/kotlin-native/kotlin-native.spec +++ b/anda/langs/kotlin/kotlin-native/kotlin-native.spec @@ -2,7 +2,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build Name: kotlin-native -Version: 1.9.24 +Version: 2.0.0 Release: 1%?dist Summary: LLVM backend for the Kotlin compiler ExclusiveArch: x86_64 diff --git a/anda/langs/kotlin/kotlin/kotlin.spec b/anda/langs/kotlin/kotlin/kotlin.spec index 22b85c4455..f4ae3089a7 100644 --- a/anda/langs/kotlin/kotlin/kotlin.spec +++ b/anda/langs/kotlin/kotlin/kotlin.spec @@ -1,7 +1,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch Name: kotlin -Version: 1.9.24 +Version: 2.0.0 Release: 1%?dist Summary: Statically typed programming language