2019-01-13 15:33:18 +01:00
|
|
|
Index: rpmlint-rpmlint-1.11/FilesCheck.py
|
|
|
|
===================================================================
|
|
|
|
--- rpmlint-rpmlint-1.11.orig/FilesCheck.py
|
|
|
|
+++ rpmlint-rpmlint-1.11/FilesCheck.py
|
|
|
|
@@ -185,7 +185,7 @@ compr_regex = re.compile(compressions +
|
2017-09-28 13:35:09 +02:00
|
|
|
absolute_regex = re.compile(r'^/([^/]+)')
|
|
|
|
absolute2_regex = re.compile(r'^/?([^/]+)')
|
|
|
|
points_regex = re.compile(r'^\.\./(.*)')
|
2019-01-13 15:33:18 +01:00
|
|
|
-doc_regex = re.compile(r'^/usr(/share|/X11R6)?/(doc|man|info)/|^/usr/share/gnome/help')
|
2017-09-28 13:35:09 +02:00
|
|
|
+doc_regex = re.compile(r'^/usr(/share|/X11R6)?/(doc|man|info)/|^/opt/kde3/share/doc|^/usr/share/gnome/help')
|
|
|
|
bin_regex = re.compile(r'^/(?:usr/(?:s?bin|games)|s?bin)/(.*)')
|
|
|
|
includefile_regex = re.compile(r'\.(c|h)(pp|xx)?$', re.IGNORECASE)
|
|
|
|
develfile_regex = re.compile(r'\.(a|cmxa?|mli?|gir)$')
|
2019-01-13 15:33:18 +01:00
|
|
|
Index: rpmlint-rpmlint-1.11/I18NCheck.py
|
2017-09-28 13:35:09 +02:00
|
|
|
===================================================================
|
2019-01-13 15:33:18 +01:00
|
|
|
--- rpmlint-rpmlint-1.11.orig/I18NCheck.py
|
|
|
|
+++ rpmlint-rpmlint-1.11/I18NCheck.py
|
2013-06-28 15:29:34 +02:00
|
|
|
@@ -30,7 +30,7 @@ INCORRECT_LOCALES = {
|
2010-10-14 14:32:03 +02:00
|
|
|
'en_UK': 'en_GB'}
|
2008-04-17 04:52:37 +02:00
|
|
|
|
2010-10-14 14:32:03 +02:00
|
|
|
package_regex = re.compile('-(' + '|'.join(LANGUAGES) + ')$')
|
2009-08-21 18:19:06 +02:00
|
|
|
-locale_regex = re.compile('^(/usr/share/locale/([^/]+))/')
|
2017-09-30 10:27:35 +02:00
|
|
|
+locale_regex = re.compile(r'^(/(usr|opt/kde3|opt/gnome)/share/locale/([^/]+))/')
|
2009-08-21 18:19:06 +02:00
|
|
|
correct_subdir_regex = re.compile('^(([a-z][a-z]([a-z])?(_[A-Z][A-Z])?)([.@].*$)?)$')
|
|
|
|
lc_messages_regex = re.compile('/usr/share/locale/([^/]+)/LC_MESSAGES/.*(mo|po)$')
|
2010-10-14 14:32:03 +02:00
|
|
|
man_regex = re.compile('/usr(?:/share)?/man/([^/]+)/man[0-9n][^/]*/[^/]+$')
|