From 13c7347ea5e14161c18d960a7e94b7bac5b3fdce Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 6 Nov 2023 14:41:59 -0500 Subject: [PATCH] Add a requirement from -devel to -libs To silence an rpmdeps warning which is spurious, but it doesn't realize we already handle this through the main package. ``` Subpackage composefs-devel on i686 carries 'Requires: libcomposefs.so.1' which comes from subpackage composefs-libs but does not carry an explicit package version requirement. Please add 'Requires: composefs-libs = %{version}-%{release}' to the spec file to avoid the need to test interoperability between various combinations of old and new subpackages. ``` --- composefs.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/composefs.spec b/composefs.spec index c5b0a27..65e0a45 100644 --- a/composefs.spec +++ b/composefs.spec @@ -21,6 +21,7 @@ Please see https://github.com/containers/composefs for more information. %package devel Summary: Devel files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: %{name}-libs%{?_isa} = %{version}-%{release} %description devel Devel files for %{name}.