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
This commit is contained in:
Alejandro Sáez 2025-04-15 13:25:21 +02:00
parent 9a8464726b
commit eca7d5482c

View File

@ -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 <asm@redhat.com> - 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 <asm@redhat.com> - 3.6.0-10
- Fix malformed patch macros
- Related: RHEL-86067