Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove support for i686 builds #5887

Merged
merged 2 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions anaconda.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Summary: Graphical system installer
Name: anaconda
Version: @PACKAGE_VERSION@
Release: @PACKAGE_RELEASE@%{?dist}
ExcludeArch: %{ix86}
License: GPL-2.0-or-later
URL: http://fedoraproject.org/wiki/Anaconda

Expand Down Expand Up @@ -194,11 +195,11 @@ Requires: libblockdev-lvm-dbus
# active directory/freeipa join support
Requires: realmd
Requires: isomd5sum >= %{isomd5sumver}
%ifarch %{ix86} x86_64
%ifarch x86_64
Recommends: fcoe-utils >= %{fcoeutilsver}
%endif
# likely HFS+ resize support
%ifarch %{ix86} x86_64
%ifarch x86_64
%if ! 0%{?rhel}
Requires: hfsplus-tools
%endif
Expand Down Expand Up @@ -240,7 +241,7 @@ Summary: Installation image specific dependencies
# Pull in most stuff with the -env- metapackage
Requires: anaconda-install-env-deps = %{version}-%{release}
# Require storage things that are only recommended in -env-
%ifarch %{ix86} x86_64
%ifarch x86_64
Requires: fcoe-utils >= %{fcoeutilsver}
%endif
# only WeakRequires elsewhere and not guaranteed to be present
Expand Down
13 changes: 13 additions & 0 deletions docs/release-notes/drop-i686-builds.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
:Type: Packaging
:Summary: Remove i686 builds

:Description:
Anaconda is still (not explicitly) supporting i686 builds even thought
that Fedora dropped the support a long time ago.

Anaconda now excludes the i686 builds explicitly in Anaconda to allow
our dependent packages drop of the i686 build.

:Links:
- https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
- https://github.com/coreos/fedora-coreos-tracker/issues/1716