-
Notifications
You must be signed in to change notification settings - Fork 563
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade: spausedd version to 20210719
- Loading branch information
1 parent
be5bb3f
commit d109c01
Showing
3 changed files
with
72 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"Signatures": { | ||
"spausedd-20201112.tar.gz": "974b6d24cdb2ae1bd1175a513bb6544c820ebd06457adabd6277395b8ad7f6f0" | ||
"spausedd-20210719.tar.gz": "1f6d51b0b4ccb98c0bc5bcf9339b721a7a82851b9af399b0c90eaa998de286cd" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,20 +4,27 @@ Distribution: Azure Linux | |
|
||
Name: spausedd | ||
Summary: Utility to detect and log scheduler pause | ||
Version: 20201112 | ||
Release: 3%{?dist} | ||
Version: 20210719 | ||
Release: 10%{?dist} | ||
License: ISC | ||
URL: https://github.com/jfriesse/spausedd | ||
Source0: https://github.com/jfriesse/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz | ||
|
||
# VMGuestLib exists only for x86 architectures | ||
# VMGuestLib exists only for x86 architectures (for Fedora) and x86_64 (for RHEL) | ||
%if %{with vmguestlib} | ||
%if 0%{?rhel} >= 6 | ||
%ifarch x86_64 | ||
%global use_vmguestlib 1 | ||
%endif | ||
%else | ||
%ifarch %{ix86} x86_64 | ||
%global use_vmguestlib 1 | ||
%endif | ||
%endif | ||
%endif | ||
|
||
BuildRequires: gcc | ||
BuildRequires: make | ||
%{?systemd_requires} | ||
BuildRequires: systemd | ||
|
||
|
@@ -33,16 +40,15 @@ Utility to detect and log scheduler pause | |
|
||
%build | ||
%set_build_flags | ||
make \ | ||
%make_build \ | ||
%if %{defined use_vmguestlib} | ||
WITH_VMGUESTLIB=1 \ | ||
%else | ||
WITH_VMGUESTLIB=0 \ | ||
%endif | ||
%{?_smp_mflags} | ||
|
||
%install | ||
make DESTDIR="%{buildroot}" PREFIX="%{_prefix}" install | ||
%make_install PREFIX="%{_prefix}" | ||
|
||
mkdir -p %{buildroot}/%{_unitdir} | ||
install -m 644 -p init/%{name}.service %{buildroot}/%{_unitdir} | ||
|
@@ -64,20 +70,73 @@ install -m 644 -p init/%{name}.service %{buildroot}/%{_unitdir} | |
%systemd_postun spausedd.service | ||
|
||
%changelog | ||
* Thu Dec 16 2021 Pawel Winogrodzki <[email protected]> - 20201112-3 | ||
* Fri Jan 10 2025 Pawel Archana Shettigar <[email protected]> - 20210719-10 | ||
- Initial CBL-Mariner import from Fedora 32 (license: MIT). | ||
- Removing the explicit %%clean stage. | ||
- License verified. | ||
|
||
* Fri Oct 15 2021 Pawel Winogrodzki <[email protected]> - 20201112-2 | ||
- Initial CBL-Mariner import from Fedora 32 (license: MIT). | ||
* Sat Jul 20 2024 Fedora Release Engineering <[email protected]> - 20210719-9 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild | ||
|
||
* Sat Jan 27 2024 Fedora Release Engineering <[email protected]> - 20210719-8 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild | ||
|
||
* Sat Jul 22 2023 Fedora Release Engineering <[email protected]> - 20210719-7 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild | ||
|
||
* Tue Jun 06 2023 Jan Friesse <[email protected]> - 20210719-6 | ||
- migrated to SPDX license | ||
|
||
* Sat Jan 21 2023 Fedora Release Engineering <[email protected]> - 20210719-5 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild | ||
|
||
* Sat Jul 23 2022 Fedora Release Engineering <[email protected]> - 20210719-4 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild | ||
|
||
* Sat Jan 22 2022 Fedora Release Engineering <[email protected]> - 20210719-3 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild | ||
|
||
* Fri Jul 23 2021 Fedora Release Engineering <[email protected]> - 20210719-2 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild | ||
|
||
* Mon Jul 19 2021 Jan Friesse <[email protected]> - 20210719-1 | ||
- Add mode option for moving to root cgroup functionality | ||
|
||
* Thu May 20 2021 Jan Friesse <[email protected]> - 20210520-1 | ||
- Document cgroup v2 problems | ||
|
||
* Tue May 11 2021 Jan Friesse <[email protected]> - 20210511-1 | ||
- Support for cgroup v2 | ||
|
||
* Fri Mar 26 2021 Jan Friesse <[email protected]> - 20210326-1 | ||
- Fix possible memory leak | ||
- Check memlock rlimit | ||
|
||
* Wed Jan 27 2021 Fedora Release Engineering <[email protected]> - 20201112-2 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild | ||
|
||
* Thu Nov 12 2020 Jan Friesse <[email protected]> - 20201112-1 | ||
- Add ability to move process into root cgroup | ||
- Rebase to new version | ||
|
||
* Tue Nov 10 2020 Jan Friesse <[email protected]> - 20201110-1 | ||
- Fix log_perror | ||
- Rebase to new version | ||
|
||
* Tue Sep 22 2020 Jan Friesse <[email protected]> - 20200323-4 | ||
- Fix build for ELN | ||
|
||
* Wed Jul 29 2020 Fedora Release Engineering <[email protected]> - 20200323-3 | ||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild | ||
|
||
* Wed Jul 22 2020 Jan Friesse <[email protected]> - 20200323-2 | ||
- Use make macros | ||
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro | ||
|
||
* Mon Mar 23 2020 Jan Friesse <[email protected]> - 20200323-1 | ||
- Enhance man page | ||
- Add CI tests | ||
- Enable gating | ||
- Rebase to new version | ||
|
||
* Thu Jan 30 2020 Fedora Release Engineering <[email protected]> - 20190807-2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters