]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame - check-shebang.py
check-chebang: Add ruby and use sed macro in output
[packages/rpm-build-tools.git] / check-shebang.py
CommitLineData
ba239351
AM
1#!/usr/bin/python3
2
178671a1 3# thisscript.py --buildroot=~/tmp/somepackage ~/rpm/BUILD/somepackage/
b7387090
AM
4
5import argparse
ba289b0b 6import hashlib
ba239351
AM
7import io
8import os
9import re
10import sys
11
b7387090
AM
12parser = argparse.ArgumentParser()
13parser.add_argument('sourcedir', help='RPM_SOURCE_DIR directory')
14parser.add_argument("--buildroot", help="RPM_BUILD_ROOT directory")
15args = parser.parse_args()
16
ba239351
AM
17rep = {
18 'python2': [],
19 'python3': [],
20 'perl': [],
2d40e6ee 21 'ruby': [],
ba239351
AM
22}
23
b7387090
AM
24skip_files = [".h", ".c", ".cc", ".gif", ".png", ".jpg", ".ko", ".gz", ".o"]
25
ba289b0b
AM
26def hash(fname):
27 hash_alg = hashlib.sha256()
28 with open(fname, "rb") as f:
29 for chunk in iter(lambda: f.read(4096), b""):
30 hash_alg.update(chunk)
31 return hash_alg.hexdigest()
32
33rpm_build_root_files = []
b7387090
AM
34if args.buildroot:
35 print("%s: Caching `%s' files..." % (sys.argv[0], args.buildroot))
b7387090
AM
36 for root, dirs, files in os.walk(args.buildroot):
37 for name in files:
38 fname, fext = os.path.splitext(name)
39 if fext in skip_files:
40 continue
ba289b0b
AM
41 fpath = os.path.join(root, name)
42 rpm_build_root_files.append(hash(fpath))
b7387090 43 print("%s: Caching done." % (sys.argv[0]))
ba239351 44
b7387090 45for root, dirs, files in os.walk(args.sourcedir):
ba239351
AM
46 for name in files:
47 fname, fext = os.path.splitext(name)
48 if fext in skip_files:
49 continue
50
51 fpath = os.path.join(root, name)
52 with open(fpath, 'rt', encoding='utf-8', errors='replace') as f:
53 try:
54 fline = f.read(128)
55 f = io.StringIO(fline)
56 shebang = f.readline()
57 except UnicodeDecodeError as e:
58 print("%s: skipping file `%s': %s" % (sys.argv[0], fpath, e), file=sys.stderr)
59 continue
0b6e4a06
AM
60 if re.compile(r'^#!\s*/usr/bin/env python\s').match(shebang) \
61 or re.compile(r'^#!\s*/usr/bin/env\s+python2\s').match(shebang) \
62 or re.compile(r'^#!\s*/usr/bin/python\s').match(shebang):
ba239351 63 rep['python2'].append(fpath)
0b6e4a06 64 elif re.compile(r'^#!\s*/usr/bin/env\s+python3\s').match(shebang):
ba239351 65 rep['python3'].append(fpath)
0b6e4a06 66 elif re.compile(r'^#!\s*/usr/bin/env\s+perl\s').match(shebang):
ba239351 67 rep['perl'].append(fpath)
2d40e6ee
JR
68 elif re.compile(r'^#!\s*/usr/bin/env\s+ruby\s').match(shebang):
69 rep['ruby'].append(fpath)
ba239351 70
ba289b0b 71def gf(cmd, files):
b7387090
AM
72 newfiles = []
73 for f in files:
ba289b0b 74 if not rpm_build_root_files or hash(f) in rpm_build_root_files:
b7387090
AM
75 newfiles.append(f)
76 newfiles.sort()
ba289b0b
AM
77 if not newfiles:
78 return
79 print(cmd)
b7387090 80 for i in range(0, len(newfiles) - 1):
2c47d05a
AM
81 print(" %s \\\n" % os.path.relpath(newfiles[i], start=args.sourcedir), end='')
82 print(" %s\n" % os.path.relpath(newfiles[len(newfiles) - 1], start=args.sourcedir))
ba239351 83
178671a1 84print("\n# Copy from here:")
b7387090
AM
85print("# %s " % sys.argv[0], end='')
86if args.buildroot:
2c47d05a 87 print("--buildroot=%s " % args.buildroot, end='')
b7387090 88print("%s\n" % args.sourcedir)
ba239351 89
2d40e6ee 90gf("%{__sed} -E -i -e '1s,#!\s*/usr/bin/env\s+python2(\s|$),#!%{__python}\\1,' -e '1s,#!\s*/usr/bin/env\s+python(\s|$),#!%{__python}\\1,' -e '1s,#!\s*/usr/bin/python(\s|$),#!%{__python}\\1,' \\",
ba289b0b 91 rep['python2'])
2d40e6ee
JR
92gf("%{__sed} -E -i -e '1s,#!\s*/usr/bin/env\s+python3(\s|$),#!%{__python3}\\1,' \\", rep['python3'])
93gf("%{__sed} -E -i -e '1s,#!\s*/usr/bin/env\s+perl(\s|$),#!%{__perl}\\1,' \\", rep['perl'])
94gf("%{__sed} -E -i -e '1s,#!\s*/usr/bin/env\s+ruby(\s|$),#!%{__ruby}\\1,' \\", rep['ruby'])
This page took 0.073106 seconds and 4 git commands to generate.