Compare commits
79 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c72a1f45b7 | ||
|
|
8a797311d9 | ||
|
|
4fde25577d | ||
|
|
9408e4cecd | ||
|
|
a01d2f0db3 | ||
|
|
7f256431dc | ||
|
|
2db015db27 | ||
|
|
5c32f27eb0 | ||
|
|
b592237ea6 | ||
|
|
7503fd9d5d | ||
|
|
b3c021903b | ||
|
|
fbd272eaed | ||
|
|
7be3bf590e | ||
|
|
529d23a425 | ||
|
|
d69db7ac00 | ||
|
|
b6f608c2dd | ||
|
|
3b9599d9b0 | ||
|
|
4e8b6c0e45 | ||
|
|
b303817896 | ||
|
|
cc0771474e | ||
|
|
13160cd795 | ||
|
|
423f9604a5 | ||
|
|
28f5329fbb | ||
|
|
2610ea24a3 | ||
|
|
cd9985ceab | ||
|
|
11384f44d3 | ||
|
|
e50441f17b | ||
|
|
e358142067 | ||
|
|
15d1dcdfa3 | ||
|
|
2cc05c111c | ||
|
|
dc915fcb50 | ||
|
|
1dfa1d2d82 | ||
|
|
db056825e5 | ||
|
|
5d81bc92af | ||
|
|
3d2e7bcbbf | ||
|
|
f66a45e569 | ||
|
|
8b4a0bddfa | ||
|
|
1679dffe3c | ||
|
|
03231876ae | ||
|
|
257a38a863 | ||
|
|
cae584d479 | ||
|
|
fde280018e | ||
|
|
74851994b5 | ||
|
|
38609b6b46 | ||
|
|
4fe2895f7c | ||
|
|
03d932c381 | ||
|
|
b52ac3e216 | ||
|
|
163b01c8ac | ||
|
|
7c7f9d4f09 | ||
|
|
7b22385016 | ||
|
|
23ac3bba0e | ||
|
|
46e7e79a0f | ||
|
|
453a41f698 | ||
|
|
7e750929c5 | ||
|
|
9ec7070699 | ||
|
|
23f1c0ac66 | ||
|
|
e14dcc663c | ||
|
|
2f182f414c | ||
|
|
e6e2204bb8 | ||
|
|
2cb15432da | ||
|
|
79cf871bae | ||
|
|
09d78fe54f | ||
|
|
9190c958f1 | ||
|
|
efd3b4fd6a | ||
|
|
251e71952e | ||
|
|
f9df98c595 | ||
|
|
d3ac76e94b | ||
|
|
bafb82f32e | ||
|
|
dbca39b57c | ||
|
|
f8e3d17581 | ||
|
|
a6f3e36166 | ||
|
|
0c60431d40 | ||
|
|
3cffec055d | ||
|
|
3aee9fb5d4 | ||
|
|
170985dfd9 | ||
|
|
2c68609a6c | ||
|
|
11278ff334 | ||
|
|
781e4a5217 | ||
|
|
69bec7b32b |
11 changed files with 284 additions and 1784 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -3,3 +3,4 @@
|
|||
/.build*.log
|
||||
/clog
|
||||
/virt-top-*.tar.gz
|
||||
/virt-top-*.tar.gz.sig
|
||||
|
|
|
|||
BIN
libguestfs.keyring
Normal file
BIN
libguestfs.keyring
Normal file
Binary file not shown.
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
#!/usr/bin/python3
|
||||
#
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=665817
|
||||
#
|
||||
|
|
@ -18,7 +18,7 @@ import csv
|
|||
rows = csv.reader (sys.stdin)
|
||||
|
||||
# Get the header row.
|
||||
header = rows.next ()
|
||||
header = next(rows)
|
||||
|
||||
# Find the index of the 'Hostname' and 'Time' cols (usually first two).
|
||||
hostname_i = header.index ("Hostname")
|
||||
|
|
|
|||
3
sources
3
sources
|
|
@ -1 +1,2 @@
|
|||
cdb61d35e64c78720082d58f8edfb9da virt-top-1.0.8.tar.gz
|
||||
SHA512 (virt-top-1.1.2.tar.gz) = 1dd495daf106601236680b6d028262a217b8b93edb51c3f6c148fef7b452d8d188f1df18d500338377d9becff2174a6e33ccda4eaa913e7a159820d7bfca3a3c
|
||||
SHA512 (virt-top-1.1.2.tar.gz.sig) = db754791923aa30838b5f33bd6a523fda4a34068e9b20cdedc09e56a72de7e894f156e70106c5274f9e8121dde25cfc594e9fcb932dca08af15fe67e0c27990a
|
||||
|
|
|
|||
11
tests/basic-test.sh
Executable file
11
tests/basic-test.sh
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash -
|
||||
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
|
||||
13
tests/tests.yml
Normal file
13
tests/tests.yml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
- hosts: localhost
|
||||
roles:
|
||||
- role: standard-test-basic
|
||||
tags:
|
||||
- classic
|
||||
required_packages:
|
||||
- libvirt-daemon
|
||||
- libvirt-daemon-kvm
|
||||
- virt-top
|
||||
tests:
|
||||
- simple:
|
||||
dir: .
|
||||
run: ./basic-test.sh
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
diff -ur virt-top-1.0.8/virt-top/Makefile.in virt-top-1.0.8.new/virt-top/Makefile.in
|
||||
--- virt-top-1.0.8/virt-top/Makefile.in 2016-11-05 14:55:58.428874957 +0000
|
||||
+++ virt-top-1.0.8.new/virt-top/Makefile.in 2016-11-05 14:55:44.065886803 +0000
|
||||
@@ -64,11 +64,11 @@
|
||||
|
||||
XOBJS := $(OBJS:.cmo=.cmx)
|
||||
|
||||
-OCAMLCFLAGS := -g -warn-error A-3
|
||||
+OCAMLCFLAGS := -g
|
||||
OCAMLCLIBS := -linkpkg
|
||||
|
||||
OCAMLOPTPACKAGES := $(OCAMLCPACKAGES)
|
||||
-OCAMLOPTFLAGS := -warn-error A-3
|
||||
+OCAMLOPTFLAGS :=
|
||||
OCAMLOPTLIBS := $(OCAMLCLIBS)
|
||||
|
||||
BYTE_TARGETS := virt-top
|
||||
|
|
@ -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.)
|
||||
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,16 +0,0 @@
|
|||
--- virt-top-1.0.8.old/virt-top/Makefile.in 2012-03-06 11:32:12.000000000 +0000
|
||||
+++ virt-top-1.0.8/virt-top/Makefile.in 2014-08-02 17:31:41.146930514 +0100
|
||||
@@ -64,11 +64,11 @@
|
||||
|
||||
XOBJS := $(OBJS:.cmo=.cmx)
|
||||
|
||||
-OCAMLCFLAGS := -g -warn-error A
|
||||
+OCAMLCFLAGS := -g -warn-error A-3
|
||||
OCAMLCLIBS := -linkpkg
|
||||
|
||||
OCAMLOPTPACKAGES := $(OCAMLCPACKAGES)
|
||||
-OCAMLOPTFLAGS := -warn-error A
|
||||
+OCAMLOPTFLAGS := -warn-error A-3
|
||||
OCAMLOPTLIBS := $(OCAMLCLIBS)
|
||||
|
||||
BYTE_TARGETS := virt-top
|
||||
317
virt-top.spec
317
virt-top.spec
|
|
@ -1,45 +1,41 @@
|
|||
%global opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
||||
%global debug_package %{nil}
|
||||
# OCaml packages not built on i686 since OCaml 5 / Fedora 39.
|
||||
ExcludeArch: %{ix86}
|
||||
|
||||
Name: virt-top
|
||||
Version: 1.0.8
|
||||
Release: 21%{?dist}
|
||||
Version: 1.1.2
|
||||
Release: 5%{?dist}
|
||||
Summary: Utility like top(1) for displaying virtualization stats
|
||||
License: GPLv2+
|
||||
License: GPL-2.0-or-later
|
||||
|
||||
URL: http://people.redhat.com/~rjones/virt-top/
|
||||
Source0: http://people.redhat.com/~rjones/virt-top/files/%{name}-%{version}.tar.gz
|
||||
|
||||
%if 0%{?rhel} >= 6
|
||||
# Post-process output of CSV file (RHBZ#665817, RHBZ#912020).
|
||||
Source1: processcsv.py
|
||||
Source2: processcsv.py.pod
|
||||
|
||||
Patch0: virt-top-1.0.4-processcsv-documentation.patch
|
||||
%if 0%{?rhel}
|
||||
# No qemu-kvm on POWER (RHBZ#1946532).
|
||||
ExcludeArch: %{power64}
|
||||
%endif
|
||||
|
||||
# Update configure for aarch64 (bz #926701)
|
||||
Patch1: virt-top-aarch64.patch
|
||||
URL: https://people.redhat.com/~rjones/virt-top/
|
||||
Source0: https://people.redhat.com/~rjones/virt-top/files/%{name}-%{version}.tar.gz
|
||||
Source1: https://people.redhat.com/~rjones/virt-top/files/%{name}-%{version}.tar.gz.sig
|
||||
|
||||
# Don't warn about immutable strings (OCaml 4.02).
|
||||
Patch2: virt-top-no-immutable-warning.patch
|
||||
# Post-process output of CSV file (RHBZ#665817, RHBZ#912020).
|
||||
Source2: processcsv.py
|
||||
Source3: processcsv.py.pod
|
||||
|
||||
# Kill -warn-error with fire.
|
||||
Patch3: virt-top-1.0.8-no-warn-error.patch
|
||||
# Keyring used to verify tarball signature.
|
||||
Source4: libguestfs.keyring
|
||||
|
||||
# Adds a link to processcsv to the man page. This patch is only
|
||||
# included in RHEL builds.
|
||||
Patch1: virt-top-1.0.9-processcsv-documentation.patch
|
||||
|
||||
BuildRequires: gcc
|
||||
BuildRequires: make
|
||||
BuildRequires: ocaml >= 3.10.2
|
||||
BuildRequires: ocaml-ocamldoc
|
||||
BuildRequires: ocaml-findlib-devel
|
||||
# Need the ncurses / ncursesw (--enable-widec) fix.
|
||||
BuildRequires: ocaml-curses-devel >= 1.0.3-7
|
||||
BuildRequires: ocaml-extlib-devel
|
||||
BuildRequires: ocaml-xml-light-devel
|
||||
BuildRequires: ocaml-csv-devel
|
||||
BuildRequires: ocaml-calendar-devel
|
||||
# Need support for virDomainGetCPUStats (fixed in 0.6.1.2).
|
||||
BuildRequires: ocaml-libvirt-devel >= 0.6.1.2-5
|
||||
|
||||
# Tortuous list of BRs for gettext.
|
||||
BuildRequires: ocaml-libvirt-devel >= 0.6.1.5
|
||||
BuildRequires: ocaml-gettext-devel >= 0.3.3
|
||||
BuildRequires: ocaml-fileutils-devel
|
||||
# For msgfmt:
|
||||
|
|
@ -47,13 +43,11 @@ BuildRequires: gettext
|
|||
|
||||
# Non-OCaml BRs.
|
||||
BuildRequires: libvirt-devel
|
||||
BuildRequires: perl
|
||||
BuildRequires: libxml2-devel
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl(Pod::Perldoc)
|
||||
BuildRequires: gawk
|
||||
|
||||
%ifarch ppc ppc64
|
||||
BuildRequires: /usr/bin/execstack
|
||||
%endif
|
||||
BuildRequires: gnupg2
|
||||
|
||||
|
||||
%description
|
||||
|
|
@ -66,40 +60,30 @@ different virtualization systems.
|
|||
|
||||
|
||||
%prep
|
||||
%{gpgverify} --keyring='%{SOURCE4}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
||||
%setup -q
|
||||
|
||||
%if 0%{?rhel} >= 6
|
||||
%patch0 -p1
|
||||
%patch -P1 -p1
|
||||
%endif
|
||||
|
||||
# Update configure for aarch64 (bz #926701)
|
||||
%patch1 -p1
|
||||
|
||||
%patch2 -p1
|
||||
%patch3 -p1
|
||||
|
||||
chmod -x COPYING
|
||||
# "ocamlfind byte" has been removed as an alias
|
||||
sed -i 's/\(OCAMLBEST=\)byte/\1ocamlc/' configure
|
||||
|
||||
|
||||
%build
|
||||
%configure
|
||||
make all
|
||||
%if %opt
|
||||
make opt
|
||||
strip virt-top/virt-top.opt
|
||||
%endif
|
||||
|
||||
# Build translations.
|
||||
make -C po
|
||||
make
|
||||
|
||||
# Force rebuild of man page.
|
||||
rm -f virt-top/virt-top.1
|
||||
make -C virt-top virt-top.1
|
||||
# There is a missing man_MANS rule, will fix upstream in next version.
|
||||
rm -f src/virt-top.1
|
||||
make -C src virt-top.1
|
||||
|
||||
%if 0%{?rhel} >= 6
|
||||
# Build processcsv.py.1.
|
||||
pod2man -c "Virtualization Support" --release "%{name}-%{version}" \
|
||||
%{SOURCE2} > processcsv.py.1
|
||||
%{SOURCE3} > processcsv.py.1
|
||||
%endif
|
||||
|
||||
|
||||
|
|
@ -107,26 +91,15 @@ pod2man -c "Virtualization Support" --release "%{name}-%{version}" \
|
|||
make DESTDIR=$RPM_BUILD_ROOT install
|
||||
|
||||
# Install translations.
|
||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/locale
|
||||
make -C po install PODIR="$RPM_BUILD_ROOT%{_datadir}/locale"
|
||||
%find_lang %{name}
|
||||
|
||||
# Install virt-top manpage by hand for now.
|
||||
# Install virt-top manpage by hand for now - see above.
|
||||
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
|
||||
install -m 0644 virt-top/virt-top.1 $RPM_BUILD_ROOT%{_mandir}/man1
|
||||
|
||||
%ifarch ppc ppc64
|
||||
# Clear executable stack flag. Really this is a bug in the OCaml
|
||||
# compiler on ppc, but it's simpler to just clear the bit here for all
|
||||
# architectures.
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=605124
|
||||
# http://caml.inria.fr/mantis/view.php?id=4564
|
||||
execstack -c $RPM_BUILD_ROOT%{_bindir}/virt-top
|
||||
%endif
|
||||
install -m 0644 src/virt-top.1 $RPM_BUILD_ROOT%{_mandir}/man1
|
||||
|
||||
%if 0%{?rhel} >= 6
|
||||
# Install processcsv.py.
|
||||
install -m 0755 %{SOURCE1} $RPM_BUILD_ROOT%{_bindir}
|
||||
install -m 0755 %{SOURCE2} $RPM_BUILD_ROOT%{_bindir}
|
||||
|
||||
# Install processcsv.py(1).
|
||||
install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/
|
||||
|
|
@ -134,7 +107,8 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/
|
|||
|
||||
|
||||
%files -f %{name}.lang
|
||||
%doc COPYING README TODO ChangeLog
|
||||
%doc README TODO
|
||||
%license COPYING
|
||||
%{_bindir}/virt-top
|
||||
%{_mandir}/man1/virt-top.1*
|
||||
%if 0%{?rhel} >= 6
|
||||
|
|
@ -144,6 +118,217 @@ install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/
|
|||
|
||||
|
||||
%changelog
|
||||
* Tue Oct 14 2025 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-5
|
||||
- OCaml 5.4.0 rebuild
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Mon Jul 07 2025 Jerry James <loganjerry@gmail.com> - 1.1.2-3
|
||||
- Rebuild to fix OCaml dependencies
|
||||
- Change http URLs to https
|
||||
|
||||
* Thu Apr 03 2025 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-2
|
||||
- Enable ocaml-gettext again
|
||||
|
||||
* Fri Feb 28 2025 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-1
|
||||
- New upstream version 1.1.2
|
||||
- Disable gettext support in Fedora Rawhide
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-23
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Fri Jan 10 2025 Jerry James <loganjerry@gmail.com> - 1.1.1-22
|
||||
- OCaml 5.3.0 rebuild for Fedora 42
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Wed Jun 19 2024 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-20
|
||||
- OCaml 5.2.0 ppc64le fix
|
||||
|
||||
* Thu May 30 2024 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-19
|
||||
- OCaml 5.2.0 for Fedora 41
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Mon Dec 18 2023 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-17
|
||||
- OCaml 5.1.1 + s390x code gen fix for Fedora 40
|
||||
|
||||
* Tue Dec 12 2023 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-16
|
||||
- OCaml 5.1.1 rebuild for Fedora 40
|
||||
|
||||
* Mon Nov 27 2023 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-15
|
||||
- Fix build issue with libxml2 2.12.1
|
||||
|
||||
* Thu Oct 05 2023 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-14
|
||||
- OCaml 5.1 rebuild for Fedora 40
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Tue Jul 11 2023 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-12
|
||||
- OCaml 5.0 rebuild for Fedora 39
|
||||
|
||||
* Mon Jul 10 2023 Jerry James <loganjerry@gmail.com> - 1.1.1-11
|
||||
- OCaml 5.0.0 rebuild
|
||||
- Add patch to fix linking on bytecode-only architectures
|
||||
- Update deprecated %%patchN usage
|
||||
- Use %%license macro
|
||||
|
||||
* Mon Jun 05 2023 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-10
|
||||
- Migrated to SPDX license
|
||||
|
||||
* Tue Jan 24 2023 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-9
|
||||
- Rebuild OCaml packages for F38
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Mon Nov 28 2022 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-7
|
||||
- Fix "Input/output error" in journal (RHBZ#2148798)
|
||||
|
||||
* Tue Oct 18 2022 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-6
|
||||
- Check tarball signature
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sun Jun 19 2022 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-4
|
||||
- OCaml 4.14.0 rebuild
|
||||
|
||||
* Fri Feb 04 2022 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-3
|
||||
- OCaml 4.13.1 rebuild to remove package notes
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Nov 03 2021 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-1
|
||||
- New upstream development version 1.1.1
|
||||
- No longer depends on ocaml-csv, ocaml-extlib or ocaml-xml-light
|
||||
- Adds new dependency on libxml2
|
||||
|
||||
* Tue Oct 05 2021 Richard W.M. Jones <rjones@redhat.com> - 1.1.0-2
|
||||
- OCaml 4.13.1 build
|
||||
|
||||
* Fri Oct 01 2021 Richard W.M. Jones <rjones@redhat.com> - 1.1.0-1
|
||||
- New upstream development version 1.1.0
|
||||
- Upstream switched to automake, simplifying the downstream build slightly.
|
||||
- Remove Changelog file, no longer included upstream.
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Fri May 07 2021 Richard W.M. Jones <rjones@redhat.com> - 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 <rjones@redhat.com> - 1.0.9-19
|
||||
- Bump and rebuild for ocaml-gettext update.
|
||||
|
||||
* Tue Mar 2 10:06:37 GMT 2021 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-18
|
||||
- OCaml 4.12.0 build
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Sep 01 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-16
|
||||
- OCaml 4.11.1 rebuild
|
||||
|
||||
* Fri Aug 21 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-15
|
||||
- OCaml 4.11.0 rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Sat May 30 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-13
|
||||
- Rebuild for updated ocaml-extlib (RHBZ#1837823).
|
||||
|
||||
* Tue May 05 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-12
|
||||
- OCaml 4.11.0+dev2-2020-04-22 rebuild
|
||||
|
||||
* Tue May 5 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-11
|
||||
- Fix broken documentation patch (RHEL/ELN only).
|
||||
|
||||
* Wed Apr 22 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-10
|
||||
- OCaml 4.11.0 pre-release attempt 2
|
||||
|
||||
* Thu Apr 09 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-9
|
||||
- Port RHEL 8.3.0 gating test to Fedora.
|
||||
|
||||
* Sat Apr 04 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-7
|
||||
- Update all OCaml dependencies for RPM 4.16.
|
||||
|
||||
* Thu Feb 27 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-6
|
||||
- OCaml 4.10.0 final.
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sun Jan 19 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-4
|
||||
- OCaml 4.10.0+beta1 rebuild.
|
||||
|
||||
* Fri Dec 06 2019 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-3
|
||||
- OCaml 4.09.0 (final) rebuild.
|
||||
|
||||
* Wed Aug 21 2019 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-2
|
||||
- Rebuild against ocaml-libvirt 0.6.1.5.
|
||||
|
||||
* Tue Aug 20 2019 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-1
|
||||
- New upstream version 1.0.9.
|
||||
- Remove patches which are upstream and aarch64 build fix.
|
||||
|
||||
* Fri Aug 16 2019 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-37
|
||||
- OCaml 4.08.1 (final) rebuild.
|
||||
|
||||
* Thu Aug 01 2019 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-36
|
||||
- OCaml 4.08.1 (rc2) rebuild.
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-35
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-34
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-33
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Jul 11 2018 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-32
|
||||
- OCaml 4.07.0 (final) rebuild.
|
||||
|
||||
* Wed Jun 20 2018 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-31
|
||||
- OCaml 4.07.0-rc1 rebuild.
|
||||
|
||||
* Wed Mar 28 2018 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-30
|
||||
- Modify processcsv.py for Python 3.
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-29
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Sat Nov 18 2017 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-28
|
||||
- OCaml 4.06.0 rebuild.
|
||||
|
||||
* Wed Aug 09 2017 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-27
|
||||
- OCaml 4.05.0 rebuild.
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-26
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-25
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Tue Jun 27 2017 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-24
|
||||
- OCaml 4.04.2 rebuild.
|
||||
|
||||
* Sat May 13 2017 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-23
|
||||
- OCaml 4.04.1 rebuild.
|
||||
|
||||
* Tue Mar 28 2017 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-22
|
||||
- Include all upstream patches since 1.0.8 was released.
|
||||
- BR ocaml-libvirt with virConnectGetAllDomainStats API.
|
||||
- Remove execstack hack, no longer needed on any arch.
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue