2015-04-10 16:35:46 +02:00
|
|
|
From: Some One <nobody@opensuse.org>
|
|
|
|
Date: Thu, 9 Apr 2015 14:55:37 +0200
|
|
|
|
Subject: [PATCH] rpmlint-suse.diff
|
|
|
|
|
2010-04-28 22:41:49 +02:00
|
|
|
===================================================================
|
2015-04-10 16:35:46 +02:00
|
|
|
---
|
|
|
|
FilesCheck.py | 2 +-
|
|
|
|
I18NCheck.py | 2 +-
|
|
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/FilesCheck.py b/FilesCheck.py
|
2015-11-26 11:24:13 +01:00
|
|
|
index 7fcacbd..777f8aa 100644
|
2015-04-10 16:35:46 +02:00
|
|
|
--- a/FilesCheck.py
|
|
|
|
+++ b/FilesCheck.py
|
|
|
|
@@ -184,7 +184,7 @@ compr_regex = re.compile('\.(gz|z|Z|zip|bz2|lzma|xz)$')
|
2009-08-21 18:19:06 +02:00
|
|
|
absolute_regex = re.compile('^/([^/]+)')
|
|
|
|
absolute2_regex = re.compile('^/?([^/]+)')
|
|
|
|
points_regex = re.compile('^\.\./(.*)')
|
|
|
|
-doc_regex = re.compile('^/usr(/share|/X11R6)?/(doc|man|info)/')
|
|
|
|
+doc_regex = re.compile('^/usr(/share|/X11R6)?/(doc|man|info)/|^/opt/kde3/share/doc|^/usr/share/gnome/help')
|
2010-10-14 14:32:03 +02:00
|
|
|
bin_regex = re.compile('^/(?:usr/(?:s?bin|games)|s?bin)/(.*)')
|
2008-04-17 04:52:37 +02:00
|
|
|
includefile_regex = re.compile('\.(c|h)(pp|xx)?$', re.IGNORECASE)
|
|
|
|
develfile_regex = re.compile('\.(a|cmxa?|mli?)$')
|
2015-04-10 16:35:46 +02:00
|
|
|
diff --git a/I18NCheck.py b/I18NCheck.py
|
|
|
|
index 54b42cd..3bcf9d0 100644
|
|
|
|
--- a/I18NCheck.py
|
|
|
|
+++ b/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/([^/]+))/')
|
|
|
|
+locale_regex = re.compile('^(/(usr|opt/kde3|opt/gnome)/share/locale/([^/]+))/')
|
|
|
|
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][^/]*/[^/]+$')
|