Add explicit requires to devel package to content rpmdeps test

This commit is contained in:
Iñaki Úcar 2022-05-24 11:07:47 +02:00
parent d793610049
commit 2a56426792
1 changed files with 8 additions and 1 deletions

View File

@ -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 <iucar@fedoraproject.org> - 3.2.0-3
- Add explicit requires to devel package to content rpmdeps test
* Tue May 17 2022 Iñaki Úcar <iucar@fedoraproject.org> - 3.2.0-2
- Undefine _ld_as_needed to fix underlinking issue (BZ 2058840)