From fe2efa3ebc7da2111f55ee02043a5ad50e544877 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jason=20=E3=83=86=E3=82=A3=E3=83=93=E3=83=84?= Date: Fri, 11 Sep 2009 20:19:41 +0000 Subject: [PATCH 1/6] Initialize branch EL-5 for virt-v2v --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..42f697a --- /dev/null +++ b/branch @@ -0,0 +1 @@ +EL-5 From b367dd2ce806a454ed8c5519e8284bedd294670d Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:14:40 +0000 Subject: [PATCH 2/6] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 37decde..7e62c25 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := virt-v2v SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 486f62fd3246d91565dbe85f6c6e4592706f439e Mon Sep 17 00:00:00 2001 From: Matthew Booth Date: Tue, 9 Mar 2010 11:20:27 +0000 Subject: [PATCH 3/6] Update to 0.4.0 --- .cvsignore | 4 ++ sources | 4 ++ virt-v2v.spec | 169 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 177 insertions(+) create mode 100644 virt-v2v.spec diff --git a/.cvsignore b/.cvsignore index e69de29..97894b4 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1,4 @@ +virt-v2v-0.4.0.tar.gz +virt-v2v-0.4.0-exechelper-cleanup.patch +virt-v2v-0.4.0-exechelper-tmpfile.patch +virt-v2v-0.4.0-remove-fr.patch diff --git a/sources b/sources index e69de29..8ec1a4f 100644 --- a/sources +++ b/sources @@ -0,0 +1,4 @@ +902efe037084773d48c3e4f0df29aff4 virt-v2v-0.4.0.tar.gz +c7c9eb9f61c7a08388dbaf841689c8d0 virt-v2v-0.4.0-exechelper-cleanup.patch +8568d371a2b35468ac93772c3495cf86 virt-v2v-0.4.0-exechelper-tmpfile.patch +c6be0b669a9e75a7401bcb28cab242b0 virt-v2v-0.4.0-remove-fr.patch diff --git a/virt-v2v.spec b/virt-v2v.spec new file mode 100644 index 0000000..c5803ae --- /dev/null +++ b/virt-v2v.spec @@ -0,0 +1,169 @@ +Name: virt-v2v +Version: 0.4.0 +Release: 1%{?dist} +Summary: Convert a virtual machine to run on KVM + +Group: Applications/System +License: GPLv2+ and LGPLv2+ +URL: http://people.redhat.com/mbooth/virt-v2v/ +Source0: http://people.redhat.com/mbooth/virt-v2v/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch + +# Build system direct requirements +BuildRequires: gettext +BuildRequires: perl +BuildRequires: perl(Module::Build) +BuildRequires: perl(ExtUtils::Manifest) +BuildRequires: perl(Test::More) +BuildRequires: perl(Test::Pod) +BuildRequires: perl(Test::Pod::Coverage) +BuildRequires: perl(Module::Find) + +# Runtime perl modules also required at build time for use_ok test +BuildRequires: perl(Locale::TextDomain) +BuildRequires: perl(LWP::UserAgent) +BuildRequires: perl(Module::Pluggable) +BuildRequires: perl(Net::HTTPS) +BuildRequires: perl(Net::SSL) +BuildRequires: perl(Sys::Guestfs) +BuildRequires: perl(Sys::Guestfs::Lib) +BuildRequires: perl(Sys::Virt) +BuildRequires: perl(URI) +BuildRequires: perl(XML::DOM) +BuildRequires: perl(XML::DOM::XPath) +BuildRequires: perl(XML::Writer) + +# Need an explicit package dependency for version requires +BuildRequires: perl-libguestfs >= 1:1.0.84 + +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) + +# Perl module requirements +Requires: perl(Locale::TextDomain) +Requires: perl(LWP::UserAgent) +Requires: perl(Module::Pluggable) +Requires: perl(Net::HTTPS) +Requires: perl(Net::SSL) +Requires: perl(Sys::Guestfs) +Requires: perl(Sys::Guestfs::Lib) +Requires: perl(Sys::Virt) +Requires: perl(URI) +Requires: perl(XML::DOM) +Requires: perl(XML::DOM::XPath) +Requires: perl(XML::Writer) + +# Need an explicit package dependency for version requires +Requires: perl-libguestfs >= 1:1.0.68 + +# For GuestOS transfer image +Requires: /usr/bin/mkisofs + +# For v2v-snapshot +Requires: /usr/bin/qemu-img + +# The upstream French translation is broken, which breaks building in EL-5 +# This is a upstream commit 6a23d34232d673334055440cdc3cd7de4194eb04 +Patch0: virt-v2v-0.4.0-remove-fr.patch + +# The output of File::Temp->new cannot be passed to open3() on EL-5. +# exechelper-tmpfile fixes this. exechelper-cleanup is a dependency of the fix. +# These are upstream commits: +# bcb0c5e05e7b51b2f31780cc5a663bf4359de95c +Patch1: virt-v2v-0.4.0-exechelper-cleanup.patch +# 0ea3bd7cdd15f221a31f4c225b96e9fe9377897f +Patch2: virt-v2v-0.4.0-exechelper-tmpfile.patch + +%description +virt-v2v is a tool for converting virtual machines to use the KVM hypervisor. +It modifies both the virtual machine image and its associated libvirt metadata. +virt-v2v will also configure a guest to use VirtIO drivers if possible. + +virt-v2v also includes the v2v-snapshot tool, which will modify a guest to use +snapshot storage, and later commit the snapshot back to the original storage if +desired. + + +%prep +%setup -q +%patch0 -p1 +%patch1 -p1 +%patch2 -p1 + + +%build +%{__perl} Build.PL +./Build + + +%install +rm -rf $RPM_BUILD_ROOT +./Build install \ + --destdir $RPM_BUILD_ROOT \ + --installdirs vendor \ + --install_path locale=%{_datadir}/locale \ + --install_path confdoc=%{_mandir}/man5 + +%find_lang %{name} + +# Create v2v-snapshot directories +mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/virt-v2v/{snapshots,xml} + +%check +./Build test + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files -f %{name}.lang +%defattr(-,root,root,-) + +%doc TODO +%doc META.yml +%doc ChangeLog +%doc COPYING COPYING.LIB +%doc v2v/virt-v2v.conf + +# For noarch packages: vendorlib +%{perl_vendorlib}/* + +# Man pages +%{_mandir}/man1/*.1* +%{_mandir}/man3/*.3* +%{_mandir}/man5/*.5* + +# Executables +%attr(0755,root,root) %{_bindir}/* + +%{_localstatedir}/lib/virt-v2v + + +%changelog +* Mon Feb 22 2010 Matthew Booth - 0.4.0-1 +- Update to release 0.4.0 +- Change dependency on genisofs to mkisofs +- Update libguestfs dependency to 1.0.84 +- Add perl module dependencies: LWP::UserAgent, Net::HTTPS, Net::SSL, Net::URI +- Remove perl module dependency: Config::Tiny +- Add explicit build dependency on perl +- Add patch: virt-v2v-0.4.0-remove-fr.patch +- Add patch: virt-v2v-0.4.0-exechelper-cleanup.patch +- Add patch: virt-v2v-0.4.0-exechelper-tmpfile.patch + +* Mon Dec 7 2009 Stepan Kasal - 0.3.2-2 +- rebuild against perl 5.10.1 + +* Mon Nov 9 2009 Matthew Booth - 0.3.2-1 +- Update to release 0.3.2 +- Add BuildRequires gettext + +* Mon Nov 9 2009 Matthew Booth - 0.3.0-1 +- Update to release 0.3.0 + +* Tue Sep 15 2009 Matthew Booth - 0.2.0-1 +- Update to release 0.2.0 + +* Tue Sep 4 2009 Matthew Booth - 0.1.0-1 +- Initial specfile From ac36c77664514c1a1100a731e76bb6621a1a5772 Mon Sep 17 00:00:00 2001 From: Matthew Booth Date: Wed, 14 Apr 2010 17:00:35 +0000 Subject: [PATCH 4/6] Update to release 0.4.10 --- .cvsignore | 7 +++---- sources | 7 +++---- virt-v2v.spec | 58 ++++++++++++++++++++++++++------------------------- 3 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.cvsignore b/.cvsignore index 97894b4..32160af 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1,4 +1,3 @@ -virt-v2v-0.4.0.tar.gz -virt-v2v-0.4.0-exechelper-cleanup.patch -virt-v2v-0.4.0-exechelper-tmpfile.patch -virt-v2v-0.4.0-remove-fr.patch +0001-RHEL5-Hardcode-the-location-of-qemu-kvm.patch +0002-RHEL5-Ignore-ERR_INVALID_STORAGE_POOL-when-checking-.patch +virt-v2v-0.4.10.tar.gz diff --git a/sources b/sources index 8ec1a4f..cb21b4a 100644 --- a/sources +++ b/sources @@ -1,4 +1,3 @@ -902efe037084773d48c3e4f0df29aff4 virt-v2v-0.4.0.tar.gz -c7c9eb9f61c7a08388dbaf841689c8d0 virt-v2v-0.4.0-exechelper-cleanup.patch -8568d371a2b35468ac93772c3495cf86 virt-v2v-0.4.0-exechelper-tmpfile.patch -c6be0b669a9e75a7401bcb28cab242b0 virt-v2v-0.4.0-remove-fr.patch +77b4e9b03664ab2ddc0ca7a517ff1832 0001-RHEL5-Hardcode-the-location-of-qemu-kvm.patch +cf13c68bf2033f50b4c84cc98d20832f 0002-RHEL5-Ignore-ERR_INVALID_STORAGE_POOL-when-checking-.patch +cec7e1579f2edf8a3cc4f99e9ef4b3fb virt-v2v-0.4.10.tar.gz diff --git a/virt-v2v.spec b/virt-v2v.spec index c5803ae..53bc391 100644 --- a/virt-v2v.spec +++ b/virt-v2v.spec @@ -1,14 +1,21 @@ Name: virt-v2v -Version: 0.4.0 +Version: 0.4.10 Release: 1%{?dist} Summary: Convert a virtual machine to run on KVM Group: Applications/System License: GPLv2+ and LGPLv2+ -URL: http://people.redhat.com/mbooth/virt-v2v/ -Source0: http://people.redhat.com/mbooth/virt-v2v/%{name}-%{version}.tar.gz +URL: http://git.fedoraproject.org/git/virt-v2v.git +Source0: https://fedorahosted.org/releases/v/i/virt-v2v/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildArch: noarch + +# Unfortunately, despite really being noarch, we have to make virt-v2v arch +# dependent to avoid build failures on architectures where libguestfs isn't +# available. +ExclusiveArch: %{ix86} x86_64 + +Patch0: 0001-RHEL5-Hardcode-the-location-of-qemu-kvm.patch +Patch1: 0002-RHEL5-Ignore-ERR_INVALID_STORAGE_POOL-when-checking-.patch # Build system direct requirements BuildRequires: gettext @@ -54,42 +61,22 @@ Requires: perl(XML::DOM::XPath) Requires: perl(XML::Writer) # Need an explicit package dependency for version requires -Requires: perl-libguestfs >= 1:1.0.68 +Requires: perl-libguestfs >= 1:1.0.84 # For GuestOS transfer image Requires: /usr/bin/mkisofs -# For v2v-snapshot -Requires: /usr/bin/qemu-img - -# The upstream French translation is broken, which breaks building in EL-5 -# This is a upstream commit 6a23d34232d673334055440cdc3cd7de4194eb04 -Patch0: virt-v2v-0.4.0-remove-fr.patch - -# The output of File::Temp->new cannot be passed to open3() on EL-5. -# exechelper-tmpfile fixes this. exechelper-cleanup is a dependency of the fix. -# These are upstream commits: -# bcb0c5e05e7b51b2f31780cc5a663bf4359de95c -Patch1: virt-v2v-0.4.0-exechelper-cleanup.patch -# 0ea3bd7cdd15f221a31f4c225b96e9fe9377897f -Patch2: virt-v2v-0.4.0-exechelper-tmpfile.patch - %description virt-v2v is a tool for converting virtual machines to use the KVM hypervisor. It modifies both the virtual machine image and its associated libvirt metadata. virt-v2v will also configure a guest to use VirtIO drivers if possible. -virt-v2v also includes the v2v-snapshot tool, which will modify a guest to use -snapshot storage, and later commit the snapshot back to the original storage if -desired. - %prep %setup -q + %patch0 -p1 %patch1 -p1 -%patch2 -p1 - %build %{__perl} Build.PL @@ -106,8 +93,9 @@ rm -rf $RPM_BUILD_ROOT %find_lang %{name} -# Create v2v-snapshot directories -mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/virt-v2v/{snapshots,xml} +# Create lib directory, used for holding software to be installed in guests +mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/virt-v2v + %check ./Build test @@ -141,6 +129,20 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Apr 14 2010 Matthew Booth - 0.4.10-1 +- Update to release 0.4.10 +- Update libguestfs version dependency to 1:1.0.84 +- Add patch to hardcode the location of qemu-kvm on RHEL 5 +- Add patch to ignore a buggy error return code in RHEL 5 libvirt +- Make virt-v2v arch dependent to follow libguestfs + +* Thu Apr 1 2010 Matthew Booth - 0.4.9-1 +- Update to release 0.4.9 +- Remove all patches +- Update description to reflect removal of v2v-snapshot +- Remove qemu-img dependency for v2v-snapshot +- Don't create snapshot and xml dirs in local state directory + * Mon Feb 22 2010 Matthew Booth - 0.4.0-1 - Update to release 0.4.0 - Change dependency on genisofs to mkisofs From 0907416cb83f208f3cc1c75d55f32db580ed03f6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:05:26 +0000 Subject: [PATCH 5/6] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 7e62c25..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: virt-v2v -# $Id$ -NAME := virt-v2v -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 42f697a..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -EL-5 From 155048792d0df323ddc94587d469986b6925cd90 Mon Sep 17 00:00:00 2001 From: Matthew Booth Date: Fri, 14 Dec 2012 14:03:18 +0000 Subject: [PATCH 6/6] Included in RHEL --- .gitignore | 3 - dead.package | 1 + sources | 3 - virt-v2v.spec | 171 -------------------------------------------------- 4 files changed, 1 insertion(+), 177 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 sources delete mode 100644 virt-v2v.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 32160af..0000000 --- a/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -0001-RHEL5-Hardcode-the-location-of-qemu-kvm.patch -0002-RHEL5-Ignore-ERR_INVALID_STORAGE_POOL-when-checking-.patch -virt-v2v-0.4.10.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..ca61301 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Included in RHEL diff --git a/sources b/sources deleted file mode 100644 index cb21b4a..0000000 --- a/sources +++ /dev/null @@ -1,3 +0,0 @@ -77b4e9b03664ab2ddc0ca7a517ff1832 0001-RHEL5-Hardcode-the-location-of-qemu-kvm.patch -cf13c68bf2033f50b4c84cc98d20832f 0002-RHEL5-Ignore-ERR_INVALID_STORAGE_POOL-when-checking-.patch -cec7e1579f2edf8a3cc4f99e9ef4b3fb virt-v2v-0.4.10.tar.gz diff --git a/virt-v2v.spec b/virt-v2v.spec deleted file mode 100644 index 53bc391..0000000 --- a/virt-v2v.spec +++ /dev/null @@ -1,171 +0,0 @@ -Name: virt-v2v -Version: 0.4.10 -Release: 1%{?dist} -Summary: Convert a virtual machine to run on KVM - -Group: Applications/System -License: GPLv2+ and LGPLv2+ -URL: http://git.fedoraproject.org/git/virt-v2v.git -Source0: https://fedorahosted.org/releases/v/i/virt-v2v/%{name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -# Unfortunately, despite really being noarch, we have to make virt-v2v arch -# dependent to avoid build failures on architectures where libguestfs isn't -# available. -ExclusiveArch: %{ix86} x86_64 - -Patch0: 0001-RHEL5-Hardcode-the-location-of-qemu-kvm.patch -Patch1: 0002-RHEL5-Ignore-ERR_INVALID_STORAGE_POOL-when-checking-.patch - -# Build system direct requirements -BuildRequires: gettext -BuildRequires: perl -BuildRequires: perl(Module::Build) -BuildRequires: perl(ExtUtils::Manifest) -BuildRequires: perl(Test::More) -BuildRequires: perl(Test::Pod) -BuildRequires: perl(Test::Pod::Coverage) -BuildRequires: perl(Module::Find) - -# Runtime perl modules also required at build time for use_ok test -BuildRequires: perl(Locale::TextDomain) -BuildRequires: perl(LWP::UserAgent) -BuildRequires: perl(Module::Pluggable) -BuildRequires: perl(Net::HTTPS) -BuildRequires: perl(Net::SSL) -BuildRequires: perl(Sys::Guestfs) -BuildRequires: perl(Sys::Guestfs::Lib) -BuildRequires: perl(Sys::Virt) -BuildRequires: perl(URI) -BuildRequires: perl(XML::DOM) -BuildRequires: perl(XML::DOM::XPath) -BuildRequires: perl(XML::Writer) - -# Need an explicit package dependency for version requires -BuildRequires: perl-libguestfs >= 1:1.0.84 - -Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) - -# Perl module requirements -Requires: perl(Locale::TextDomain) -Requires: perl(LWP::UserAgent) -Requires: perl(Module::Pluggable) -Requires: perl(Net::HTTPS) -Requires: perl(Net::SSL) -Requires: perl(Sys::Guestfs) -Requires: perl(Sys::Guestfs::Lib) -Requires: perl(Sys::Virt) -Requires: perl(URI) -Requires: perl(XML::DOM) -Requires: perl(XML::DOM::XPath) -Requires: perl(XML::Writer) - -# Need an explicit package dependency for version requires -Requires: perl-libguestfs >= 1:1.0.84 - -# For GuestOS transfer image -Requires: /usr/bin/mkisofs - -%description -virt-v2v is a tool for converting virtual machines to use the KVM hypervisor. -It modifies both the virtual machine image and its associated libvirt metadata. -virt-v2v will also configure a guest to use VirtIO drivers if possible. - - -%prep -%setup -q - -%patch0 -p1 -%patch1 -p1 - -%build -%{__perl} Build.PL -./Build - - -%install -rm -rf $RPM_BUILD_ROOT -./Build install \ - --destdir $RPM_BUILD_ROOT \ - --installdirs vendor \ - --install_path locale=%{_datadir}/locale \ - --install_path confdoc=%{_mandir}/man5 - -%find_lang %{name} - -# Create lib directory, used for holding software to be installed in guests -mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/virt-v2v - - -%check -./Build test - - -%clean -rm -rf $RPM_BUILD_ROOT - - -%files -f %{name}.lang -%defattr(-,root,root,-) - -%doc TODO -%doc META.yml -%doc ChangeLog -%doc COPYING COPYING.LIB -%doc v2v/virt-v2v.conf - -# For noarch packages: vendorlib -%{perl_vendorlib}/* - -# Man pages -%{_mandir}/man1/*.1* -%{_mandir}/man3/*.3* -%{_mandir}/man5/*.5* - -# Executables -%attr(0755,root,root) %{_bindir}/* - -%{_localstatedir}/lib/virt-v2v - - -%changelog -* Wed Apr 14 2010 Matthew Booth - 0.4.10-1 -- Update to release 0.4.10 -- Update libguestfs version dependency to 1:1.0.84 -- Add patch to hardcode the location of qemu-kvm on RHEL 5 -- Add patch to ignore a buggy error return code in RHEL 5 libvirt -- Make virt-v2v arch dependent to follow libguestfs - -* Thu Apr 1 2010 Matthew Booth - 0.4.9-1 -- Update to release 0.4.9 -- Remove all patches -- Update description to reflect removal of v2v-snapshot -- Remove qemu-img dependency for v2v-snapshot -- Don't create snapshot and xml dirs in local state directory - -* Mon Feb 22 2010 Matthew Booth - 0.4.0-1 -- Update to release 0.4.0 -- Change dependency on genisofs to mkisofs -- Update libguestfs dependency to 1.0.84 -- Add perl module dependencies: LWP::UserAgent, Net::HTTPS, Net::SSL, Net::URI -- Remove perl module dependency: Config::Tiny -- Add explicit build dependency on perl -- Add patch: virt-v2v-0.4.0-remove-fr.patch -- Add patch: virt-v2v-0.4.0-exechelper-cleanup.patch -- Add patch: virt-v2v-0.4.0-exechelper-tmpfile.patch - -* Mon Dec 7 2009 Stepan Kasal - 0.3.2-2 -- rebuild against perl 5.10.1 - -* Mon Nov 9 2009 Matthew Booth - 0.3.2-1 -- Update to release 0.3.2 -- Add BuildRequires gettext - -* Mon Nov 9 2009 Matthew Booth - 0.3.0-1 -- Update to release 0.3.0 - -* Tue Sep 15 2009 Matthew Booth - 0.2.0-1 -- Update to release 0.2.0 - -* Tue Sep 4 2009 Matthew Booth - 0.1.0-1 -- Initial specfile