This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: lsbrpmlint | |
=================================================================== | |
--- lsbrpmlint (révision 0) | |
+++ lsbrpmlint (révision 0) | |
@@ -0,0 +1,14 @@ | |
+#!/bin/sh | |
+#--------------------------------------------------------------- | |
+# Project : Mandriva Linux | |
+# Module : rpmlint | |
+# File : lsbrpmlint |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -ur /usr/share/rpmlint/TagsCheck.py rpmlint/TagsCheck.py | |
--- /usr/share/rpmlint/TagsCheck.py 2006-06-28 23:10:02.000000000 +0200 | |
+++ rpmlint/TagsCheck.py 2006-07-03 18:22:29.000000000 +0200 | |
@@ -401,6 +401,9 @@ | |
use_utf8=Config.getOption('UseUTF8', Config.USEUTF8_DEFAULT) | |
requires_in_usr_local_regex=re.compile('^/usr/local/bin') | |
max_line_len=79 | |
+valid_devel_group=Config.getOption('DevelGroups') | |
+if valid_devel_group: | |
+ valid_devel_group_regex=re.compile(Config.getOption('DevelGroups')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- rpmlint.py | |
+++ rpmlint.py | |
@@ -16,6 +16,7 @@ import Pkg | |
import Config | |
import os | |
import stat | |
+import locale | |
import rpm | |
from Filter import * | |
import SpecCheck |
NewerOlder