From 2a5642679206062b42002af09cebeccaed9e117b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20=C3=9Acar?= Date: Tue, 24 May 2022 11:07:47 +0200 Subject: [PATCH] Add explicit requires to devel package to content rpmdeps test --- flexiblas.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/flexiblas.spec b/flexiblas.spec index a4434c1..c8796d6 100644 --- a/flexiblas.spec +++ b/flexiblas.spec @@ -19,7 +19,7 @@ Name: flexiblas Version: %{major_version}.%{minor_version}.%{patch_version} -Release: 2%{?dist} +Release: 3%{?dist} Summary: A BLAS/LAPACK wrapper library with runtime exchangeable backends # GPLv3 with an exception for the BLAS/LAPACK interface @@ -71,6 +71,10 @@ This package contains a plugin that enables profiling support. %package devel Summary: Development headers and libraries for FlexiBLAS Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: %{name}-netlib%{?_isa} = %{version}-%{release} +%if 0%{?__isa_bits} == 64 +Requires: %{name}-netlib64%{?_isa} = %{version}-%{release} +%endif %description devel %_description This package contains the development headers and libraries. @@ -402,6 +406,9 @@ make -C build64 test %endif %changelog +* Tue May 24 2022 Iñaki Úcar - 3.2.0-3 +- Add explicit requires to devel package to content rpmdeps test + * Tue May 17 2022 Iñaki Úcar - 3.2.0-2 - Undefine _ld_as_needed to fix underlinking issue (BZ 2058840)