cb424d7448
verify-patch-sanity.py validates every active recipe .patch has internally- consistent hunk line counts — catching the 'malformed patch at line N' failure at commit/CI/preflight time instead of hours into a cook. This cycle hit that class three times (qtwaylandscanner, sddm, xwayland), each only discovered when cookbook tried to apply the patch. Running it across the repo found 29 latent malformed patches (validated against GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22'). They were harmless only because they sit in vendored recipes (baked, not re- applied) — but would fail on any version-bump re-derivation. --fix recounts the hunk headers (body untouched) and repaired all 29. Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test (test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats (empty placeholders, bare-@@ git hunks).
51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
"""
|
|
Generate the contents of the git_sha1.h file.
|
|
"""
|
|
|
|
import argparse
|
|
import os
|
|
import os.path
|
|
import subprocess
|
|
import sys
|
|
|
|
|
|
def get_git_sha1():
|
|
"""Try to get the git SHA1 with git rev-parse."""
|
|
git_dir = os.path.join(os.path.dirname(sys.argv[0]), '..', '.git')
|
|
try:
|
|
git_sha1 = subprocess.check_output([
|
|
'git',
|
|
'--git-dir=' + git_dir,
|
|
'rev-parse',
|
|
'HEAD',
|
|
], stderr=open(os.devnull, 'w')).decode("ascii")
|
|
except Exception:
|
|
# don't print anything if it fails
|
|
git_sha1 = ''
|
|
return git_sha1
|
|
|
|
|
|
def write_if_different(contents):
|
|
"""
|
|
Avoid touching the output file if it doesn't need modifications
|
|
Useful to avoid triggering rebuilds when nothing has changed.
|
|
"""
|
|
if os.path.isfile(args.output):
|
|
with open(args.output, 'r') as file:
|
|
if file.read() == contents:
|
|
return
|
|
with open(args.output, 'w') as file:
|
|
file.write(contents)
|
|
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('--output', help='File to write the #define in',
|
|
required=True)
|
|
args = parser.parse_args()
|
|
|
|
git_sha1 = os.environ.get('MESA_GIT_SHA1_OVERRIDE', get_git_sha1())[:10]
|
|
if git_sha1:
|
|
write_if_different('#define MESA_GIT_SHA1 " (git-' + git_sha1 + ')"')
|
|
else:
|
|
write_if_different('#define MESA_GIT_SHA1 ""')
|