2015-04-10 16:35:46 +02:00
|
|
|
From: Some One <nobody@opensuse.org>
|
|
|
|
Date: Thu, 9 Apr 2015 14:55:39 +0200
|
|
|
|
Subject: [PATCH] avoid-mismatched-libregex.diff
|
|
|
|
|
2010-04-28 22:41:49 +02:00
|
|
|
===================================================================
|
2015-04-10 16:35:46 +02:00
|
|
|
---
|
|
|
|
FilesCheck.py | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/FilesCheck.py b/FilesCheck.py
|
|
|
|
index efda328..14cfca3 100644
|
|
|
|
--- a/FilesCheck.py
|
|
|
|
+++ b/FilesCheck.py
|
|
|
|
@@ -615,7 +615,7 @@ buildconfig_rpath_regex = re.compile('(?:-rpath|Wl,-R)\\b')
|
2009-10-08 02:54:02 +02:00
|
|
|
sofile_regex = re.compile('/lib(64)?/(.+/)?lib[^/]+\.so$')
|
|
|
|
devel_regex = re.compile('(.*)-(debug(info)?|devel|headers|source|static)$')
|
|
|
|
debuginfo_package_regex = re.compile('-debug(info)?$')
|
|
|
|
-lib_regex = re.compile('lib(64)?/lib[^/]*\.so\..*')
|
|
|
|
+lib_regex = re.compile('/lib(64)?/lib[^/]*\.so\.[\d\.-]*$')
|
|
|
|
ldconfig_regex = re.compile('^[^#]*ldconfig', re.MULTILINE)
|
|
|
|
depmod_regex = re.compile('^[^#]*depmod', re.MULTILINE)
|
|
|
|
install_info_regex = re.compile('^[^#]*install-info', re.MULTILINE)
|