1#!/usr/bin/env python3 2 3import sys, os 4 5srcdir = os.getenv ('srcdir', os.path.dirname (__file__)) 6base_srcdir = os.getenv ('base_srcdir', srcdir) 7 8os.chdir (srcdir) 9 10def removeprefix(s): 11 abs_path = os.path.join(base_srcdir, s) 12 return os.path.relpath(abs_path, srcdir) 13 14 15HBHEADERS = [os.path.basename (x) for x in os.getenv ('HBHEADERS', '').split ()] or \ 16 [x for x in os.listdir ('.') if x.startswith ('hb') and x.endswith ('.h')] 17HBHEADERS = [x for x in HBHEADERS if x.endswith ('.h')] 18HBSOURCES = [ 19 removeprefix(x) for x in os.getenv ('HBSOURCES', '').split () 20] or [ 21 x for x in os.listdir ('.') if x.startswith ('hb') and x.endswith (('.cc', '.hh')) 22] 23stat = 0 24 25for x in HBHEADERS: 26 with open (x, 'r', encoding='utf-8') as f: content = f.read () 27 if ('HB_BEGIN_DECLS' not in content) or ('HB_END_DECLS' not in content): 28 print ('Ouch, file %s does not have HB_BEGIN_DECLS / HB_END_DECLS, but it should' % x) 29 stat = 1 30 31for x in HBSOURCES: 32 with open (x, 'r', encoding='utf-8') as f: content = f.read () 33 if ('HB_BEGIN_DECLS' in content) or ('HB_END_DECLS' in content): 34 print ('Ouch, file %s has HB_BEGIN_DECLS / HB_END_DECLS, but it shouldn\'t' % x) 35 stat = 1 36 37sys.exit (stat) 38