From 555a5a504dd538d5be581f76a5a1fe72aec1e059 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Tue, 5 Oct 2021 13:36:02 -0400 Subject: [PATCH] Drop i686 support for RHEL >= 9 RHEL 9 does not have i686 support for golang Signed-off-by: Stephen Gallagher --- podman.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/podman.spec b/podman.spec index 30ab9d4..011fd46 100644 --- a/podman.spec +++ b/podman.spec @@ -67,10 +67,11 @@ Version: 3.4.0 # N.foo if released, 0.N.foo if unreleased # Rawhide almost always ships unreleased builds, # so release tag should be of the form 0.N.foo -Release: 3%{?dist} +Release: 4%{?dist} Summary: Manage Pods, Containers and Container Images License: ASL 2.0 URL: https://%{name}.io/ +ExclusiveArch: %{golang_arches} Source0: %{git0}/archive/%{built_tag}.tar.gz Source1: %{git_plugins}/archive/%{commit_plugins}/%{repo_plugins}-%{shortcommit_plugins}.tar.gz Source2: %{git_mcni}/archive/%{commit_mcni}/%{repo_mcni}-%{shortcommit_mcni}.tar.gz @@ -684,6 +685,10 @@ exit 0 # rhcontainerbot account currently managed by lsm5 %changelog +* Tue Oct 05 2021 Stephen Gallagher - 3:3.4.0-4 +- Drop i686 support for RHEL >= 9 +- RHEL 9 does not have i686 support for golang + * Mon Oct 04 2021 Lokesh Mandvekar - 3:3.4.0-3 - Gating tests: fix permissions error - From: Ed Santiago