From aa37f19c57d9b505fe0291fd42d4fbd66c132f01 Mon Sep 17 00:00:00 2001 From: Charalampos Stratakis Date: Thu, 13 Jul 2023 16:07:10 +0200 Subject: [PATCH] Add an rpminspect config file We have disabled the debuginfo tests as we don't strip the debug symbols from the package due to having disabled the debuginfo package generation. This is due to modularity issues and naming conflicts on the rpm level. Also turn off the rpmdeps check for libpython In a modular build rpminspect confuses the python38-libs for a subpackage of mod_wsgi. Ignore this check. Resolves: rhbz#2213594 --- rpminspect.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 rpminspect.yaml diff --git a/rpminspect.yaml b/rpminspect.yaml new file mode 100644 index 0000000..59abcea --- /dev/null +++ b/rpminspect.yaml @@ -0,0 +1,12 @@ +# We have disabled the debuginfo package +# generation due to issues with modularity +debuginfo: + ignore: + - /usr/lib*/httpd/modules/mod_wsgi_python*.so + - /usr/lib*/python*/site-packages/mod_wsgi/server/mod_wsgi*.so + +# In a modular build rpminspect confuses the python39-libs for a +# subpackage of mod_wsgi. Ignore this check. +rpmdeps: + ignore: + requires: ^libpython[0-9]+\.[0-9]+\.so.*\(\)\(.*\)$