Compare commits
13 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
34dc7575c8 | ||
|
|
77a3c478b6 | ||
|
|
dddb80de12 | ||
|
|
0d97b8208d | ||
|
|
6ec5acaa05 | ||
|
|
5e5e4bc180 | ||
|
|
2a73162012 | ||
|
|
3c5ba04f65 | ||
|
|
6f9ad3844c | ||
|
|
16fd7bf758 | ||
|
|
ce17ff4e5f | ||
|
|
46010b50ba | ||
|
|
7cff7707dd |
3 changed files with 105 additions and 7 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
|
@ -273,3 +273,12 @@
|
|||
/anaconda-34.22.tar.bz2
|
||||
/anaconda-34.23.tar.bz2
|
||||
/anaconda-34.24.tar.bz2
|
||||
/anaconda-34.24.1.tar.bz2
|
||||
/anaconda-34.24.2.tar.bz2
|
||||
/anaconda-34.24.3.tar.bz2
|
||||
/anaconda-34.24.4.tar.bz2
|
||||
/anaconda-34.24.5.tar.bz2
|
||||
/anaconda-34.24.6.tar.bz2
|
||||
/anaconda-34.24.7.tar.bz2
|
||||
/anaconda-34.24.8.tar.bz2
|
||||
/anaconda-34.24.9.tar.bz2
|
||||
|
|
|
|||
101
anaconda.spec
101
anaconda.spec
|
|
@ -1,6 +1,6 @@
|
|||
Summary: Graphical system installer
|
||||
Name: anaconda
|
||||
Version: 34.24
|
||||
Version: 34.24.9
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2+ and MIT
|
||||
URL: http://fedoraproject.org/wiki/Anaconda
|
||||
|
|
@ -48,7 +48,7 @@ Patch2: 0003-Do-not-require-inst.-prefixes-for-Anaconda-boot-argu.patch
|
|||
%define nmver 1.0
|
||||
%define pykickstartver 3.32-1
|
||||
%define pypartedver 2.5-2
|
||||
%define pythonblivetver 1:3.2.2-1
|
||||
%define pythonblivetver 1:3.3.3-1
|
||||
%define rpmver 4.10.0
|
||||
%define simplelinever 1.1-1
|
||||
%define subscriptionmanagerver 1.26
|
||||
|
|
@ -81,10 +81,8 @@ BuildRequires: libtimezonemap-devel >= %{libtimezonemapver}
|
|||
BuildRequires: gdk-pixbuf2-devel
|
||||
BuildRequires: libxml2
|
||||
|
||||
Requires: anaconda-core = %{version}-%{release}
|
||||
Requires: anaconda-gui = %{version}-%{release}
|
||||
Requires: anaconda-tui = %{version}-%{release}
|
||||
Requires: anaconda-install-env-deps = %{version}-%{release}
|
||||
|
||||
%description
|
||||
The anaconda package is a metapackage for the Anaconda installer.
|
||||
|
|
@ -114,7 +112,6 @@ Requires: python3-productmd
|
|||
Requires: python3-dasbus >= %{dasbusver}
|
||||
Requires: flatpak-libs
|
||||
%if 0%{?rhel}
|
||||
Requires: python3-syspurpose
|
||||
Requires: subscription-manager >= %{subscriptionmanagerver}
|
||||
%endif
|
||||
|
||||
|
|
@ -201,7 +198,6 @@ Requires: tmux
|
|||
Requires: gdb
|
||||
# support for installation from image and live & live image installations
|
||||
Requires: rsync
|
||||
Recommends: zram-generator-defaults
|
||||
|
||||
%description install-env-deps
|
||||
The anaconda-install-env-deps metapackage lists all installation environment dependencies.
|
||||
|
|
@ -237,7 +233,10 @@ Requires: gdb
|
|||
Requires: rsync
|
||||
# only WeakRequires elsewhere and not guaranteed to be present
|
||||
Requires: device-mapper-multipath
|
||||
# FIXME: do not require on RHEL until the package is ready
|
||||
%if 0%{?rhel} != 9
|
||||
Requires: zram-generator-defaults
|
||||
%endif
|
||||
|
||||
%description install-img-deps
|
||||
The anaconda-install-img-deps metapackage lists all boot.iso installation image dependencies.
|
||||
|
|
@ -420,6 +419,96 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d
|
|||
%{_prefix}/libexec/anaconda/dd_*
|
||||
|
||||
%changelog
|
||||
* Mon Apr 12 2021 Martin Kolman <mkolman@redhat.com> - 34.24.9-1
|
||||
- Allow to exclude the kernel-lpae package (vponcova)
|
||||
|
||||
* Wed Mar 31 2021 Martin Kolman <mkolman@redhat.com> - 34.24.8-1
|
||||
- ostree: ignore exit code 65 for systemd-tmpfiles (vponcova)
|
||||
- Turn off wrapping of the scale values (vponcova)
|
||||
- Make the scale visible by default (#1943370) (vponcova)
|
||||
|
||||
* Tue Mar 30 2021 Martin Kolman <mkolman@redhat.com> - 34.24.7-1
|
||||
- network: match also connections named by MAC created by NM in initramfs
|
||||
(rvykydal)
|
||||
- Create /tmp with the right permissions (#1937626) (vponcova)
|
||||
- Don't recommend zram-generator-defaults (#1938132) (vponcova)
|
||||
- Don't automatically execute the default partitioning (vponcova)
|
||||
- Fix the warning about working NTP servers (#1889180) (vponcova)
|
||||
- Remove implicit dependencies (vponcova)
|
||||
- Don't install anaconda-install-env-deps by default (vponcova)
|
||||
|
||||
* Mon Mar 22 2021 Martin Kolman <mkolman@redhat.com> - 34.24.6-1
|
||||
- Check if the mount point exists before calling statvfs (#1824357) (vponcova)
|
||||
- Do not follow symlinks when copying /etc/resolv.conf (#1933454) (rvykydal)
|
||||
- Use the volume UUID to search for the GRUB config in btrfs partitions
|
||||
(javierm)
|
||||
- Drop python3-syspurpose dependency (mkolman)
|
||||
- Fix copypaste typo in github owner tests (vslavik)
|
||||
- Modify owner tests for this f34-release branch (vslavik)
|
||||
- Fix running tests for the f34-devel branch (vslavik)
|
||||
- Wrap text in spoke title labels, if needed (vslavik)
|
||||
- Wrap welcome spoke title if needed (vslavik)
|
||||
- Choose the best locale more carefully (#1933384) (vponcova)
|
||||
- Make the user interface context safe for the initial setup (vponcova)
|
||||
- The network spoke should be visible in live spins (#1932961) (vponcova)
|
||||
- Ignore Pylint errors on DNF API (vslavik)
|
||||
- Ignore Pylint errors for PropertiesChanged.connect (vslavik)
|
||||
- Silence false Pylint warning (vslavik)
|
||||
- Ignore false Pylint errors for Enum subclasses (vslavik)
|
||||
- Determine GRUB directory relative path to use in config file (javierm)
|
||||
|
||||
* Mon Feb 22 2021 Martin Kolman <mkolman@redhat.com> - 34.24.5-1
|
||||
- Add the "Encrypt my data" checkbox to the custom partitioning spoke
|
||||
(vponcova)
|
||||
- Don't translate prompt keys (#1892830) (vponcova)
|
||||
- Fix RHEL zram conditional in spec file (mkolman)
|
||||
- Remove interactive parameter from container-rpm-test (jkonecny)
|
||||
- Add container push for rpm containers (jkonecny)
|
||||
- Enable our and blivet COPR repositories for rpm tests (jkonecny)
|
||||
- vconsole font selection to cover more langs (suanand)
|
||||
|
||||
* Thu Feb 18 2021 Martin Kolman <mkolman@redhat.com> - 34.24.4-1
|
||||
- [Storage] add btrfs_compression option (#1928857) (michel)
|
||||
- Correct branch config after merge (vslavik)
|
||||
- Enable Makefiles and Dockerfiles for branched Fedora (vslavik)
|
||||
- packit: make tests ⊂ builds for the chroot set (ttomecek)
|
||||
- packit: run all actions in a single action (ttomecek)
|
||||
- configure.ac: make the Copyright up to date (ttomecek)
|
||||
- ovirt: rebase on CentOS Stream (sbonazzo)
|
||||
- Use a custom stylesheet to define RHEL-specific stylesheet data (vponcova)
|
||||
- Remove unused variables from Makefile (vslavik)
|
||||
- Drop astroid hotfix patch (jkonecny)
|
||||
- Don't block the start of the Network module by the hostname service
|
||||
(vponcova)
|
||||
- Remove unused variables related to mock (vslavik)
|
||||
- Save lorax-packages.log to installed system (rvykydal)
|
||||
|
||||
* Mon Feb 15 2021 Martin Kolman <mkolman@redhat.com> - 34.24.3-1
|
||||
- Do not hard-require zram-generator-default on RHEL just yet (mkolman)
|
||||
- Improve Packit configuration to use fedora-development (jkonecny)
|
||||
- Add a kickstart specification for the main process (vponcova)
|
||||
- Adapt Packit configuration to a newly branched Fedora (jkonecny)
|
||||
- Create swap by default in RHEL-based installations (#1915297) (vponcova)
|
||||
- Add missing space to a message (vslavik)
|
||||
- Use Linux HOST_NAME_MAX hostname length limit (xiaqirong1)
|
||||
|
||||
* Fri Feb 12 2021 Martin Kolman <mkolman@redhat.com> - 34.24.2-1
|
||||
- Rename pyanaconda.modules.common.typing (vponcova)
|
||||
|
||||
* Thu Feb 11 2021 Martin Kolman <mkolman@redhat.com> - 34.24.1-1
|
||||
- Adjust configuration options for Fedora 34 (mkolman)
|
||||
- Add dependabot support for GitHub actions (jkonecny)
|
||||
- Set volume id for iso built for kickstart test (rvykydal)
|
||||
- Guess the default product name from the os-release files (vponcova)
|
||||
- Apply overrides for the anaconda widgets only in the test environment
|
||||
(vponcova)
|
||||
- Create real updates images (vponcova)
|
||||
- Remove deprecated support for add-ons (vponcova)
|
||||
- Don't run installation tasks of add-ons in a meta task (vponcova)
|
||||
- network: wrap IP addresses showed in GUI for wireless devices (#1925781)
|
||||
(rvykydal)
|
||||
- Install support for non-ascii keyboard layouts (#1919483) (vponcova)
|
||||
|
||||
* Mon Feb 08 2021 Martin Kolman <mkolman@redhat.com> - 34.24-1
|
||||
- Modify spec file to add patches required on rhel-9 rebuild (#1907566)
|
||||
(jkonecny)
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (anaconda-34.24.tar.bz2) = 5a5b240debf0b45ab7471ad8639bc634741582fd4e86fd8cea8ff516ee9cf90fe35f0193c2383306ad68125569d80a7968017092b36979f240026b15eddf2276
|
||||
SHA512 (anaconda-34.24.9.tar.bz2) = cf2e558339ca687dc1170e06e84e1709ff7a9ce4c6589d3cb2a2eb46f11ca4d7608b7ed5b82e9307d23271fcabf82955e87a494126449b4d25d2d78026fb55ed
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue