29 lines
932 B
Python
29 lines
932 B
Python
# -*- python -*-
|
|
|
|
# System wide rpmlint default configuration. Do not modify, override/add
|
|
# options in /etc/rpmlint/config and/or ~/.rpmlintrc as needed.
|
|
|
|
import os.path
|
|
import re
|
|
import sys
|
|
|
|
from Config import *
|
|
import Pkg
|
|
|
|
# Inherit the base config and build from there.
|
|
exec(open("/usr/share/rpmlint/config","rb").read())
|
|
|
|
# Fedora 12 and newer no longer need a buildroot defined, to have the buildroot cleaned at the beginning
|
|
# of %install, and do not need to define a %clean section unless the default is invalid.
|
|
# However, EL-4 and EL-5 still need these checks.
|
|
removeFilter("no-cleaning-of-buildroot")
|
|
removeFilter("no-buildroot-tag")
|
|
removeFilter("no-%clean-section")
|
|
|
|
# Only EL4 needs the files-attr-not-set check, because rpm 4.4 and newer no longer need a %defattr line
|
|
# (it automatically provides one).
|
|
removeFilter("files-attr-not-set")
|
|
|
|
# Fixed in rpm >= 4.7.1
|
|
removeFilter("broken-syntax-in-scriptlet-requires")
|