From bc9db43296dc147878ed9e3f6ce665ee5c1ef995 Mon Sep 17 00:00:00 2001 From: Pavel Simovec Date: Thu, 27 Jun 2024 11:17:07 +0200 Subject: [PATCH] Waive annocheck: --skip-fortify and --skip-lto Resolves: RHEL-33513 --skip-fortify is waived, as it doesn't work well with files mixed with fortran. --skip-lto as comment in specfile says: "openblas fails to build with LTO due to undefined symbols." --- openblas.spec | 6 +++++- rpminspect.yaml | 3 +++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 rpminspect.yaml diff --git a/openblas.spec b/openblas.spec index 007563b..49de5d8 100644 --- a/openblas.spec +++ b/openblas.spec @@ -15,7 +15,7 @@ Name: openblas Version: 0.3.26 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An optimized BLAS library based on GotoBLAS2 License: BSD-3-Clause @@ -651,6 +651,10 @@ rm -rf %{buildroot}%{_libdir}/pkgconfig %endif %changelog +* Thu Jun 27 2024 Pavel Simovec - 0.3.26-6 +- Waive annocheck: --skip-fortify and --skip-lto +- Resolves: RHEL-33513 + * Mon Jun 24 2024 Troy Dawson - 0.3.26-5 - Bump release for June 2024 mass rebuild diff --git a/rpminspect.yaml b/rpminspect.yaml new file mode 100644 index 0000000..77da4aa --- /dev/null +++ b/rpminspect.yaml @@ -0,0 +1,3 @@ +annocheck: + extra_opts: + - hardened: --skip-fortify --skip-lto