2008-04-17 04:52:37 +02:00
|
|
|
--- TagsCheck.py
|
|
|
|
+++ TagsCheck.py
|
2010-04-01 16:20:38 +02:00
|
|
|
@@ -660,6 +660,9 @@
|
|
|
|
if not description:
|
2009-09-16 18:41:21 +02:00
|
|
|
printError(pkg, 'no-description-tag')
|
|
|
|
else:
|
2010-01-27 18:18:50 +01:00
|
|
|
+ if len(pkg[rpm.RPMTAG_DESCRIPTION].partition('Authors:')[0])-4 < len(pkg[rpm.RPMTAG_SUMMARY]):
|
2009-09-16 18:41:21 +02:00
|
|
|
+ printWarning(pkg, 'description-shorter-than-summary')
|
2008-04-17 04:52:37 +02:00
|
|
|
+
|
2010-04-01 16:20:38 +02:00
|
|
|
if not pkg[rpm.RPMTAG_HEADERI18NTABLE]:
|
|
|
|
self._unexpanded_macros(pkg, '%description', description)
|
|
|
|
else:
|
|
|
|
@@ -928,6 +931,10 @@
|
2008-04-17 04:52:37 +02:00
|
|
|
'''The major number of the library isn't included in the package's name.
|
|
|
|
''',
|
|
|
|
|
|
|
|
+'description-shorter-than-summary',
|
2010-04-01 16:20:38 +02:00
|
|
|
+'''The package description should be longer than the summary. be a bit more
|
2008-04-17 04:52:37 +02:00
|
|
|
+verbose, please.''',
|
|
|
|
+
|
|
|
|
'no-provides',
|
2010-04-01 16:20:38 +02:00
|
|
|
'''Your library package doesn't provide the -devel name without the major
|
|
|
|
version included.''',
|