Mon Mar 27 2006 Ville Skyttä <ville.skytta at iki.fi> - Don't pass -T to objdump for *.debug files (#185227). - lib64 library path fixes (#185228). Wed Mar 15 2006 Ville Skyttä <ville.skytta at iki.fi> - Accept zlib License (#185501). Tue Feb 28 2006 Ville Skyttä <ville.skytta at iki.fi> - Accept Ruby License (#183384) and SIL Open Font License (#176405).
105 lines
2.8 KiB
Python
105 lines
2.8 KiB
Python
# -*- python -*-
|
|
|
|
# Fedora rpmlint configuration
|
|
|
|
from Config import *
|
|
|
|
setOption("UseVersionInChangeLog", 1)
|
|
setOption("UseBzip2", 0)
|
|
setOption("UseDefaultRunlevels", 0)
|
|
setOption("UseEpoch", 0)
|
|
setOption("UseUTF8", 1)
|
|
setOption("ValidSrcPerms", (0664, 0644, ))
|
|
setOption("ValidGroups", (
|
|
"Amusements/Games",
|
|
"Amusements/Graphics",
|
|
"Applications/Archiving",
|
|
"Applications/Communications",
|
|
"Applications/Databases",
|
|
"Applications/Editors",
|
|
"Applications/Emulators",
|
|
"Applications/Engineering",
|
|
"Applications/File",
|
|
"Applications/Internet",
|
|
"Applications/Multimedia",
|
|
"Applications/Productivity",
|
|
"Applications/Publishing",
|
|
"Applications/System",
|
|
"Applications/Text",
|
|
"Development/Debug", # intended for debuginfo packages only
|
|
"Development/Debuggers",
|
|
"Development/Languages",
|
|
"Development/Libraries",
|
|
"Development/System",
|
|
"Development/Tools",
|
|
"Documentation",
|
|
"System Environment/Base",
|
|
"System Environment/Daemons",
|
|
"System Environment/Kernel",
|
|
"System Environment/Libraries",
|
|
"System Environment/Shells",
|
|
"User Interface/Desktops",
|
|
"User Interface/X",
|
|
"User Interface/X Hardware Support",
|
|
))
|
|
setOption("ValidLicenses", (
|
|
"Apache Software License",
|
|
"Artistic",
|
|
"BSD",
|
|
"Commercial",
|
|
"CPL",
|
|
"Distributable",
|
|
"FDL",
|
|
"Freeware",
|
|
"GPL",
|
|
"IBM Public License",
|
|
"LaTeX Project Public License",
|
|
"LGPL",
|
|
"MIT",
|
|
"MPL",
|
|
"NetHack General Public License",
|
|
"Non-distributable",
|
|
"Public Domain",
|
|
"Python Software Foundation License",
|
|
"QPL",
|
|
"Ruby License",
|
|
"Sun Public License",
|
|
"SIL Open Font License",
|
|
"W3C Software License",
|
|
"zlib License",
|
|
"Zope Public License",
|
|
))
|
|
setOption("ValidShells", (
|
|
"/bin/sh",
|
|
"/bin/bash",
|
|
"/sbin/ldconfig",
|
|
"/usr/bin/perl",
|
|
"/usr/bin/python",
|
|
))
|
|
setOption("DanglingSymlinkExceptions", (
|
|
['consolehelper$', 'usermode'],
|
|
['consolehelper-gtk$', 'usermode-gtk'],
|
|
))
|
|
|
|
# Output filters
|
|
addFilter("source-or-patch-not-[bg]zipped")
|
|
addFilter("%mklibname")
|
|
addFilter("no-dependency-on (perl|python)-base")
|
|
addFilter("no-dependency-on locales-")
|
|
addFilter("(python|perl5)-naming-policy-not-applied")
|
|
addFilter("no-(packager-tag|signature)")
|
|
addFilter("incoherent-version-in-name")
|
|
addFilter("invalid-build-requires")
|
|
addFilter("ghost-files-without-postin")
|
|
addFilter("postin-without-ghost-file-creation")
|
|
addFilter("no-major-in-name")
|
|
addFilter("no-provides")
|
|
addFilter("executable-in-library-package")
|
|
addFilter("non-versioned-file-in-library-package")
|
|
addFilter("requires-on-release")
|
|
addFilter("jar-not-indexed")
|
|
addFilter("invalid-(lc-messages|locale-man)-dir")
|
|
addFilter("outside-libdir-files")
|
|
addFilter('-debuginfo no-documentation')
|
|
addFilter('-debuginfo [^ ]+ /usr/lib/debug/')
|