New version 34.23-1
- Add a metapackage for image (boot.iso) dependencies (vslavik) - Take dnf substitutions from installer environment configuration (rvykydal) - Fix getting kernel version list for liveimg (rvykydal)
This commit is contained in:
parent
11d68b49c6
commit
ef6ed5d854
1
.gitignore
vendored
1
.gitignore
vendored
@ -271,3 +271,4 @@
|
|||||||
/anaconda-34.20.tar.bz2
|
/anaconda-34.20.tar.bz2
|
||||||
/anaconda-34.21.tar.bz2
|
/anaconda-34.21.tar.bz2
|
||||||
/anaconda-34.22.tar.bz2
|
/anaconda-34.22.tar.bz2
|
||||||
|
/anaconda-34.23.tar.bz2
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Summary: Graphical system installer
|
Summary: Graphical system installer
|
||||||
Name: anaconda
|
Name: anaconda
|
||||||
Version: 34.22
|
Version: 34.23
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+ and MIT
|
License: GPLv2+ and MIT
|
||||||
URL: http://fedoraproject.org/wiki/Anaconda
|
URL: http://fedoraproject.org/wiki/Anaconda
|
||||||
@ -182,11 +182,13 @@ Requires: hfsplus-tools
|
|||||||
%endif
|
%endif
|
||||||
# kexec support
|
# kexec support
|
||||||
Requires: kexec-tools
|
Requires: kexec-tools
|
||||||
|
# needed for proper driver disk support - if RPMs must be installed, a repo is needed
|
||||||
Requires: createrepo_c
|
Requires: createrepo_c
|
||||||
# run's on TTY1 in install env
|
# run's on TTY1 in install env
|
||||||
Requires: tmux
|
Requires: tmux
|
||||||
# install time crash handling
|
# install time crash handling
|
||||||
Requires: gdb
|
Requires: gdb
|
||||||
|
# support for installation from image and live & live image installations
|
||||||
Requires: rsync
|
Requires: rsync
|
||||||
Recommends: zram-generator-defaults
|
Recommends: zram-generator-defaults
|
||||||
|
|
||||||
@ -195,6 +197,41 @@ The anaconda-install-env-deps metapackage lists all installation environment dep
|
|||||||
This makes it possible for packages (such as Initial Setup) to depend on the main Anaconda package without
|
This makes it possible for packages (such as Initial Setup) to depend on the main Anaconda package without
|
||||||
pulling in all the install time dependencies as well.
|
pulling in all the install time dependencies as well.
|
||||||
|
|
||||||
|
%package install-img-deps
|
||||||
|
Summary: Installation image specific dependencies
|
||||||
|
# This package must have no weak dependencies.
|
||||||
|
Requires: udisks2-iscsi
|
||||||
|
Requires: libblockdev-plugins-all >= %{libblockdevver}
|
||||||
|
# active directory/freeipa join support
|
||||||
|
Requires: realmd
|
||||||
|
Requires: isomd5sum >= %{isomd5sumver}
|
||||||
|
%ifarch %{ix86} x86_64
|
||||||
|
Requires: fcoe-utils >= %{fcoeutilsver}
|
||||||
|
%endif
|
||||||
|
# likely HFS+ resize support
|
||||||
|
%ifarch %{ix86} x86_64
|
||||||
|
%if ! 0%{?rhel}
|
||||||
|
Requires: hfsplus-tools
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
# kexec support
|
||||||
|
Requires: kexec-tools
|
||||||
|
# needed for proper driver disk support - if RPMs must be installed, a repo is needed
|
||||||
|
Requires: createrepo_c
|
||||||
|
# run's on TTY1 in install env
|
||||||
|
Requires: tmux
|
||||||
|
# install time crash handling
|
||||||
|
Requires: gdb
|
||||||
|
# support for installation from image and live & live image installations
|
||||||
|
Requires: rsync
|
||||||
|
# only WeakRequires elsewhere and not guaranteed to be present
|
||||||
|
Requires: device-mapper-multipath
|
||||||
|
Requires: zram-generator-defaults
|
||||||
|
|
||||||
|
%description install-img-deps
|
||||||
|
The anaconda-install-img-deps metapackage lists all boot.iso installation image dependencies.
|
||||||
|
Add this package to an image build (eg. with lorax) to ensure all Anaconda capabilities are supported in the resulting image.
|
||||||
|
|
||||||
%package gui
|
%package gui
|
||||||
Summary: Graphical user interface for the Anaconda installer
|
Summary: Graphical user interface for the Anaconda installer
|
||||||
Requires: anaconda-core = %{version}-%{release}
|
Requires: anaconda-core = %{version}-%{release}
|
||||||
@ -292,6 +329,11 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d
|
|||||||
# Allow the lang file to be empty
|
# Allow the lang file to be empty
|
||||||
%define _empty_manifest_terminate_build 0
|
%define _empty_manifest_terminate_build 0
|
||||||
|
|
||||||
|
%files install-img-deps
|
||||||
|
|
||||||
|
# Allow the lang file to be empty here too
|
||||||
|
%define _empty_manifest_terminate_build 0
|
||||||
|
|
||||||
%files core -f %{name}.lang
|
%files core -f %{name}.lang
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%{_unitdir}/*
|
%{_unitdir}/*
|
||||||
@ -367,6 +409,11 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d
|
|||||||
%{_prefix}/libexec/anaconda/dd_*
|
%{_prefix}/libexec/anaconda/dd_*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Feb 05 2021 Martin Kolman <mkolman@redhat.com> - 34.23-1
|
||||||
|
- Add a metapackage for image (boot.iso) dependencies (vslavik)
|
||||||
|
- Take dnf substitutions from installer environment configuration (rvykydal)
|
||||||
|
- Fix getting kernel version list for liveimg (rvykydal)
|
||||||
|
|
||||||
* Wed Feb 03 2021 Martin Kolman <mkolman@redhat.com> - 34.22-1
|
* Wed Feb 03 2021 Martin Kolman <mkolman@redhat.com> - 34.22-1
|
||||||
- Don't initialize the software selection if the payload is not set up
|
- Don't initialize the software selection if the payload is not set up
|
||||||
(#1916114) (vponcova)
|
(#1916114) (vponcova)
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (anaconda-34.22.tar.bz2) = 49fc57852b5fb98ec8a2b1ac94c1377151e01ee49d23651b60ecd5e08fcc7dc86f44328e8f68a64c1eb9c7a0e69a954b440377795f416ae01339c8e5dc018d25
|
SHA512 (anaconda-34.23.tar.bz2) = f938525d1f05e7fde4b50f08469f822225277f4326135488f2e9ec4938a0a33b8d514f8dbf8919debc251797660600b942f081b7d087eb6a4d308dd979d1e90d
|
||||||
|
Loading…
Reference in New Issue
Block a user