diff -up rpmlint-rpmlint-1.9/BinariesCheck.py.buildid rpmlint-rpmlint-1.9/BinariesCheck.py --- rpmlint-rpmlint-1.9/BinariesCheck.py.buildid 2017-07-17 09:45:17.415365410 -0400 +++ rpmlint-rpmlint-1.9/BinariesCheck.py 2017-07-17 09:45:28.719085854 -0400 @@ -294,7 +294,7 @@ usr_lib_regex = re.compile('^/usr/lib(64 bin_regex = re.compile('^(/usr(/X11R6)?)?/s?bin/') soversion_regex = re.compile('.*?([0-9][.0-9]*)\\.so|.*\\.so\\.([0-9][.0-9]*).*') reference_regex = re.compile('\.la$|^/usr/lib(64)?/pkgconfig/') -usr_lib_exception_regex = re.compile(Config.getOption('UsrLibBinaryException', '^/usr/lib(64)?/(perl|python|ruby|menu|pkgconfig|ocaml|lib[^/]+\.(so|l?a)$|bonobo/servers/)')) +usr_lib_exception_regex = re.compile(Config.getOption('UsrLibBinaryException', r'^/usr/lib(64)?/(perl|python|ruby|menu|pkgconfig|ocaml|lib[^/]+\.(so|l?a)$|bonobo/servers/|\.build-id)')) srcname_regex = re.compile('(.*?)-[0-9]') invalid_dir_ref_regex = re.compile('/(home|tmp)(\W|$)') ocaml_mixed_regex = re.compile('^Caml1999X0\d\d$') diff -up rpmlint-rpmlint-1.9/FilesCheck.py.buildid rpmlint-rpmlint-1.9/FilesCheck.py --- rpmlint-rpmlint-1.9/FilesCheck.py.buildid 2017-07-17 09:45:37.733862908 -0400 +++ rpmlint-rpmlint-1.9/FilesCheck.py 2017-07-17 09:46:33.053494782 -0400 @@ -505,7 +505,7 @@ class FilesCheck(AbstractCheck.AbstractC printError(pkg, 'version-control-internal-file', f) elif f.endswith('/.htaccess'): printError(pkg, 'htaccess-file', f) - elif hidden_file_regex.search(f) and not f.startswith("/etc/skel/"): + elif hidden_file_regex.search(f) and not f.startswith("/etc/skel/") and not f.endswith("/.build-id"): printWarning(pkg, 'hidden-file-or-dir', f) elif manifest_perl_regex.search(f): printWarning(pkg, 'manifest-in-perl-module', f) @@ -879,7 +879,7 @@ class FilesCheck(AbstractCheck.AbstractC printError(pkg, 'non-standard-dir-perm', f, "%o" % perm) if pkg.name not in filesys_packages and f in STANDARD_DIRS: printError(pkg, 'standard-dir-owned-by-package', f) - if hidden_file_regex.search(f): + if hidden_file_regex.search(f) and not f.endswith("/.build-id"): printWarning(pkg, 'hidden-file-or-dir', f) # symbolic link check