Overwrite target for x86_64_v2

Update patch-git.lua to handle AlmaLinux branches correctly
This commit is contained in:
Eduard Abdullin 2025-11-05 01:43:08 +00:00 committed by root
commit 205cdccabc
2 changed files with 9 additions and 3 deletions

View File

@ -2349,7 +2349,7 @@ update_gconv_modules_cache ()
%endif
%changelog
* Fri Oct 31 2025 Eduard Abdullin <eabdullin@almalinux.org> - 2.39-83.alma.1
* Wed Nov 05 2025 Eduard Abdullin <eabdullin@almalinux.org> - 2.39-84.alma.1
- Overwrite target for x86_64_v2
- Update patch-git.lua to handle AlmaLinux branches correctly

View File

@ -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