forked from pool/rpmlint
Ludwig Nussel
5ad6c8a066
+ add ghost file checks + print names of failed tests - fix update_git.sh - make sure tmpfiles are listed in %files (add-check-for-tmpfiles-created-at-r.diff) - don't complain about missingok ghost files (fix-ghost-file-handling.diff) - remove obsolete check for %defattr in spec files (remove-files-attr-not-set-check.diff) OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=328
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
From: Some One <nobody@opensuse.org>
|
|
Date: Thu, 9 Apr 2015 14:55:39 +0200
|
|
Subject: [PATCH] description-check.diff
|
|
|
|
===================================================================
|
|
---
|
|
TagsCheck.py | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
diff --git a/TagsCheck.py b/TagsCheck.py
|
|
index b1c4c7a..bc79283 100644
|
|
--- a/TagsCheck.py
|
|
+++ b/TagsCheck.py
|
|
@@ -716,6 +716,9 @@ class TagsCheck(AbstractCheck.AbstractCheck):
|
|
else:
|
|
for lang in langs:
|
|
self.check_description(pkg, lang, ignored_words)
|
|
+
|
|
+ if len(pkg[rpm.RPMTAG_DESCRIPTION].partition('Authors:')[0])-4 < len(pkg[rpm.RPMTAG_SUMMARY]):
|
|
+ printWarning(pkg, 'description-shorter-than-summary')
|
|
else:
|
|
printError(pkg, 'no-description-tag')
|
|
|
|
@@ -997,6 +1000,10 @@ Name tag.''',
|
|
'''The major number of the library isn't included in the package's name.
|
|
''',
|
|
|
|
+'description-shorter-than-summary',
|
|
+'''The package description should be longer than the summary. be a bit more
|
|
+verbose, please.''',
|
|
+
|
|
'no-provides',
|
|
'''Your library package doesn't provide the -devel name without the major
|
|
version included.''',
|