From 0b254ea463ffa5ce8a00340285160f95a3bb26b8 Mon Sep 17 00:00:00 2001 From: Raboneko Date: Fri, 14 Feb 2025 05:55:24 +0000 Subject: [PATCH 1/3] bump: inputplumber umu --- anda/games/inputplumber/inputplumber.spec | 2 +- anda/games/umu/umu-launcher.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/anda/games/inputplumber/inputplumber.spec b/anda/games/inputplumber/inputplumber.spec index 1c22988d36..d106153735 100644 --- a/anda/games/inputplumber/inputplumber.spec +++ b/anda/games/inputplumber/inputplumber.spec @@ -1,5 +1,5 @@ Name: inputplumber -Version: 0.46.1 +Version: 0.46.2 Release: 1%?dist Summary: Open source input router and remapper daemon for Linux License: GPL-3.0-or-later diff --git a/anda/games/umu/umu-launcher.spec b/anda/games/umu/umu-launcher.spec index 4850613d91..a8065dec4d 100644 --- a/anda/games/umu/umu-launcher.spec +++ b/anda/games/umu/umu-launcher.spec @@ -1,5 +1,5 @@ Name: umu-launcher -Version: 1.1.4 +Version: 1.2.0 Release: 1%?dist Summary: A tool for launching non-steam games with proton From a49f31b6e887ec63a7efa1395c950f1a7afd8ba2 Mon Sep 17 00:00:00 2001 From: sadlerm4 Date: Fri, 14 Feb 2025 18:12:42 +1100 Subject: [PATCH 2/3] fix(davs2): update logic (#3332) --- anda/lib/davs2/davs2.spec | 8 ++++---- anda/lib/davs2/update.rhai | 6 +++++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/anda/lib/davs2/davs2.spec b/anda/lib/davs2/davs2.spec index 381a723a2f..62ea15bbc3 100644 --- a/anda/lib/davs2/davs2.spec +++ b/anda/lib/davs2/davs2.spec @@ -1,15 +1,15 @@ %global commit0 b41cf117452e2d73d827f02d3e30aa20f1c721ac %global date 20220903 -%global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) +%global shortcommit %(c=%{commit0}; echo ${c:0:7}) Name: davs2 Version: 1.6 -Release: 5%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} +Release: 5%{?shortcommit:.%{date}git%{shortcommit}}%{?dist} Summary: An open-source decoder of AVS2-P2/IEEE1857.4 video coding standard URL: https://github.com/pkuvcl/%{name} License: GPLv2 -%if "%{?shortcommit0}" +%if ! "%len %{commit0}" == 0 Source0: https://github.com/pkuvcl/%{name}/archive/%{commit0}/%{name}-%{commit0}.tar.gz#/%{name}-%{shortcommit0}.tar.gz %else Source0: https://github.com/pkuvcl/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz @@ -44,7 +44,7 @@ This package contains the shared library development files. %prep # Use flat condition or it fails on EPEL 7 -%if "%{?shortcommit0}" +%if ! "%len %{commit0}" == 0 %autosetup -n %{name}-%{commit0} %else %autosetup diff --git a/anda/lib/davs2/update.rhai b/anda/lib/davs2/update.rhai index 65d19575fc..d78563409e 100644 --- a/anda/lib/davs2/update.rhai +++ b/anda/lib/davs2/update.rhai @@ -1 +1,5 @@ -rpm.version(gh("pkuvcl/davs2")); +rpm.version(gh_tag("pkuvcl/davs2")); +if rpm.changed() { + rpm.global("commit0", ""); + rpm.release(); +} \ No newline at end of file From a4e112167923261bc84f3dacd6785ce737a7c06f Mon Sep 17 00:00:00 2001 From: Raboneko Date: Fri, 14 Feb 2025 07:33:02 +0000 Subject: [PATCH 3/3] bump: umu davs2 --- anda/games/umu/umu-launcher.spec | 2 +- anda/lib/davs2/davs2.spec | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/anda/games/umu/umu-launcher.spec b/anda/games/umu/umu-launcher.spec index a8065dec4d..f09fb7a2ea 100644 --- a/anda/games/umu/umu-launcher.spec +++ b/anda/games/umu/umu-launcher.spec @@ -1,5 +1,5 @@ Name: umu-launcher -Version: 1.2.0 +Version: 1.2.1 Release: 1%?dist Summary: A tool for launching non-steam games with proton diff --git a/anda/lib/davs2/davs2.spec b/anda/lib/davs2/davs2.spec index 62ea15bbc3..a3f8689728 100644 --- a/anda/lib/davs2/davs2.spec +++ b/anda/lib/davs2/davs2.spec @@ -1,10 +1,10 @@ -%global commit0 b41cf117452e2d73d827f02d3e30aa20f1c721ac +%global commit0 %global date 20220903 %global shortcommit %(c=%{commit0}; echo ${c:0:7}) Name: davs2 -Version: 1.6 -Release: 5%{?shortcommit:.%{date}git%{shortcommit}}%{?dist} +Version: 1.7 +Release: 1%?dist Summary: An open-source decoder of AVS2-P2/IEEE1857.4 video coding standard URL: https://github.com/pkuvcl/%{name} License: GPLv2