]> git.proxmox.com Git - pve-edk2-firmware.git/blobdiff - debian/find-binaries.py
debian: backport packaging improvements
[pve-edk2-firmware.git] / debian / find-binaries.py
index b5063823b62fdc68859d18504427c7386a310fb4..b3f3ddecf8e214dfb06b597be4b737dcb2b689cc 100644 (file)
@@ -2,17 +2,18 @@
 
 # Use heuristics to identify new files that maybe binaries.
 # Flagged files need to be manually inspected and either added to the
-# whitelist (because they are safe to redistribute), or to the blacklist
+# allow list (because they are safe to redistribute), or to the reject list
 # (so that they'll be removed prior to orig.tar.xz generation).
 
 import os
 import re
 import sys
 
+
 def nameOK(name):
-    OKPatterns = ['\.gitignore', 'AUTHORS', 'FILE.LST', 'Change[lL]og',
-                  'COPYING', 'configure', 'FAQ', '(GNU)?[Mm]akefile',
-                  'INDEX', 'LICENSE', 'README', 'TODO' ]
+    OKPatterns = [r'\.gitignore', r'AUTHORS', r'FILE.LST', r'Change[lL]og',
+                  r'COPYING', r'configure', r'FAQ', r'(GNU)?[Mm]akefile',
+                  r'INDEX', r'LICENSE', r'README', r'TODO']
     OKRegexs = map(re.compile, OKPatterns)
 
     for r in OKRegexs:
@@ -20,40 +21,44 @@ def nameOK(name):
             return True
     return False
 
+
 def extensionOK(name):
-    OKExtensions = [ '1', '3', 'ASL', 'asi', 'asl', 'aslc', 'Asm', 'asm',
-                     'asm16', 'bat', 'bmp', 'c', 'CMM', 'cmm', 'cnf', 'cpp',
-                     'css', 'dec', 'decTest', 'dlg', 'dsc', 'docx', 'dsp',
-                     'dsw', 'el', 'env', 'fdf', 'g', 'gif', 'H', 'h', 'hpp',
-                     'html', 'i', 'idf', 'in', 'inc', 'inf', 'info', 'ini',
-                     'lds', 'log', 'lua', 'mak', 'makefile', 'md', 'nasm',
-                     'nasmb', 'nsh', 'patch', 'pbxuser', 'pbxproj', 'pdf',
-                     'pem', 'pl', 'png', 'pod', 'ps', 'py', 'r', 'rtf', 'S',
-                     's', 'sct', 'sh', 'sln', 't', 'template', 'txt', 'uni',
-                     'Vfr', 'vcproj', 'vfi', 'vfr', 'xml' ]
+    OKExtensions = ['1', '3', 'ASL', 'asi', 'asl', 'aslc', 'Asm', 'asm',
+                    'asm16', 'bat', 'bmp', 'c', 'CMM', 'cmm', 'cnf', 'cpp',
+                    'css', 'dec', 'decTest', 'dlg', 'dsc', 'docx', 'dsp',
+                    'dsw', 'el', 'env', 'fdf', 'g', 'gif', 'H', 'h', 'hpp',
+                    'html', 'i', 'idf', 'in', 'inc', 'inf', 'info', 'ini',
+                    'lds', 'log', 'lua', 'mak', 'makefile', 'md', 'nasm',
+                    'nasmb', 'nsh', 'patch', 'pbxuser', 'pbxproj', 'pdf',
+                    'pem', 'pl', 'png', 'pod', 'ps', 'py', 'r', 'rtf', 'S',
+                    's', 'sct', 'sh', 'sln', 't', 'template', 'txt', 'uni',
+                    'Vfr', 'vcproj', 'vfi', 'vfr', 'xml']
     ext = name.split('.')[-1]
 
     if ext in OKExtensions:
         return True
     return False
 
+
 if __name__ == '__main__':
     top = './'
     for root, dirs, files in os.walk(top):
-        with open('./debian/binary-check.whitelist', 'r') as f:
-            whitelist = list(map(lambda s: s.strip(), f.readlines()))
+        with open('./debian/binary-check.allow', 'r') as f:
+            allowlist = list(map(lambda s: s.strip(), f.readlines()))
 
         ret = 0
         for name in files:
             relpath = os.path.join(root, name)[len(top):]
-            if relpath in whitelist:
+            if relpath in allowlist:
                 continue
             if nameOK(name):
                 continue
             if extensionOK(name):
                 continue
             else:
-                sys.stdout.write("WARNING: Possible binary %s\n" % (os.path.join(root, name)))
+                sys.stdout.write(
+                    "WARNING: Possible binary %s\n" %
+                    (os.path.join(root, name))
+                )
                 ret = -1
     sys.exit(ret)
-