From eca7d5482ceff8aa09df219c5cf37b93435f2132 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20S=C3=A1ez?= Date: Tue, 15 Apr 2025 13:25:21 +0200 Subject: [PATCH] Bump release for el9 to avoid clash with el9_6 build The same release number (3.6.0-10) was used for both el9 and el9_6 builds of go-rpm-macros, which could potentially cause issues when updating packages due to how RPM version sorting works. Since el9_6 sorts after el9, the safer approach is to bump the el9 release to ensure proper upgrade paths. Related: RHEL-86067 Related: RHEL-7366 --- go-rpm-macros.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/go-rpm-macros.spec b/go-rpm-macros.spec index e2db619..89a9176 100644 --- a/go-rpm-macros.spec +++ b/go-rpm-macros.spec @@ -37,7 +37,7 @@ Version: 3.6.0 ExclusiveArch: %{golang_arches} %{gccgo_arches} Name: go-rpm-macros -Release: 10%{?dist} +Release: 11%{?dist} Summary: Build-stage rpm automation for Go packages License: GPLv3+ @@ -263,6 +263,11 @@ sed -i "s,golist ,%{golist_execdir}/golist ,g" \ %{_rpmluadir}/fedora/srpm/*.lua %changelog +* Tue Apr 15 2025 Alejandro Sáez - 3.6.0-11 +- Bump release for el9 to avoid clash with el9_6 build +- Related: RHEL-86067 +- Related: RHEL-7366 + * Fri Apr 11 2025 Alejandro Sáez - 3.6.0-10 - Fix malformed patch macros - Related: RHEL-86067