Added descriptions.

git-svn-id: svn+ssh://rpmlint.zarb.org/home/projects/rpmlint/svn/trunk@463 9bc8b190-ac0f-0410-8968-dc7d1f502856
This commit is contained in:
Christian Belisle 2001-07-03 19:43:23 +00:00
parent 7165b92016
commit 96c5354b23
1 changed files with 20 additions and 0 deletions

View File

@ -51,4 +51,24 @@ class SourceCheck(AbstractCheck.AbstractCheck):
check=SourceCheck()
if Config.info:
addDetails(
'multiple-specfiles',
"""Your package contain multiple spec files. To build a
correct package, you need to have only one spec file containing
all your RPM information.""",
'source-or-patch-not-bzipped',
"""A source package or file in your package is not bzipped (doesn't
have the .bz2 extension. To bzip it, use bzip2.""",
'source-or-patch-not-gzipped',
"""A source package or file in your package is not gzipped (doesn't
have the .gz extension. To gzip it, use the gzip command""",
'strange-permission',
"""A file that you listed to include in your package is under strange
permissions. Usually, a file is under a 0644 permission.""",
)
# SourceCheck.py ends here