2010-04-28 20:41:49 +00:00
|
|
|
Index: TagsCheck.py
|
|
|
|
===================================================================
|
|
|
|
--- TagsCheck.py.orig
|
2008-04-17 02:52:37 +00:00
|
|
|
+++ TagsCheck.py
|
2014-02-21 14:54:14 +00:00
|
|
|
@@ -715,6 +715,9 @@ class TagsCheck(AbstractCheck.AbstractCh
|
|
|
|
else:
|
|
|
|
for lang in langs:
|
|
|
|
self.check_description(pkg, lang, ignored_words)
|
|
|
|
+
|
2010-01-27 17:18:50 +00:00
|
|
|
+ if len(pkg[rpm.RPMTAG_DESCRIPTION].partition('Authors:')[0])-4 < len(pkg[rpm.RPMTAG_SUMMARY]):
|
2009-09-16 16:41:21 +00:00
|
|
|
+ printWarning(pkg, 'description-shorter-than-summary')
|
2014-02-21 14:54:14 +00:00
|
|
|
else:
|
|
|
|
printError(pkg, 'no-description-tag')
|
|
|
|
|
|
|
|
@@ -995,6 +998,10 @@ Name tag.''',
|
2008-04-17 02:52:37 +00:00
|
|
|
'''The major number of the library isn't included in the package's name.
|
|
|
|
''',
|
|
|
|
|
|
|
|
+'description-shorter-than-summary',
|
2010-04-01 14:20:38 +00:00
|
|
|
+'''The package description should be longer than the summary. be a bit more
|
2008-04-17 02:52:37 +00:00
|
|
|
+verbose, please.''',
|
|
|
|
+
|
|
|
|
'no-provides',
|
2010-04-01 14:20:38 +00:00
|
|
|
'''Your library package doesn't provide the -devel name without the major
|
|
|
|
version included.''',
|