Hello community, here is the log from the commit of package virt-v2v for openSUSE:Factory checked in at 2014-03-21 14:07:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/virt-v2v (Old) and /work/SRC/openSUSE:Factory/.virt-v2v.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "virt-v2v" Changes: -------- --- /work/SRC/openSUSE:Factory/virt-v2v/virt-v2v.changes 2014-01-30 11:38:29.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.virt-v2v.new/virt-v2v.changes 2014-03-21 14:07:07.000000000 +0100 @@ -1,0 +2,12 @@ +Wed Mar 19 14:29:15 UTC 2014 - [email protected] + +- Set 'ExclusiveArch: x86_64' to avoid build failures on architectures where + libguestfs isn't available + +------------------------------------------------------------------- +Thu Feb 27 16:48:34 UTC 2014 - [email protected] + +- Suppress deprecated and experimental perl module warnings (bnc#866060) + *suppress_warnings.patch + +------------------------------------------------------------------- New: ---- suppress_warnings.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ virt-v2v.spec ++++++ --- /var/tmp/diff_new_pack.wsDcu0/_old 2014-03-21 14:07:08.000000000 +0100 +++ /var/tmp/diff_new_pack.wsDcu0/_new 2014-03-21 14:07:08.000000000 +0100 @@ -32,6 +32,7 @@ Patch3: win_convert_on_suse.patch Patch4: fix_manifest.patch Patch5: remove_rhev_help.patch +Patch6: suppress_warnings.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build # Backported upstream patches @@ -41,6 +42,11 @@ # local seq no: the order the patches should be applied in # git commit: the first 8 characters of the git commit hash +# 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: x86_64 + # Build system direct requirements BuildRequires: gettext BuildRequires: perl @@ -128,6 +134,7 @@ %patch3 -p1 %patch4 -p1 %patch5 -p1 +%patch6 -p1 %build %{__perl} Build.PL ++++++ suppress_warnings.patch ++++++ Index: virt-v2v-0.9.1/lib/Sys/VirtConvert/Converter.pm =================================================================== --- virt-v2v-0.9.1.orig/lib/Sys/VirtConvert/Converter.pm +++ virt-v2v-0.9.1/lib/Sys/VirtConvert/Converter.pm @@ -19,6 +19,7 @@ package Sys::VirtConvert::Converter; use strict; use warnings; +no warnings 'deprecated'; use Carp; Index: virt-v2v-0.9.1/lib/Sys/VirtConvert/Connection/VMwareOVASource.pm =================================================================== --- virt-v2v-0.9.1.orig/lib/Sys/VirtConvert/Connection/VMwareOVASource.pm +++ virt-v2v-0.9.1/lib/Sys/VirtConvert/Connection/VMwareOVASource.pm @@ -19,6 +19,7 @@ package Sys::VirtConvert::Connection::VM use strict; use warnings; +no warnings 'deprecated'; use File::Basename; use File::Temp qw(tempdir); Index: virt-v2v-0.9.1/lib/Sys/VirtConvert/Connection/LibVirtTarget.pm =================================================================== --- virt-v2v-0.9.1.orig/lib/Sys/VirtConvert/Connection/LibVirtTarget.pm +++ virt-v2v-0.9.1/lib/Sys/VirtConvert/Connection/LibVirtTarget.pm @@ -17,6 +17,7 @@ use strict; use warnings; +no if $] >= 5.017011, warnings => 'experimental::smartmatch'; package Sys::VirtConvert::Connection::LibVirtTarget; -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
