2012-08-06 17:40:14 +11:00
|
|
|
# rpmlint detects the *.gox files for Go language support as
|
|
|
|
# unstripped binaries
|
|
|
|
addFilter("E: unstripped-binary-or-object")
|
|
|
|
# rpmlint detects the *.ads and *.adb files for Ada language support
|
|
|
|
# as scripts without shebang
|
|
|
|
addFilter("E: script-without-shebang")
|
|
|
|
# GCJ tools are packaged with the gcj libraries for now
|
|
|
|
addFilter("E: executable-in-library-package")
|
|
|
|
# Jar files in gcj library package
|
|
|
|
addFilter("E: non-versioned-file-in-library-package")
|
|
|
|
addFilter("E: outside-libdir-files")
|
|
|
|
# Let's not fail local rpm --rebuilds with default rpm config
|
|
|
|
addFilter("E: no-packager-tag")
|
2014-05-21 19:02:32 +11:00
|
|
|
# Seems to be a false positive on libgnat
|
|
|
|
addFilter("E: incoherent-version-in-name")
|
|
|
|
# Intentional, all of gcc is essentially -devel...
|
|
|
|
addFilter("E: devel-file-in-non-devel-package")
|
2018-02-13 14:33:13 +03:00
|
|
|
addFilter("W: devel-file-in-non-devel-package")
|
2014-05-21 19:02:32 +11:00
|
|
|
# This too
|
|
|
|
addFilter("E: devel-dependency")
|
2018-02-13 14:33:13 +03:00
|
|
|
|
|
|
|
# This set of packages is special and thus the files are installed into /opt.
|
2018-02-13 15:17:45 +03:00
|
|
|
addFilter("E: dir-or-file-in-opt")
|