From cc35e89b7229a8f40abee52cf7edbe4f47cbe55b Mon Sep 17 00:00:00 2001 From: Gilver Date: Fri, 10 Apr 2026 11:54:32 -0500 Subject: [PATCH] fix: Let xapp-symbolic-icons only exist on lower branches (#11138) --- anda/misc/xapp-symbolic-icons/anda.hcl | 3 +++ anda/misc/xapp-symbolic-icons/update.rhai | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/anda/misc/xapp-symbolic-icons/anda.hcl b/anda/misc/xapp-symbolic-icons/anda.hcl index 7f611c3bf3..36bb8b2065 100644 --- a/anda/misc/xapp-symbolic-icons/anda.hcl +++ b/anda/misc/xapp-symbolic-icons/anda.hcl @@ -3,4 +3,7 @@ project pkg { rpm { spec = "xapp-symbolic-icons.spec" } + labels { + updbranch = 1 + } } diff --git a/anda/misc/xapp-symbolic-icons/update.rhai b/anda/misc/xapp-symbolic-icons/update.rhai index 8a3672ee07..f339378386 100644 --- a/anda/misc/xapp-symbolic-icons/update.rhai +++ b/anda/misc/xapp-symbolic-icons/update.rhai @@ -1 +1,3 @@ -rpm.version(gh_tag("xapp-project/xapp-symbolic-icons")); +import "andax/bump_extras.rhai" as bump; + +rpm.version(bump::bodhi("xapp-symbolic-icons", bump::as_bodhi_ver("f44")));