2012-10-12 12:55:00 +00:00
|
|
|
%global opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
|
|
|
%global debug_package %{nil}
|
2008-05-20 08:35:08 +00:00
|
|
|
|
|
|
|
Name: virt-top
|
2012-10-12 12:55:00 +00:00
|
|
|
Version: 1.0.8
|
2015-07-28 23:39:24 +00:00
|
|
|
Release: 17%{?dist}
|
2008-05-20 08:35:08 +00:00
|
|
|
Summary: Utility like top(1) for displaying virtualization stats
|
|
|
|
|
|
|
|
License: GPLv2+
|
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
|
2013-06-29 01:31:19 +00:00
|
|
|
|
2014-08-02 16:34:10 +00:00
|
|
|
ExcludeArch: sparc64 s390 s390x
|
|
|
|
|
2013-07-29 15:16:45 +00:00
|
|
|
%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
|
|
|
|
%endif
|
|
|
|
|
2013-06-29 01:31:19 +00:00
|
|
|
# Update configure for aarch64 (bz #926701)
|
|
|
|
Patch1: virt-top-aarch64.patch
|
2014-08-02 16:34:10 +00:00
|
|
|
|
|
|
|
# Don't warn about immutable strings (OCaml 4.02).
|
|
|
|
Patch2: virt-top-no-immutable-warning.patch
|
2008-05-20 08:35:08 +00:00
|
|
|
|
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-extlib-devel
|
|
|
|
BuildRequires: ocaml-xml-light-devel
|
|
|
|
BuildRequires: ocaml-csv-devel
|
|
|
|
BuildRequires: ocaml-calendar-devel
|
2012-03-23 13:01:36 +00:00
|
|
|
# Need support for virDomainGetCPUStats (fixed in 0.6.1.2).
|
2012-10-12 12:55:00 +00:00
|
|
|
BuildRequires: ocaml-libvirt-devel >= 0.6.1.2-5
|
2008-05-20 08:35:08 +00:00
|
|
|
|
|
|
|
# Tortuous list of BRs for gettext.
|
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
|
|
|
|
BuildRequires: perl
|
2012-01-15 19:11:13 +00:00
|
|
|
BuildRequires: perl(Pod::Perldoc)
|
2008-05-20 08:35:08 +00:00
|
|
|
BuildRequires: gawk
|
|
|
|
|
2013-07-29 15:16:45 +00:00
|
|
|
%ifarch ppc ppc64
|
|
|
|
BuildRequires: /usr/bin/execstack
|
|
|
|
%endif
|
|
|
|
|
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
|
|
|
|
%setup -q
|
2013-06-29 01:31:19 +00:00
|
|
|
|
2013-07-29 15:16:45 +00:00
|
|
|
%if 0%{?rhel} >= 6
|
|
|
|
%patch0 -p1
|
|
|
|
%endif
|
|
|
|
|
2013-06-29 01:31:19 +00:00
|
|
|
# Update configure for aarch64 (bz #926701)
|
|
|
|
%patch1 -p1
|
2013-07-29 15:16:45 +00:00
|
|
|
|
2014-08-02 16:34:10 +00:00
|
|
|
%patch2 -p1
|
|
|
|
|
2008-05-20 08:35:08 +00:00
|
|
|
chmod -x COPYING
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%configure
|
|
|
|
make all
|
|
|
|
%if %opt
|
|
|
|
make opt
|
|
|
|
strip virt-top/virt-top.opt
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# Build translations.
|
|
|
|
make -C po
|
|
|
|
|
|
|
|
# Force rebuild of man page.
|
2012-01-15 19:11:13 +00:00
|
|
|
rm -f virt-top/virt-top.1
|
2008-05-20 08:35:08 +00:00
|
|
|
make -C virt-top virt-top.1
|
|
|
|
|
2013-07-29 15:16:45 +00:00
|
|
|
%if 0%{?rhel} >= 6
|
|
|
|
# Build processcsv.py.1.
|
|
|
|
pod2man -c "Virtualization Support" --release "%{name}-%{version}" \
|
|
|
|
%{SOURCE2} > processcsv.py.1
|
|
|
|
%endif
|
|
|
|
|
2008-05-20 08:35:08 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
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.
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
|
|
|
|
install -m 0644 virt-top/virt-top.1 $RPM_BUILD_ROOT%{_mandir}/man1
|
|
|
|
|
2013-07-29 15:16:45 +00:00
|
|
|
%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
|
|
|
|
|
|
|
|
%if 0%{?rhel} >= 6
|
|
|
|
# Install processcsv.py.
|
|
|
|
install -m 0755 %{SOURCE1} $RPM_BUILD_ROOT%{_bindir}
|
|
|
|
|
|
|
|
# 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
|
2011-01-06 14:44:28 +00:00
|
|
|
%doc COPYING README TODO ChangeLog
|
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
|
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.
|