import tuned-2.19.0-1.el9
This commit is contained in:
parent
cfd2e63417
commit
0ac3f8e59d
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/tuned-2.18.0.tar.gz
|
SOURCES/tuned-2.19.0.tar.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
9e94ee0e46bc1a3d0548eee6a33bc04b4676e825 SOURCES/tuned-2.18.0.tar.gz
|
369f0a4af9f03e6c1a5b137509b792a63aadd688 SOURCES/tuned-2.19.0.tar.gz
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
Summary: A dynamic adaptive system tuning daemon
|
Summary: A dynamic adaptive system tuning daemon
|
||||||
Name: tuned
|
Name: tuned
|
||||||
Version: 2.18.0
|
Version: 2.19.0
|
||||||
Release: 1%{?prerel1}%{?dist}
|
Release: 1%{?prerel1}%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Source0: https://github.com/redhat-performance/%{name}/archive/v%{version}%{?prerel2}/%{name}-%{version}%{?prerel2}.tar.gz
|
Source0: https://github.com/redhat-performance/%{name}/archive/v%{version}%{?prerel2}/%{name}-%{version}%{?prerel2}.tar.gz
|
||||||
@ -54,8 +54,8 @@ Requires(postun): systemd
|
|||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: %{_py}, %{_py}-devel
|
BuildRequires: %{_py}, %{_py}-devel
|
||||||
# BuildRequires for 'make test'
|
# BuildRequires for 'make test'
|
||||||
# python-mock is needed for python-2.7, but it's not available on RHEL-7
|
# python-mock is needed for python-2.7, but it's not available on RHEL-7, only in the EPEL
|
||||||
%if %{without python3} && ( ! 0%{?rhel} || 0%{?rhel} >= 8 )
|
%if %{without python3} && ( ! 0%{?rhel} || 0%{?rhel} >= 8 || 0%{?epel})
|
||||||
BuildRequires: %{_py}-mock
|
BuildRequires: %{_py}-mock
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: %{_py}-pyudev
|
BuildRequires: %{_py}-pyudev
|
||||||
@ -81,10 +81,11 @@ Requires: virt-what, ethtool, gawk
|
|||||||
Requires: util-linux, dbus, polkit
|
Requires: util-linux, dbus, polkit
|
||||||
%if 0%{?fedora} > 22 || 0%{?rhel} > 7
|
%if 0%{?fedora} > 22 || 0%{?rhel} > 7
|
||||||
Recommends: dmidecode
|
Recommends: dmidecode
|
||||||
Recommends: hdparm
|
# i686 excluded
|
||||||
Recommends: kernel-tools
|
Recommends: kernel-tools
|
||||||
Recommends: kmod
|
Requires: hdparm
|
||||||
Recommends: iproute
|
Requires: kmod
|
||||||
|
Requires: iproute
|
||||||
%endif
|
%endif
|
||||||
# syspurpose
|
# syspurpose
|
||||||
%if 0%{?rhel} > 8
|
%if 0%{?rhel} > 8
|
||||||
@ -297,10 +298,9 @@ touch %{buildroot}%{_sysconfdir}/modprobe.d/kvm.rt.tuned.conf
|
|||||||
# validate desktop file
|
# validate desktop file
|
||||||
desktop-file-validate %{buildroot}%{_datadir}/applications/tuned-gui.desktop
|
desktop-file-validate %{buildroot}%{_datadir}/applications/tuned-gui.desktop
|
||||||
|
|
||||||
# Run tests on RHEL > 7 or non RHEL
|
# On RHEL-7 EPEL is needed, because there is no python-mock package and
|
||||||
# We cannot run tests on RHEL-7 because there is no python-mock package and
|
|
||||||
# python-2.7 doesn't have mock built-in
|
# python-2.7 doesn't have mock built-in
|
||||||
%if 0%{?rhel} > 7 || ! 0%{?rhel}
|
%if 0%{?rhel} >= 8 || 0%{?epel} || ! 0%{?rhel}
|
||||||
%check
|
%check
|
||||||
make test %{make_python_arg}
|
make test %{make_python_arg}
|
||||||
%endif
|
%endif
|
||||||
@ -548,6 +548,28 @@ fi
|
|||||||
%{_mandir}/man7/tuned-profiles-openshift.7*
|
%{_mandir}/man7/tuned-profiles-openshift.7*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Aug 19 2022 Jaroslav Škarvada <jskarvad@redhat.com> - 2.19.0-1
|
||||||
|
- new release
|
||||||
|
- rebased tuned to latest upstream
|
||||||
|
related: rhbz#2057609
|
||||||
|
|
||||||
|
* Tue Aug 9 2022 Jaroslav Škarvada <jskarvad@redhat.com> - 2.19.0-0.1.rc1
|
||||||
|
- new release
|
||||||
|
- rebased tuned to latest upstream
|
||||||
|
resolves: rhbz#2057609
|
||||||
|
- fixed parsing of inline comments
|
||||||
|
- added support for quotes in isolated_cores specification
|
||||||
|
- spec: reduced weak dependencies
|
||||||
|
resolves: rhbz#2093841
|
||||||
|
- recommend: do not ignore syspurpose_role if there is no syspurpose
|
||||||
|
resolves: rhbz#2030580
|
||||||
|
- added support for initial autosetup of isolated_cores
|
||||||
|
resolves: rhbz#2093847
|
||||||
|
|
||||||
|
* Thu May 19 2022 Jaroslav Škarvada <jskarvad@redhat.com> - 2.18.0-2
|
||||||
|
- realtime: set tsc as reliable
|
||||||
|
resolves: rhbz#2086374
|
||||||
|
|
||||||
* Wed Feb 9 2022 Jaroslav Škarvada <jskarvad@redhat.com> - 2.18.0-1
|
* Wed Feb 9 2022 Jaroslav Škarvada <jskarvad@redhat.com> - 2.18.0-1
|
||||||
- new release
|
- new release
|
||||||
- rebased tuned to latest upstream
|
- rebased tuned to latest upstream
|
||||||
|
Loading…
Reference in New Issue
Block a user