Blame SPECS/virt-top.spec

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