# PLF configuration for the rpmlint utility. # $Id$ # This line is mandatory to access the configuration functions from Config import * import TagsCheck defaultChecks() addCheckDir("/usr/local/share/rpmlint/") addCheck("PlfCheck") # Configuration options used by the checks setOption("Vendor", "Penguin Liberation Front") setOption("Distribution", "Mandrakelinux") setOption("ReleaseExtension", "plf") setOption("ValidBuildHost", ".*") setOption("Packager", ".*@zarb.org") addFilter("no-signature") PLF_LICENSES=[] PLF_LICENSES.extend(TagsCheck.DEFAULT_VALID_LICENSES) PLF_LICENSES.remove('Proprietary') PLF_LICENSES.remove('Freeware') PLF_LICENSES.remove('Shareware') PLF_LICENSES.remove('Charityware') PLF_LICENSES.append('PLF License') setOption('ValidLicenses', PLF_LICENSES)