Skip to content

Commit

Permalink
spec: Require the base package with architecture-specific dependencies
Browse files Browse the repository at this point in the history
This is an architecture-specific package (ie., not noarch).  According
to the Fedora packaging guidelines [1], when a subpackage requires an
architecture-specific base package, it MUST do so using a fully
versioned archicture-specific dependency.

[1] https://docs.fedoraproject.org/en-US/packaging-guidelines/
  • Loading branch information
debarshiray committed Feb 14, 2025
1 parent d5094fb commit 9abebd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subscription-manager.spec
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ platform.
%if %{use_container_plugin}
%package -n subscription-manager-plugin-container
Summary: A plugin for handling container content
Requires: %{name} = %{version}-%{release}
Requires: %{name}%{?_isa} = %{version}-%{release}

%description -n subscription-manager-plugin-container
Enables handling of content of type 'containerImage' in any certificates
Expand Down Expand Up @@ -304,7 +304,7 @@ Summary: A plugin for handling OSTree content.
Requires: %{py_package_prefix}-gobject-base
# plugin needs a slightly newer version of python-iniparse for 'tidy'
Requires: %{py_package_prefix}-iniparse >= 0.4
Requires: %{name} = %{version}-%{release}
Requires: %{name}%{?_isa} = %{version}-%{release}

%description -n subscription-manager-plugin-ostree
Enables handling of content of type 'ostree' in any certificates
Expand Down

0 comments on commit 9abebd7

Please sign in to comment.