diff --git a/glibc.spec b/glibc.spec index 86c0fb8..f93e3cc 100644 --- a/glibc.spec +++ b/glibc.spec @@ -2349,7 +2349,7 @@ update_gconv_modules_cache () %endif %changelog -* Fri Oct 31 2025 Eduard Abdullin - 2.39-83.alma.1 +* Wed Nov 05 2025 Eduard Abdullin - 2.39-84.alma.1 - Overwrite target for x86_64_v2 - Update patch-git.lua to handle AlmaLinux branches correctly diff --git a/patch-git.lua b/patch-git.lua index 312806f..4a673a3 100644 --- a/patch-git.lua +++ b/patch-git.lua @@ -592,12 +592,18 @@ local function emit_sources() max = tointeger(k) end end + + -- The centpkg pre-push-check recognizes this prefix on Source + -- files and does not fail if these sources are neither committed + -- to the Git repository nor listed in the sources file. + local auto_generated = 'auto-generated/' + local function emit(name) max = max + 1 print('Source' .. max .. ': ' .. name .. '\n') end - emit(git_commit_file) - emit(git_log_file) + emit(auto_generated .. git_commit_file) + emit(auto_generated .. git_log_file) emit('patch-git.lua') -- This file. end