From 7e750929c51d756761246f9446d56fa119704710 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Sat, 4 Apr 2020 13:54:44 +0100 Subject: [PATCH 01/54] Update all OCaml dependencies for RPM 4.16. --- virt-top.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/virt-top.spec b/virt-top.spec index 1db15b1..ace9eab 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.9 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ @@ -116,6 +116,9 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog +* Sat Apr 04 2020 Richard W.M. Jones - 1.0.9-7 +- Update all OCaml dependencies for RPM 4.16. + * Thu Feb 27 2020 Richard W.M. Jones - 1.0.9-6 - OCaml 4.10.0 final. From 453a41f6988f72c1662ec6bb5eae45b5d11b0bdd Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 21 Mar 2019 15:48:48 +0000 Subject: [PATCH 02/54] Add gating tests resolves: rhbz#1682780 (cherry picked from commit b2bff83949c386298fabc4e1766ea96b91e947c4) --- gating.yaml | 6 ++++++ tests/basic-test.sh | 7 +++++++ tests/tests.yml | 12 ++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 gating.yaml create mode 100755 tests/basic-test.sh create mode 100644 tests/tests.yml diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..6985029 --- /dev/null +++ b/gating.yaml @@ -0,0 +1,6 @@ +--- !Policy +product_versions: + - rhel-8 +decision_context: osci_compose_gate +rules: + - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} diff --git a/tests/basic-test.sh b/tests/basic-test.sh new file mode 100755 index 0000000..da15443 --- /dev/null +++ b/tests/basic-test.sh @@ -0,0 +1,7 @@ +#!/bin/bash - +set -e +set -x + +# I'd like to use the test:/// driver but it doesn't support the right +# APIs. +virt-top --stream -d 1 -n 3 --debug /dev/stdout diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..2383598 --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,12 @@ +- hosts: localhost + roles: + - role: standard-test-basic + tags: + - classic + required_packages: + - libvirt-daemon + - virt-top + tests: + - simple: + dir: . + run: ./basic-test.sh From 46e7e79a0fe9cf51f2824484b01b51e894d9462f Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 4 Jul 2019 10:20:57 +0100 Subject: [PATCH 03/54] Try starting libvirtd related: rhbz#1682780 (cherry picked from commit 5e64d51c94eb985be4aabf14d32f6738192cfd42) --- tests/basic-test.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/basic-test.sh b/tests/basic-test.sh index da15443..3c3e3e4 100755 --- a/tests/basic-test.sh +++ b/tests/basic-test.sh @@ -2,6 +2,10 @@ set -e set -x +# We need to start libvirtd, see: +# https://bugzilla.redhat.com/show_bug.cgi?id=1682780#c8 +systemctl start libvirtd ||: + # I'd like to use the test:/// driver but it doesn't support the right # APIs. virt-top --stream -d 1 -n 3 --debug /dev/stdout From 23ac3bba0e771af045e90723f998ffc7fe587767 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 4 Jul 2019 10:46:37 +0100 Subject: [PATCH 04/54] Try installing KVM related: rhbz#1682780 (cherry picked from commit ca7b39368a4ed18df5f784c4855f6edfd79151e8) --- tests/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/tests.yml b/tests/tests.yml index 2383598..ecf4621 100644 --- a/tests/tests.yml +++ b/tests/tests.yml @@ -5,6 +5,7 @@ - classic required_packages: - libvirt-daemon + - libvirt-daemon-kvm - virt-top tests: - simple: From 7b223850168ed7cfb89b41d3441b9e0143a5b26b Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 9 Apr 2020 10:39:16 +0100 Subject: [PATCH 05/54] Port RHEL 8.3.0 gating test to Fedora. --- gating.yaml | 2 +- virt-top.spec | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gating.yaml b/gating.yaml index 6985029..862b88b 100644 --- a/gating.yaml +++ b/gating.yaml @@ -1,6 +1,6 @@ --- !Policy product_versions: - - rhel-8 + - fedora-* decision_context: osci_compose_gate rules: - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} diff --git a/virt-top.spec b/virt-top.spec index ace9eab..b5f40d7 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.9 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ @@ -116,6 +116,9 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog +* Thu Apr 09 2020 Richard W.M. Jones - 1.0.9-8 +- Port RHEL 8.3.0 gating test to Fedora. + * Sat Apr 04 2020 Richard W.M. Jones - 1.0.9-7 - Update all OCaml dependencies for RPM 4.16. From 7c7f9d4f09b59ee41bcc727e9cfe6e5a94d0f893 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 9 Apr 2020 10:53:14 +0100 Subject: [PATCH 06/54] Port RHEL 8.3.0 gating test to Fedora [more ...] --- gating.yaml | 5 +++-- virt-top.spec | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/gating.yaml b/gating.yaml index 862b88b..282e16b 100644 --- a/gating.yaml +++ b/gating.yaml @@ -1,6 +1,7 @@ --- !Policy product_versions: - fedora-* -decision_context: osci_compose_gate +decision_context: bodhi_update_push_stable +subject_type: koji_build rules: - - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} + - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional} diff --git a/virt-top.spec b/virt-top.spec index b5f40d7..e9fb32a 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.9 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ @@ -116,7 +116,7 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog -* Thu Apr 09 2020 Richard W.M. Jones - 1.0.9-8 +* Thu Apr 09 2020 Richard W.M. Jones - 1.0.9-9 - Port RHEL 8.3.0 gating test to Fedora. * Sat Apr 04 2020 Richard W.M. Jones - 1.0.9-7 From 163b01c8ac8c289f77de412921b7d6674c51d2bf Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Wed, 22 Apr 2020 19:51:36 +0100 Subject: [PATCH 07/54] OCaml 4.11.0 pre-release attempt 2 --- virt-top.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/virt-top.spec b/virt-top.spec index e9fb32a..62e57b6 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.9 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ @@ -116,6 +116,9 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog +* Wed Apr 22 2020 Richard W.M. Jones - 1.0.9-10 +- OCaml 4.11.0 pre-release attempt 2 + * Thu Apr 09 2020 Richard W.M. Jones - 1.0.9-9 - Port RHEL 8.3.0 gating test to Fedora. From b52ac3e21652cf0731d7c78c388ba643f7e6265f Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 5 May 2020 12:04:37 +0100 Subject: [PATCH 08/54] Fix broken documentation patch (RHEL/ELN only). --- ...atch => virt-top-1.0.9-processcsv-documentation.patch | 7 ++++--- virt-top.spec | 9 +++++++-- 2 files changed, 11 insertions(+), 5 deletions(-) rename virt-top-1.0.4-processcsv-documentation.patch => virt-top-1.0.9-processcsv-documentation.patch (70%) diff --git a/virt-top-1.0.4-processcsv-documentation.patch b/virt-top-1.0.9-processcsv-documentation.patch similarity index 70% rename from virt-top-1.0.4-processcsv-documentation.patch rename to virt-top-1.0.9-processcsv-documentation.patch index 010e880..fcaf6ff 100644 --- a/virt-top-1.0.4-processcsv-documentation.patch +++ b/virt-top-1.0.9-processcsv-documentation.patch @@ -1,6 +1,7 @@ ---- virt-top-1.0.4.old/virt-top/virt-top.pod 2011-08-11 14:30:30.560493914 +0100 -+++ virt-top-1.0.4/virt-top/virt-top.pod 2011-08-11 14:34:00.934495607 +0100 -@@ -123,6 +123,22 @@ +diff -ur virt-top-1.0.9.old/src/virt-top.pod virt-top-1.0.9.new/src/virt-top.pod +--- virt-top-1.0.9.old/src/virt-top.pod 2020-05-05 12:01:25.069799212 +0100 ++++ virt-top-1.0.9.new/src/virt-top.pod 2020-05-05 12:02:05.234337666 +0100 +@@ -129,6 +129,22 @@ virt-top --csv >(split -d -l 1000 - output.csv.) diff --git a/virt-top.spec b/virt-top.spec index 62e57b6..8bd43b8 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.9 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ @@ -14,7 +14,9 @@ Source0: http://people.redhat.com/~rjones/virt-top/files/%{name}-%{versio Source1: processcsv.py Source2: processcsv.py.pod -Patch0: virt-top-1.0.4-processcsv-documentation.patch +# Adds a link to processcsv to the man page. This patch is only +# included in RHEL builds. +Patch0: virt-top-1.0.9-processcsv-documentation.patch # Upstream patch to fix FTBFS with ocaml libvirt 0.6.1.5. Patch1: 0001-libvirt-Handle-VIR_DOMAIN_PMSUSPENDED-state.patch @@ -116,6 +118,9 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog +* Tue May 5 2020 Richard W.M. Jones - 1.0.9-11 +- Fix broken documentation patch (RHEL/ELN only). + * Wed Apr 22 2020 Richard W.M. Jones - 1.0.9-10 - OCaml 4.11.0 pre-release attempt 2 From 03d932c38106587929c89170790e366385f443d8 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 5 May 2020 19:42:49 +0100 Subject: [PATCH 09/54] OCaml 4.11.0+dev2-2020-04-22 rebuild --- virt-top.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/virt-top.spec b/virt-top.spec index 8bd43b8..af15384 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.9 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ @@ -118,6 +118,9 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog +* Tue May 05 2020 Richard W.M. Jones - 1.0.9-12 +- OCaml 4.11.0+dev2-2020-04-22 rebuild + * Tue May 5 2020 Richard W.M. Jones - 1.0.9-11 - Fix broken documentation patch (RHEL/ELN only). From 4fe2895f7c9801f9cfa476d3f347fd388c55dde7 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Sat, 30 May 2020 15:34:18 +0100 Subject: [PATCH 10/54] Rebuild for updated ocaml-extlib (RHBZ#1837823). --- virt-top.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/virt-top.spec b/virt-top.spec index af15384..d5abfff 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.9 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ @@ -118,6 +118,9 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog +* Sat May 30 2020 Richard W.M. Jones - 1.0.9-13 +- Rebuild for updated ocaml-extlib (RHBZ#1837823). + * Tue May 05 2020 Richard W.M. Jones - 1.0.9-12 - OCaml 4.11.0+dev2-2020-04-22 rebuild From 38609b6b4667da71613ebf6d463f6168ff22f595 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 13:47:18 +0000 Subject: [PATCH 11/54] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- virt-top.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/virt-top.spec b/virt-top.spec index d5abfff..a1881fc 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.9 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ @@ -118,6 +118,9 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 1.0.9-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Sat May 30 2020 Richard W.M. Jones - 1.0.9-13 - Rebuild for updated ocaml-extlib (RHBZ#1837823). From 74851994b5e6ef8c5c5f97ae477c80b427409760 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 21 Aug 2020 19:33:26 +0100 Subject: [PATCH 12/54] OCaml 4.11.0 rebuild --- virt-top.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/virt-top.spec b/virt-top.spec index a1881fc..ac2b850 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.9 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ @@ -118,6 +118,9 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog +* Fri Aug 21 2020 Richard W.M. Jones - 1.0.9-15 +- OCaml 4.11.0 rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 1.0.9-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From fde280018e8d2c0651ae669967f07689aaa7020a Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 1 Sep 2020 21:50:47 +0100 Subject: [PATCH 13/54] OCaml 4.11.1 rebuild --- virt-top.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/virt-top.spec b/virt-top.spec index ac2b850..5201b10 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.9 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ @@ -118,6 +118,9 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog +* Tue Sep 01 2020 Richard W.M. Jones - 1.0.9-16 +- OCaml 4.11.1 rebuild + * Fri Aug 21 2020 Richard W.M. Jones - 1.0.9-15 - OCaml 4.11.0 rebuild From cae584d479db06ca15877f2b82c8e3e72d0eaef4 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 00:43:47 +0000 Subject: [PATCH 14/54] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- virt-top.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/virt-top.spec b/virt-top.spec index 5201b10..a27ab1b 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -21,6 +21,7 @@ Patch0: virt-top-1.0.9-processcsv-documentation.patch # Upstream patch to fix FTBFS with ocaml libvirt 0.6.1.5. Patch1: 0001-libvirt-Handle-VIR_DOMAIN_PMSUSPENDED-state.patch +BuildRequires: make BuildRequires: ocaml >= 3.10.2 BuildRequires: ocaml-ocamldoc BuildRequires: ocaml-findlib-devel From 257a38a863e962c6b6c4ed9acf5c546eae40199c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 23:08:56 +0000 Subject: [PATCH 15/54] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- virt-top.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/virt-top.spec b/virt-top.spec index a27ab1b..6b08e6b 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.9 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ @@ -119,6 +119,9 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 1.0.9-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Sep 01 2020 Richard W.M. Jones - 1.0.9-16 - OCaml 4.11.1 rebuild From 03231876ae9e8439177a56585301cc1a47b5bca5 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 2 Mar 2021 10:06:38 +0000 Subject: [PATCH 16/54] OCaml 4.12.0 build --- virt-top.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/virt-top.spec b/virt-top.spec index 6b08e6b..74703d7 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.9 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ @@ -119,6 +119,9 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog +* Tue Mar 2 10:06:37 GMT 2021 Richard W.M. Jones - 1.0.9-18 +- OCaml 4.12.0 build + * Wed Jan 27 2021 Fedora Release Engineering - 1.0.9-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 1679dffe3c705c25667b86196ef26978a6a13cc8 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 8 Mar 2021 12:22:04 +0000 Subject: [PATCH 17/54] Bump and rebuild for ocaml-gettext update. --- virt-top.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/virt-top.spec b/virt-top.spec index 74703d7..c24c96b 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.9 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ @@ -119,6 +119,9 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog +* Mon Mar 8 2021 Richard W.M. Jones - 1.0.9-19 +- Bump and rebuild for ocaml-gettext update. + * Tue Mar 2 10:06:37 GMT 2021 Richard W.M. Jones - 1.0.9-18 - OCaml 4.12.0 build From 8b4a0bddfae616829f6eeb322cb4b51774ef493e Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 7 May 2021 13:35:05 +0100 Subject: [PATCH 18/54] Do not include the package on POWER on RHEL 9 resolves: rhbz#1956935 --- virt-top.spec | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/virt-top.spec b/virt-top.spec index c24c96b..af845ae 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,10 +3,15 @@ Name: virt-top Version: 1.0.9 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ +%if 0%{?rhel} +# No qemu-kvm on POWER (RHBZ#1946532). +ExcludeArch: %{power64} +%endif + URL: http://people.redhat.com/~rjones/virt-top/ Source0: http://people.redhat.com/~rjones/virt-top/files/%{name}-%{version}.tar.gz @@ -119,6 +124,10 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog +* Fri May 07 2021 Richard W.M. Jones - 1.0.9-20 +- Do not include the package on POWER on RHEL 9 + resolves: rhbz#1956935 + * Mon Mar 8 2021 Richard W.M. Jones - 1.0.9-19 - Bump and rebuild for ocaml-gettext update. From f66a45e5693b0cd6a73b5edb8da555ae7e53ac62 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 20:33:34 +0000 Subject: [PATCH 19/54] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- virt-top.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/virt-top.spec b/virt-top.spec index af845ae..9af683c 100644 --- a/virt-top.spec +++ b/virt-top.spec @@ -3,7 +3,7 @@ Name: virt-top Version: 1.0.9 -Release: 20%{?dist} +Release: 21%{?dist} Summary: Utility like top(1) for displaying virtualization stats License: GPLv2+ @@ -124,6 +124,9 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/ %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 1.0.9-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Fri May 07 2021 Richard W.M. Jones - 1.0.9-20 - Do not include the package on POWER on RHEL 9 resolves: rhbz#1956935 From 3d2e7bcbbf2901fe78d0e0a72fd830a19f111ab7 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 1 Oct 2021 16:49:16 +0100 Subject: [PATCH 20/54] New upstream development version 1.1.0 Upstream switched to automake, simplifying the downstream build slightly. Remove Changelog file, no longer included upstream. --- .gitignore | 1 + ...-Handle-VIR_DOMAIN_PMSUSPENDED-state.patch | 40 ------------------- sources | 3 +- virt-top.spec | 33 +++++---------- 4 files changed, 14 insertions(+), 63 deletions(-) delete mode 100644 0001-libvirt-Handle-VIR_DOMAIN_PMSUSPENDED-state.patch diff --git a/.gitignore b/.gitignore index 1362986..b4fa33e 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /.build*.log /clog /virt-top-*.tar.gz +/virt-top-1.1.0.tar.gz.sig diff --git a/0001-libvirt-Handle-VIR_DOMAIN_PMSUSPENDED-state.patch b/0001-libvirt-Handle-VIR_DOMAIN_PMSUSPENDED-state.patch deleted file mode 100644 index c29b6d6..0000000 --- a/0001-libvirt-Handle-VIR_DOMAIN_PMSUSPENDED-state.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 24a461715d5bce47f63cb0097606fc336230589f Mon Sep 17 00:00:00 2001 -From: Stephane Glondu -Date: Wed, 21 Aug 2019 17:24:47 +0200 -Subject: [PATCH] libvirt: Handle VIR_DOMAIN_PMSUSPENDED state. - -Fixes FTBFS with ocaml-libvirt 0.6.1.5. - -RWMJ: Added documentation and changed the letter to 'M'. ---- - src/screen.ml | 1 + - src/virt-top.pod | 4 ++++ - 2 files changed, 5 insertions(+) - -diff --git a/src/screen.ml b/src/screen.ml -index 0d847a2..8a66ba6 100644 ---- a/src/screen.ml -+++ b/src/screen.ml -@@ -50,3 +50,4 @@ let show_state = function - | D.InfoShutdown -> 'D' - | D.InfoShutoff -> 'O' - | D.InfoCrashed -> 'X' -+ | D.InfoPMSuspended -> 'M' -diff --git a/src/virt-top.pod b/src/virt-top.pod -index 4d81608..76ad3f9 100644 ---- a/src/virt-top.pod -+++ b/src/virt-top.pod -@@ -492,6 +492,10 @@ Shutdown. - - Crashed. - -+=item B -+ -+Suspended by guest power management. -+ - =back - - =item B