From 461a3c9894f2bd154d7b4842f3a692bdcdc513bd Mon Sep 17 00:00:00 2001 From: John Kacur Date: Fri, 24 Jan 2025 16:53:00 -0500 Subject: [PATCH] Due to the special nature of stress-ng, it's not even possible to compile with -fpic or -fPIC, so turning annocheck off Resolves: RHEL-33521 Signed-off-by: John Kacur --- rpminspect.yaml | 5 +---- stress-ng.spec | 7 ++++++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/rpminspect.yaml b/rpminspect.yaml index 0c2d452..a7e10aa 100644 --- a/rpminspect.yaml +++ b/rpminspect.yaml @@ -1,7 +1,4 @@ --- inspections: badfuncs: off -annocheck: - - rhel-policy: --skip-optimization --skip-cf-protection --skip-property-note --ignore-unknown --skip-dynamic-tags --verbose - extra_opts: - - hardened: --skip-optimization --skip-cf-protection --skip-property-note --ignore-unknown --skip-dynamic-tags --verbose + annocheck: off diff --git a/stress-ng.spec b/stress-ng.spec index a83e5aa..fcd6abf 100644 --- a/stress-ng.spec +++ b/stress-ng.spec @@ -1,6 +1,6 @@ Name: stress-ng Version: 0.18.06 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Stress test a computer system in various ways License: GPL-2.0-or-later @@ -62,6 +62,11 @@ install -pm 644 bash-completion/%{name} \ %{_datadir}/bash-completion/completions/%{name} %changelog +* Fri Jan 24 2025 John Kacur - 0.18.06-6 +- Due to the special nature of stress-ng, it's not even possible to compile + with -fpic or -fPIC, so turning annocheck off +Resolves: RHEL-33521 + * Thu Jan 23 2025 John Kacur - 0.18.06-05 - Adding --skip-dynamic-tags to exceptions in rpminspect.yaml Resolves: RHEL-33521