From 5aee1a6c865eeadcf07a6a82bea184c48da8aecb Mon Sep 17 00:00:00 2001 From: John Kacur Date: Wed, 15 Nov 2023 15:09:07 -0500 Subject: [PATCH] Add an rpminspect file to pass gating which is failing due to Add an rpminspect file to pass gating which is failing due to python egg-info directory permissions Resolves: RHEL-16401 Signed-off-by: John Kacur --- rpminspect.yaml | 9 +++++++++ rteval.spec | 7 ++++++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 rpminspect.yaml diff --git a/rpminspect.yaml b/rpminspect.yaml new file mode 100644 index 0000000..9c2eb08 --- /dev/null +++ b/rpminspect.yaml @@ -0,0 +1,9 @@ +# Shutting off permissions due to python egg-info files + +--- +inspections: + permissions: off + +capabilities: + ignore: + - /usr/lib/python*/site-packages/rteval-*-py*.egg-info diff --git a/rteval.spec b/rteval.spec index b502020..12f4144 100644 --- a/rteval.spec +++ b/rteval.spec @@ -1,6 +1,6 @@ Name: rteval Version: 3.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Utility to evaluate system suitability for RT Linux Group: Development/Tools @@ -83,6 +83,11 @@ to the screen. %{python3_sitelib}/rteval/__pycache__/* %changelog +* Wed Nov 15 2023 John Kacur - 3.7-3 +- Add an rpminspect file to pass gating which is failing due to + python egg-info directory permissions +Resolves: RHEL-16401 + * Mon Nov 13 2023 John Kacur - 3.7-2 - Remove upstream spec files Resolves: RHEL-9189