2023-07-11 10:36:26 +00:00
|
|
|
# OCaml packages not built on i686 since OCaml 5 / Fedora 39.
|
|
|
|
ExcludeArch: %{ix86}
|
|
|
|
|
2008-05-20 08:35:08 +00:00
|
|
|
Name: virt-top
|
2021-11-03 20:27:58 +00:00
|
|
|
Version: 1.1.1
|
2023-10-05 15:34:42 +00:00
|
|
|
Release: 14%{?dist}
|
2008-05-20 08:35:08 +00:00
|
|
|
Summary: Utility like top(1) for displaying virtualization stats
|
2023-06-05 15:09:11 +00:00
|
|
|
License: GPL-2.0-or-later
|
2016-11-05 14:58:02 +00:00
|
|
|
|
2021-05-07 12:35:05 +00:00
|
|
|
%if 0%{?rhel}
|
|
|
|
# No qemu-kvm on POWER (RHBZ#1946532).
|
|
|
|
ExcludeArch: %{power64}
|
|
|
|
%endif
|
|
|
|
|
2011-01-06 14:44:28 +00:00
|
|
|
URL: http://people.redhat.com/~rjones/virt-top/
|
|
|
|
Source0: http://people.redhat.com/~rjones/virt-top/files/%{name}-%{version}.tar.gz
|
2022-10-18 13:09:32 +00:00
|
|
|
Source1: http://people.redhat.com/~rjones/virt-top/files/%{name}-%{version}.tar.gz.sig
|
2013-06-29 01:31:19 +00:00
|
|
|
|
2013-07-29 15:16:45 +00:00
|
|
|
# Post-process output of CSV file (RHBZ#665817, RHBZ#912020).
|
2022-10-18 13:09:32 +00:00
|
|
|
Source2: processcsv.py
|
|
|
|
Source3: processcsv.py.pod
|
|
|
|
|
|
|
|
# Keyring used to verify tarball signature.
|
|
|
|
Source4: libguestfs.keyring
|
2013-07-29 15:16:45 +00:00
|
|
|
|
2020-05-05 11:04:37 +00:00
|
|
|
# Adds a link to processcsv to the man page. This patch is only
|
|
|
|
# included in RHEL builds.
|
2022-11-28 11:33:10 +00:00
|
|
|
Patch1: virt-top-1.0.9-processcsv-documentation.patch
|
|
|
|
|
|
|
|
# Fix "Input/output error" in journal (RHBZ#2148798)
|
|
|
|
Patch2: 0001-virt-top-fix-to-explicitly-disconnect-from-libvirtd.patch
|
2013-07-29 15:16:45 +00:00
|
|
|
|
2023-07-11 04:50:52 +00:00
|
|
|
# Fix linking problems on bytecode-only architectures
|
|
|
|
Patch3: virt-top-1.1.1-ocaml-bytecode.patch
|
|
|
|
|
2021-11-03 20:27:58 +00:00
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: make
|
2008-10-21 09:29:56 +00:00
|
|
|
BuildRequires: ocaml >= 3.10.2
|
2008-05-20 08:35:08 +00:00
|
|
|
BuildRequires: ocaml-ocamldoc
|
|
|
|
BuildRequires: ocaml-findlib-devel
|
2009-10-05 15:26:50 +00:00
|
|
|
# Need the ncurses / ncursesw (--enable-widec) fix.
|
|
|
|
BuildRequires: ocaml-curses-devel >= 1.0.3-7
|
2008-05-20 08:35:08 +00:00
|
|
|
BuildRequires: ocaml-calendar-devel
|
2019-08-21 16:05:58 +00:00
|
|
|
BuildRequires: ocaml-libvirt-devel >= 0.6.1.5
|
2009-12-30 17:27:08 +00:00
|
|
|
BuildRequires: ocaml-gettext-devel >= 0.3.3
|
2008-05-20 08:35:08 +00:00
|
|
|
BuildRequires: ocaml-fileutils-devel
|
2009-10-05 15:36:15 +00:00
|
|
|
# For msgfmt:
|
|
|
|
BuildRequires: gettext
|
2008-05-20 08:35:08 +00:00
|
|
|
|
|
|
|
# Non-OCaml BRs.
|
|
|
|
BuildRequires: libvirt-devel
|
2021-11-03 20:27:58 +00:00
|
|
|
BuildRequires: libxml2-devel
|
2017-07-12 12:53:39 +00:00
|
|
|
BuildRequires: perl-interpreter
|
2012-01-15 19:11:13 +00:00
|
|
|
BuildRequires: perl(Pod::Perldoc)
|
2008-05-20 08:35:08 +00:00
|
|
|
BuildRequires: gawk
|
2022-10-18 13:09:32 +00:00
|
|
|
BuildRequires: gnupg2
|
2008-05-20 08:35:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
virt-top is a 'top(1)'-like utility for showing stats of virtualized
|
|
|
|
domains. Many keys and command line options are the same as for
|
|
|
|
ordinary 'top'.
|
|
|
|
|
|
|
|
It uses libvirt so it is capable of showing stats across a variety of
|
|
|
|
different virtualization systems.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2022-10-18 13:09:32 +00:00
|
|
|
%{gpgverify} --keyring='%{SOURCE4}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
2008-05-20 08:35:08 +00:00
|
|
|
%setup -q
|
2013-06-29 01:31:19 +00:00
|
|
|
|
2013-07-29 15:16:45 +00:00
|
|
|
%if 0%{?rhel} >= 6
|
2023-07-11 04:50:52 +00:00
|
|
|
%patch -P1 -p1
|
|
|
|
%endif
|
|
|
|
%patch -P2 -p1
|
|
|
|
%ifnarch %{ocaml_native_compiler}
|
|
|
|
%patch -P3 -p1
|
2013-07-29 15:16:45 +00:00
|
|
|
%endif
|
2023-07-11 04:50:52 +00:00
|
|
|
|
|
|
|
# "ocamlfind byte" has been removed as an alias
|
|
|
|
sed -i 's/\(OCAMLBEST=\)byte/\1ocamlc/' configure
|
2013-07-29 15:16:45 +00:00
|
|
|
|
2008-05-20 08:35:08 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
%configure
|
2021-10-01 15:49:16 +00:00
|
|
|
make
|
2008-05-20 08:35:08 +00:00
|
|
|
|
|
|
|
# Force rebuild of man page.
|
2021-10-01 15:49:16 +00:00
|
|
|
# There is a missing man_MANS rule, will fix upstream in next version.
|
2017-03-28 13:38:16 +00:00
|
|
|
rm -f src/virt-top.1
|
|
|
|
make -C src virt-top.1
|
2008-05-20 08:35:08 +00:00
|
|
|
|
2013-07-29 15:16:45 +00:00
|
|
|
%if 0%{?rhel} >= 6
|
|
|
|
# Build processcsv.py.1.
|
|
|
|
pod2man -c "Virtualization Support" --release "%{name}-%{version}" \
|
2022-10-18 13:09:32 +00:00
|
|
|
%{SOURCE3} > processcsv.py.1
|
2013-07-29 15:16:45 +00:00
|
|
|
%endif
|
|
|
|
|
2008-05-20 08:35:08 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
|
|
|
|
# Install translations.
|
|
|
|
%find_lang %{name}
|
|
|
|
|
2021-10-01 15:49:16 +00:00
|
|
|
# Install virt-top manpage by hand for now - see above.
|
2008-05-20 08:35:08 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
|
2017-03-28 13:38:16 +00:00
|
|
|
install -m 0644 src/virt-top.1 $RPM_BUILD_ROOT%{_mandir}/man1
|
2013-07-29 15:16:45 +00:00
|
|
|
|
|
|
|
%if 0%{?rhel} >= 6
|
|
|
|
# Install processcsv.py.
|
2022-10-18 13:09:32 +00:00
|
|
|
install -m 0755 %{SOURCE2} $RPM_BUILD_ROOT%{_bindir}
|
2013-07-29 15:16:45 +00:00
|
|
|
|
|
|
|
# Install processcsv.py(1).
|
|
|
|
install -m 0644 processcsv.py.1 $RPM_BUILD_ROOT%{_mandir}/man1/
|
|
|
|
%endif
|
|
|
|
|
2008-05-20 08:35:08 +00:00
|
|
|
|
|
|
|
%files -f %{name}.lang
|
2023-07-11 04:50:52 +00:00
|
|
|
%doc README TODO
|
|
|
|
%license COPYING
|
2008-05-20 08:35:08 +00:00
|
|
|
%{_bindir}/virt-top
|
|
|
|
%{_mandir}/man1/virt-top.1*
|
2013-07-29 15:16:45 +00:00
|
|
|
%if 0%{?rhel} >= 6
|
|
|
|
%{_bindir}/processcsv.py
|
|
|
|
%{_mandir}/man1/processcsv.py.1*
|
|
|
|
%endif
|
2008-05-20 08:35:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2023-10-05 15:34:42 +00:00
|
|
|
* Thu Oct 05 2023 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-14
|
|
|
|
- OCaml 5.1 rebuild for Fedora 40
|
|
|
|
|
2023-07-22 17:44:47 +00:00
|
|
|
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-13
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-07-11 23:40:01 +00:00
|
|
|
* Tue Jul 11 2023 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-12
|
|
|
|
- OCaml 5.0 rebuild for Fedora 39
|
|
|
|
|
2023-07-11 04:50:52 +00:00
|
|
|
* 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
|
|
|
|
|
2023-06-05 15:09:11 +00:00
|
|
|
* Mon Jun 05 2023 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-10
|
|
|
|
- Migrated to SPDX license
|
|
|
|
|
2023-01-24 18:07:58 +00:00
|
|
|
* Tue Jan 24 2023 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-9
|
|
|
|
- Rebuild OCaml packages for F38
|
|
|
|
|
2023-01-21 06:23:35 +00:00
|
|
|
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-11-28 11:33:10 +00:00
|
|
|
* Mon Nov 28 2022 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-7
|
|
|
|
- Fix "Input/output error" in journal (RHBZ#2148798)
|
|
|
|
|
2022-10-18 13:09:32 +00:00
|
|
|
* Tue Oct 18 2022 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-6
|
|
|
|
- Check tarball signature
|
|
|
|
|
2022-07-23 11:59:32 +00:00
|
|
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-06-19 10:51:51 +00:00
|
|
|
* Sun Jun 19 2022 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-4
|
|
|
|
- OCaml 4.14.0 rebuild
|
|
|
|
|
2022-02-04 16:49:37 +00:00
|
|
|
* Fri Feb 04 2022 Richard W.M. Jones <rjones@redhat.com> - 1.1.1-3
|
|
|
|
- OCaml 4.13.1 rebuild to remove package notes
|
|
|
|
|
2022-01-22 04:04:17 +00:00
|
|
|
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-11-03 20:27:58 +00:00
|
|
|
* 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
|
|
|
|
|
2021-10-05 10:02:05 +00:00
|
|
|
* Tue Oct 05 2021 Richard W.M. Jones <rjones@redhat.com> - 1.1.0-2
|
|
|
|
- OCaml 4.13.1 build
|
|
|
|
|
2021-10-01 15:49:16 +00:00
|
|
|
* 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.
|
|
|
|
|
2021-07-23 20:33:34 +00:00
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-21
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-05-07 12:35:05 +00:00
|
|
|
* 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
|
|
|
|
|
2021-03-08 12:22:04 +00:00
|
|
|
* Mon Mar 8 2021 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-19
|
|
|
|
- Bump and rebuild for ocaml-gettext update.
|
|
|
|
|
2021-03-02 10:06:38 +00:00
|
|
|
* Tue Mar 2 10:06:37 GMT 2021 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-18
|
|
|
|
- OCaml 4.12.0 build
|
|
|
|
|
2021-01-27 23:08:56 +00:00
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-17
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-09-01 20:50:47 +00:00
|
|
|
* Tue Sep 01 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-16
|
|
|
|
- OCaml 4.11.1 rebuild
|
|
|
|
|
2020-08-21 18:33:26 +00:00
|
|
|
* Fri Aug 21 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-15
|
|
|
|
- OCaml 4.11.0 rebuild
|
|
|
|
|
2020-07-29 13:47:18 +00:00
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-05-30 14:34:18 +00:00
|
|
|
* Sat May 30 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-13
|
|
|
|
- Rebuild for updated ocaml-extlib (RHBZ#1837823).
|
|
|
|
|
2020-05-05 18:42:49 +00:00
|
|
|
* Tue May 05 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-12
|
|
|
|
- OCaml 4.11.0+dev2-2020-04-22 rebuild
|
|
|
|
|
2020-05-05 11:04:37 +00:00
|
|
|
* Tue May 5 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-11
|
|
|
|
- Fix broken documentation patch (RHEL/ELN only).
|
|
|
|
|
2020-04-22 18:51:36 +00:00
|
|
|
* Wed Apr 22 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-10
|
|
|
|
- OCaml 4.11.0 pre-release attempt 2
|
|
|
|
|
2020-04-09 09:53:14 +00:00
|
|
|
* Thu Apr 09 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-9
|
2020-04-09 09:39:16 +00:00
|
|
|
- Port RHEL 8.3.0 gating test to Fedora.
|
|
|
|
|
2020-04-04 12:54:44 +00:00
|
|
|
* Sat Apr 04 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-7
|
|
|
|
- Update all OCaml dependencies for RPM 4.16.
|
|
|
|
|
2020-02-27 09:16:37 +00:00
|
|
|
* Thu Feb 27 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-6
|
|
|
|
- OCaml 4.10.0 final.
|
|
|
|
|
2020-01-31 03:15:14 +00:00
|
|
|
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-19 16:55:13 +00:00
|
|
|
* Sun Jan 19 2020 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-4
|
|
|
|
- OCaml 4.10.0+beta1 rebuild.
|
|
|
|
|
2019-12-06 16:11:23 +00:00
|
|
|
* Fri Dec 06 2019 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-3
|
|
|
|
- OCaml 4.09.0 (final) rebuild.
|
|
|
|
|
2019-08-21 16:05:58 +00:00
|
|
|
* Wed Aug 21 2019 Richard W.M. Jones <rjones@redhat.com> - 1.0.9-2
|
|
|
|
- Rebuild against ocaml-libvirt 0.6.1.5.
|
|
|
|
|
2019-08-20 13:30:43 +00:00
|
|
|
* 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.
|
|
|
|
|
2019-08-16 17:23:58 +00:00
|
|
|
* Fri Aug 16 2019 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-37
|
|
|
|
- OCaml 4.08.1 (final) rebuild.
|
|
|
|
|
2019-08-01 08:06:05 +00:00
|
|
|
* Thu Aug 01 2019 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-36
|
|
|
|
- OCaml 4.08.1 (rc2) rebuild.
|
|
|
|
|
2019-07-27 03:03:35 +00:00
|
|
|
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-35
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-02-03 11:20:56 +00:00
|
|
|
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-34
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-14 08:35:10 +00:00
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-33
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-11 19:26:38 +00:00
|
|
|
* Wed Jul 11 2018 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-32
|
|
|
|
- OCaml 4.07.0 (final) rebuild.
|
|
|
|
|
2018-06-20 21:07:11 +00:00
|
|
|
* Wed Jun 20 2018 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-31
|
|
|
|
- OCaml 4.07.0-rc1 rebuild.
|
|
|
|
|
2018-03-28 15:01:30 +00:00
|
|
|
* Wed Mar 28 2018 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-30
|
|
|
|
- Modify processcsv.py for Python 3.
|
|
|
|
|
2018-02-09 20:34:04 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-29
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-11-18 01:01:05 +00:00
|
|
|
* Sat Nov 18 2017 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-28
|
|
|
|
- OCaml 4.06.0 rebuild.
|
|
|
|
|
2017-08-09 10:23:39 +00:00
|
|
|
* Wed Aug 09 2017 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-27
|
|
|
|
- OCaml 4.05.0 rebuild.
|
|
|
|
|
2017-08-03 10:05:21 +00:00
|
|
|
* 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
|
|
|
|
|
2017-07-27 21:21:39 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-25
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-27 13:10:59 +00:00
|
|
|
* Tue Jun 27 2017 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-24
|
|
|
|
- OCaml 4.04.2 rebuild.
|
|
|
|
|
2017-05-13 12:35:12 +00:00
|
|
|
* Sat May 13 2017 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-23
|
|
|
|
- OCaml 4.04.1 rebuild.
|
|
|
|
|
2017-03-28 13:38:16 +00:00
|
|
|
* 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.
|
|
|
|
|
2017-02-11 17:07:23 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-21
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-11-09 16:08:41 +00:00
|
|
|
* Wed Nov 09 2016 Dan Horák <dan@danny.cz> - 1.0.8-20
|
|
|
|
- remove ExcludeArch
|
|
|
|
|
2016-11-05 14:58:02 +00:00
|
|
|
* Sat Nov 05 2016 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-19
|
|
|
|
- Rebuild for OCaml 4.04.0.
|
|
|
|
- Kill further instances of -warn-error.
|
|
|
|
|
2016-02-05 02:46:12 +00:00
|
|
|
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-18
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-07-28 23:39:24 +00:00
|
|
|
* Tue Jul 28 2015 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-17
|
|
|
|
- OCaml 4.02.3 rebuild.
|
|
|
|
|
2015-06-24 23:52:53 +00:00
|
|
|
* Wed Jun 24 2015 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-16
|
|
|
|
- ocaml-4.02.2 final rebuild.
|
|
|
|
|
2015-06-18 15:15:05 +00:00
|
|
|
* Thu Jun 18 2015 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-15
|
|
|
|
- ocaml-4.02.2 rebuild.
|
|
|
|
|
2015-02-17 17:19:38 +00:00
|
|
|
* Tue Feb 17 2015 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-14
|
|
|
|
- ocaml-4.02.1 rebuild.
|
|
|
|
|
2014-08-31 13:55:46 +00:00
|
|
|
* Sun Aug 31 2014 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-13
|
|
|
|
- ocaml-4.02.0 final rebuild.
|
|
|
|
|
2014-08-23 23:59:55 +00:00
|
|
|
* Sat Aug 23 2014 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-12
|
|
|
|
- ocaml-4.02.0+rc1 rebuild.
|
|
|
|
|
2014-08-18 07:58:07 +00:00
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.8-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-02 18:41:26 +00:00
|
|
|
* Sat Aug 02 2014 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-10
|
|
|
|
- ocaml-4.02.0-0.8.git10e45753.fc22 rebuild.
|
|
|
|
|
2014-08-02 16:34:10 +00:00
|
|
|
* Sat Aug 02 2014 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-9
|
|
|
|
- Do not warn about immutable strings.
|
|
|
|
|
2014-06-08 03:48:39 +00:00
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.8-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-08-05 08:00:43 +00:00
|
|
|
* Mon Aug 05 2013 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-7
|
|
|
|
- Bump and rebuild.
|
|
|
|
|
2013-07-29 15:16:45 +00:00
|
|
|
* Mon Jul 29 2013 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-6
|
|
|
|
- Include processcsv.py script and man page, but on RHEL only
|
|
|
|
(RHBZ#665817, RHBZ#912020)
|
|
|
|
- Clear executable stack flag on PPC, PPC64 (RHBZ#605124).
|
|
|
|
|
2013-06-29 01:31:19 +00:00
|
|
|
* Fri Jun 28 2013 Cole Robinson <crobinso@redhat.com> - 1.0.8-5
|
|
|
|
- Update configure for aarch64 (bz #926701)
|
|
|
|
|
2013-02-15 02:50:12 +00:00
|
|
|
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.8-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-12-14 12:46:51 +00:00
|
|
|
* Fri Dec 14 2012 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-3
|
|
|
|
- Rebuild for OCaml 4.00.1.
|
|
|
|
|
2012-10-12 21:42:57 +00:00
|
|
|
* Fri Oct 12 2012 Richard W.M. Jones <rjones@redhat.com> - 1.0.8-2
|
2012-10-12 12:55:00 +00:00
|
|
|
- New upstream version 1.0.8.
|
|
|
|
- Requires tiny change to ocaml-libvirt, hence dep bump.
|
|
|
|
- Clean up the spec file.
|
2012-10-12 21:42:57 +00:00
|
|
|
- Remove explicit BR ocaml-camomile (not used AFAIK).
|
2012-10-12 12:55:00 +00:00
|
|
|
|
2012-07-22 02:49:14 +00:00
|
|
|
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.7-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-03-23 13:01:36 +00:00
|
|
|
* Fri Mar 23 2012 Richard W.M. Jones <rjones@redhat.com> - 1.0.7-2
|
|
|
|
- Require fixed ocaml-libvirt.
|
|
|
|
|
2012-03-06 12:38:30 +00:00
|
|
|
* Tue Mar 6 2012 Richard W.M. Jones <rjones@redhat.com> - 1.0.7-1
|
|
|
|
- New upstream version 1.0.7.
|
|
|
|
- Includes true physical CPU reporting (when libvirt supports this).
|
|
|
|
|
2012-01-14 07:58:15 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-08-12 11:12:40 +00:00
|
|
|
* Fri Aug 12 2011 Richard W.M. Jones <rjones@redhat.com> - 1.0.6-1
|
|
|
|
- New upstream version 1.0.6.
|
|
|
|
|
2011-02-08 01:38:14 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-06 14:44:28 +00:00
|
|
|
* Thu Jan 6 2011 Richard W.M. Jones <rjones@redhat.com> - 1.0.5-1
|
|
|
|
- New upstream version 1.0.5.
|
|
|
|
- Rebuild against OCaml 3.12.0.
|
|
|
|
- Project website moved to people.redhat.com.
|
|
|
|
- Remove upstream patches.
|
|
|
|
|
2009-12-30 17:27:08 +00:00
|
|
|
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 1.0.4-3
|
|
|
|
- Force rebuild against latest ocaml-gettext 0.3.3 (RHBZ#508197#c10).
|
|
|
|
|
2009-10-05 15:36:15 +00:00
|
|
|
* Mon Oct 5 2009 Richard W.M. Jones <rjones@redhat.com> - 1.0.4-2
|
2009-10-05 15:26:50 +00:00
|
|
|
- New upstream release 1.0.4.
|
|
|
|
- Includes new translations (RHBZ#493799).
|
|
|
|
- Overall hardware memory is now displayed in CSV file (RHBZ#521785).
|
|
|
|
- Several fixes to Japanese support (RHBZ#508197).
|
|
|
|
- Japanese PO file also has bogus plural forms.
|
2009-10-05 15:36:15 +00:00
|
|
|
- Additional BR on gettext (for msgfmt).
|
2009-10-05 15:26:50 +00:00
|
|
|
|
2009-07-27 06:55:36 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.3-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-04-16 09:26:14 +00:00
|
|
|
* Thu Apr 16 2009 S390x secondary arch maintainer <fedora-s390x@lists.fedoraproject.org>
|
|
|
|
- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs
|
|
|
|
(added sparc64 per request from the sparc maintainer)
|
|
|
|
|
2009-02-26 00:35:02 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.3-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-05 14:47:05 +00:00
|
|
|
* Wed Nov 26 2008 Richard W.M. Jones <rjones@redhat.com> - 1.0.3-3
|
|
|
|
- Rebuild for OCaml 3.11.0+rc1.
|
|
|
|
|
2008-10-21 09:59:18 +00:00
|
|
|
* Tue Oct 21 2008 Richard W.M. Jones <rjones@redhat.com> - 1.0.3-2
|
|
|
|
- Fix incorrect sources file.
|
|
|
|
- Remove bogus Plural-Forms line from zh_CN PO file.
|
|
|
|
|
2008-10-21 09:29:56 +00:00
|
|
|
* Tue Oct 21 2008 Richard W.M. Jones <rjones@redhat.com> - 1.0.3-1
|
|
|
|
- New upstream version 1.0.3.
|
|
|
|
|
2008-05-20 08:35:08 +00:00
|
|
|
* Mon May 19 2008 Richard W.M. Jones <rjones@redhat.com> - 1.0.1-2
|
|
|
|
- Use RPM percent-configure.
|
|
|
|
- Add list of BRs for gettext.
|
|
|
|
- Use find_lang to find PO files.
|
|
|
|
- Comment out the OCaml dependency generator. Not a library so not
|
|
|
|
needed.
|
|
|
|
|
|
|
|
* Thu May 1 2008 Richard W.M. Jones <rjones@redhat.com> - 1.0.1-1
|
|
|
|
- New upstream release 1.0.1.
|
|
|
|
- Don't BR ocaml-gettext-devel, it's not used at the moment.
|
|
|
|
- Don't gzip the manpage, it happens automatically.
|
|
|
|
- Add BR libvirt-devel.
|
|
|
|
- Remove spurious executable bit on COPYING.
|
|
|
|
|
|
|
|
* Thu Apr 17 2008 Richard W.M. Jones <rjones@redhat.com> - 1.0.0-2
|
|
|
|
- New upstream release 1.0.0.
|
|
|
|
- Force rebuild of manpage.
|
|
|
|
|
2013-07-29 15:16:45 +00:00
|
|
|
* Tue Mar 18 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.1.1-1
|
2008-05-20 08:35:08 +00:00
|
|
|
- New upstream release 0.4.1.1.
|
|
|
|
- Move configure to build section.
|
|
|
|
- Pass RPM_OPT_FLAGS.
|
|
|
|
|
|
|
|
* Tue Mar 4 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.1.0-2
|
|
|
|
- Fix source URL.
|
|
|
|
- Install virt-df manpage.
|
|
|
|
|
|
|
|
* Tue Mar 4 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.1.0-1
|
|
|
|
- New upstream release 0.4.1.0.
|
|
|
|
- Upstream now requires ocaml-dbus >= 0.06, ocaml-lablgtk >= 2.10.0,
|
|
|
|
ocaml-dbus-devel.
|
|
|
|
- Enable virt-df.
|
|
|
|
|
|
|
|
* Sat Mar 1 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.0.3-3
|
|
|
|
- Rebuild for ppc64.
|
|
|
|
|
|
|
|
* Wed Feb 13 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.0.3-2
|
|
|
|
- Add BR gtk2-devel
|
|
|
|
|
|
|
|
* Tue Feb 12 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.0.3-1
|
|
|
|
- New upstream version 0.4.0.3.
|
|
|
|
- Rebuild for OCaml 3.10.1.
|
|
|
|
|
|
|
|
* Tue Nov 20 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.3.4-1
|
|
|
|
- New upstream release 0.3.3.4.
|
|
|
|
- Upstream website is now http://libvirt.org/ocaml/
|
|
|
|
|
|
|
|
* Fri Oct 19 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.3.0-2
|
|
|
|
- Mistake: BR is ocaml-calendar-devel.
|
|
|
|
|
|
|
|
* Fri Oct 19 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.3.0-1
|
|
|
|
- New upstream release 0.3.3.0.
|
|
|
|
- Added support for virt-df, but disabled it by default.
|
|
|
|
- +BR ocaml-calendar.
|
|
|
|
|
|
|
|
* Mon Sep 24 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.8-1
|
|
|
|
- New upstream release 0.3.2.8.
|
|
|
|
|
|
|
|
* Thu Sep 20 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.7-1
|
|
|
|
- New upstream release 0.3.2.7.
|
|
|
|
- Ship the upstream ChangeLog file.
|
|
|
|
|
|
|
|
* Thu Sep 6 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.6-2
|
|
|
|
- Force dependency on ocaml >= 3.10.0-7 which has fixed requires/provides
|
|
|
|
scripts.
|
|
|
|
|
|
|
|
* Thu Sep 6 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.6-1
|
|
|
|
- New upstream version 0.3.2.6.
|
|
|
|
|
|
|
|
* Wed Aug 29 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.5-1
|
|
|
|
- New upstream version 0.3.2.5.
|
|
|
|
- Keep TODO out of the main package, but add (renamed) TODO.libvirt and
|
|
|
|
TODO.virt-top to the devel and virt-top packages respectively.
|
|
|
|
- Add BR gawk.
|
|
|
|
|
|
|
|
* Thu Aug 23 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.4-1
|
|
|
|
- New upstream version 0.3.2.4.
|
|
|
|
|
|
|
|
* Thu Aug 23 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.3-2
|
|
|
|
- build_* macros so we can choose what subpackages to build.
|
|
|
|
|
|
|
|
* Thu Aug 23 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.3-1
|
|
|
|
- Upstream version 0.3.2.3.
|
|
|
|
- Add missing BR libvirt-devel.
|
|
|
|
|
|
|
|
* Wed Aug 22 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.2-1
|
|
|
|
- Upstream version 0.3.2.2.
|
|
|
|
|
|
|
|
* Wed Aug 22 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.1-2
|
|
|
|
- Fix unclosed if-statement in spec file.
|
|
|
|
|
|
|
|
* Wed Aug 22 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.1-1
|
|
|
|
- Upstream version 0.3.2.1.
|
|
|
|
- Put HTML documentation in -devel package.
|
|
|
|
|
|
|
|
* Mon Aug 6 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.1.2-1
|
|
|
|
- Initial RPM release.
|