Go to file
Chmouel Boudjnah a3798575ab If the menu_command contain a kdesu -c "", check instead for the
command instead of kdesu.


git-svn-id: svn+ssh://rpmlint.zarb.org/home/projects/rpmlint/svn/trunk@199 9bc8b190-ac0f-0410-8968-dc7d1f502856
2000-07-19 05:42:36 +00:00
.cvsignore * added .flog and .bz2. 1999-10-23 22:10:10 +00:00
AbstractCheck.py Initial revision 1999-10-01 07:15:25 +00:00
BinariesCheck.py * added a check for soname. 2000-06-27 08:16:51 +00:00
COPYING Initial revision 1999-10-01 07:15:25 +00:00
ChangeLog * 0.15 2000-06-27 08:59:20 +00:00
Config.py * added PostCheck 2000-07-05 14:46:55 +00:00
ConfigCheck.py * output via Filter. 1999-10-23 18:38:27 +00:00
DistributionCheck.py * first version. 2000-02-10 11:58:43 +00:00
FHSCheck.py * output via Filter. 1999-10-23 18:38:27 +00:00
FilesCheck.py By default {doc,man,info} in /usr/share, product an error when the 2000-07-19 05:41:10 +00:00
Filter.py * test a string against the filters. 1999-11-15 18:33:35 +00:00
I18NCheck.py * added a check on dirs containing LC_MESSAGES catalogs. 1999-12-14 08:57:02 +00:00
INSTALL * added cpio to the list of dependencies. 1999-10-06 12:56:15 +00:00
Makefile * added README.CVS. 2000-02-23 06:45:52 +00:00
MenuCheck.py If the menu_command contain a kdesu -c "", check instead for the 2000-07-19 05:42:36 +00:00
Pkg.py * (_gatherDepInfo) corrected the conflicts and provides acquisition. 2000-06-27 08:12:48 +00:00
PostCheck.py * first version. 2000-07-05 14:42:16 +00:00
README * added description for PostCheck. 2000-07-05 14:48:32 +00:00
README.CVS * first version. 2000-02-23 06:39:37 +00:00
SignatureCheck.py * added gpg to correct signatures. 2000-02-10 12:20:34 +00:00
SourceCheck.py * oops: added Filter import. 1999-10-27 20:10:00 +00:00
TagsCheck.py * removed trace. 2000-06-27 08:14:22 +00:00
compile.py * first version. 1999-10-23 22:07:41 +00:00
config su is suid and it normal !! 2000-07-19 05:18:28 +00:00
rpmlint * launch python with unbuffered output. 1999-10-06 13:03:45 +00:00
rpmlint.py * 0.15 2000-06-27 08:22:08 +00:00
rpmlint.spec * 0.15 2000-06-27 08:59:20 +00:00

README

rpmlint is a tool to check common errors on rpm packages.  rpmlint can
be used  to test individual packages  before uploading or  to check an
entire distribution. By default  all checks are processed but specific
checks can be performed by using command line parameters.

rpmlint idea comes from the lintian tool of the Debian project.

Comments and new checks welcome. Send feedback to
<flepied@mandrakesoft.com>.

Implemented checks:

	o tags checks (TagsCheck).
	o Distribution specific checks (MandrakeCheck).
	o binaries checks (BinaryCheck).
	o configuration files checks (ConfigCheck).
	o locations, permissions, groups and owners checks (FileCheck).
	o suid warnings (FileCheck).
	o pgp checks (SignatureCheck).
	o FHS checks (FHSCheck).
	o Source specific checks (SourceCheck).
	o i18n checks (I18NCheck).
	o menu system checks (MenuCheck).
	o %post; %pre, %postun and %preun scripts checks (PostCheck).

If you want to change configuration options or the list of checks, use the
global configuration file /etc/rpmlint/config or in the user configuration
file ~/.rpmlintrc.

Configuration files are python source files and should begin with the
following line:

from Config import *

to load configuration functions.

Configuration functions:

resetChecks() resets the list of checks.

addCheck(check) adds the check to the list of checks to try.

addCheckDir(path) adds a path to look for checks.

setOption(name, value) sets the value of the configuration option. See bellow
to have the list of available options.

addFilter(regexp) adds a filter to remove the output of a check.

Available options:

name			type		default
========================================================
Vendor			string		"MandrakeSoft"
Distribution		string		"Linux-Mandrake"
UseBzip2		boolean		1
ValidGroups		list of strings
ValidMenuSections	list of strings
ReleaseExtension	string or None	"mdk"
UseVersionInChangelog	boolen		1
ExtraMenuNeeds		list of strings
XpmIconPath		regexp		"/usr/share/icons"