Version 1.0.72.

This commit is contained in:
Richard W.M. Jones 2009-09-23 13:39:05 +00:00
parent 43978d1fc7
commit 21de956bef
3 changed files with 57 additions and 54 deletions

View File

@ -1 +1 @@
libguestfs-1.0.71.tar.gz libguestfs-1.0.72.tar.gz

View File

@ -4,8 +4,8 @@
Summary: Access and modify virtual machine disk images Summary: Access and modify virtual machine disk images
Name: libguestfs Name: libguestfs
Epoch: 1 Epoch: 1
Version: 1.0.71 Version: 1.0.72
Release: 2%{?dist} Release: 1%{?dist}
License: LGPLv2+ License: LGPLv2+
Group: Development/Libraries Group: Development/Libraries
URL: http://libguestfs.org/ URL: http://libguestfs.org/
@ -64,7 +64,7 @@ BuildRequires: java >= 1.5.0
BuildRequires: jpackage-utils BuildRequires: jpackage-utils
BuildRequires: java-devel BuildRequires: java-devel
# For virt-inspector: # For libguestfs-tools:
BuildRequires: perl-Sys-Virt BuildRequires: perl-Sys-Virt
# Runtime requires: # Runtime requires:
@ -139,54 +139,55 @@ modifying virtual machine disk images from the command line and shell
scripts. scripts.
%package -n virt-inspector %package tools
Summary: Display OS version, kernel, drivers, etc in a virtual machine Summary: System administration tools for virtual machines
Group: Development/Tools Group: Development/Tools
License: GPLv2+ License: GPLv2+
Requires: %{name} = %{epoch}:%{version}-%{release} Requires: %{name} = %{epoch}:%{version}-%{release}
Requires: guestfish Requires: guestfish
Requires: perl-Sys-Virt Requires: perl-Sys-Virt
# Obsolete and replace earlier packages.
Provides: virt-cat = %{epoch}:%{version}-%{release}
Obsoletes: virt-cat <= %{epoch}:%{version}-%{release}
Provides: virt-df = %{epoch}:%{version}-%{release}
Obsoletes: virt-df <= %{epoch}:%{version}-%{release}
Provides: virt-inspector = %{epoch}:%{version}-%{release}
Obsoletes: virt-inspector <= %{epoch}:%{version}-%{release}
# RHBZ#514309
Provides: virt-df2 = %{epoch}:%{version}-%{release}
Obsoletes: virt-df2 <= %{epoch}:%{version}-%{release}
# These were never packages:
Provides: virt-edit = %{epoch}:%{version}-%{release}
Provides: virt-rescue = %{epoch}:%{version}-%{release}
%description tools
This package contains miscellaneous system administrator command line
tools for virtual machines.
Virt-cat is a command line tool to display the contents of a file in a
virtual machine.
Virt-df is a command line tool to display free space on virtual
machine filesystems. Unlike other tools, it doesnt just display the
amount of space allocated to a virtual machine, but can look inside
the virtual machine to see how much space is really being used. It is
like the df(1) command, but for virtual machines, except that it also
works for Windows virtual machines.
Virt-edit is a command line tool to edit the contents of a file in a
virtual machine.
%description -n virt-inspector
Virt-inspector examines a virtual machine and tries to determine the Virt-inspector examines a virtual machine and tries to determine the
version of the OS, the kernel version, what drivers are installed, version of the OS, the kernel version, what drivers are installed,
whether the virtual machine is fully virtualized (FV) or whether the virtual machine is fully virtualized (FV) or
para-virtualized (PV), what applications are installed and more. para-virtualized (PV), what applications are installed and more.
Virt-rescue provides a rescue shell for making interactive,
%package -n virt-df unstructured fixes to virtual machines.
Summary: Display free space on virtual filesystems
Group: Development/Tools
License: GPLv2+
Requires: %{name} = %{epoch}:%{version}-%{release}
Requires: perl-Sys-Virt
# RHBZ#514309
Provides: virt-df2 = %{epoch}:%{version}-%{release}
Obsoletes: virt-df2 <= %{epoch}:%{version}-%{release}
%description -n virt-df
"virt-df" is a command line tool to display free space on virtual
machine filesystems. Unlike other tools, it doesnt just display the
amount of space allocated to a virtual machine, but can look inside
the virtual machine to see how much space is really being used.
It is like the df(1) command, but for virtual machines, except that it
also works for Windows virtual machines.
%package -n virt-cat
Summary: Display a file in a virtual machine
Group: Development/Tools
License: GPLv2+
Requires: %{name} = %{epoch}:%{version}-%{release}
Requires: perl-Sys-Virt
%description -n virt-cat
"virt-cat" is a command line tool to display the contents
of a file in a virtual machine.
%package -n ocaml-%{name} %package -n ocaml-%{name}
@ -456,22 +457,18 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man1/guestfish.1* %{_mandir}/man1/guestfish.1*
%files -n virt-inspector %files tools
%defattr(-,root,root,-)
%{_bindir}/virt-inspector
%{_mandir}/man1/virt-inspector.1*
%files -n virt-df
%defattr(-,root,root,-)
%{_bindir}/virt-df
%{_mandir}/man1/virt-df.1*
%files -n virt-cat
%defattr(-,root,root,-) %defattr(-,root,root,-)
%{_bindir}/virt-cat %{_bindir}/virt-cat
%{_mandir}/man1/virt-cat.1* %{_mandir}/man1/virt-cat.1*
%{_bindir}/virt-df
%{_mandir}/man1/virt-df.1*
%{_bindir}/virt-edit
%{_mandir}/man1/virt-edit.1*
%{_bindir}/virt-inspector
%{_mandir}/man1/virt-inspector.1*
%{_bindir}/virt-rescue
%{_mandir}/man1/virt-rescue.1*
%files -n ocaml-%{name} %files -n ocaml-%{name}
@ -539,6 +536,12 @@ rm -rf $RPM_BUILD_ROOT
%changelog %changelog
* Wed Sep 23 2009 Richard W.M. Jones <rjones@redhat.com> - 1.0.72-1
- New upstream release 1.0.72.
- New tools: virt-edit, virt-rescue.
- Combine virt-cat, virt-df, virt-edit, virt-inspector and virt-rescue
into a single package called libguestfs-tools.
* Tue Sep 22 2009 Richard W.M. Jones <rjones@redhat.com> - 1.0.71-2 * Tue Sep 22 2009 Richard W.M. Jones <rjones@redhat.com> - 1.0.71-2
- New upstream release 1.0.71. - New upstream release 1.0.71.

View File

@ -1 +1 @@
24bf32735f1a259b14b692cf78ae5d74 libguestfs-1.0.71.tar.gz d6c66e405e34c256c05860cb25801a0d libguestfs-1.0.72.tar.gz