https://bugzilla.novell.com/show_bug.cgi?id=888461 https://bugzilla.novell.com/show_bug.cgi?id=888461#c1 --- Comment #1 from Mike Latimer <mlatimer@suse.com> 2014-07-22 21:36:35 UTC --- After some debugging, the following error is being seen from Module::Build::Base Could not get valid metadata. Error is: Invalid metadata structure. Errors: Expected a list structure (resources -> license) [Validation: 2] at /usr/lib/perl5/5.20.0/Module/Build/Base.pm line 4561. This error is due to commit a210f190 and 333e5c94 in CPAN::Meta. These changes are described in the changelog as follows: - META validation used to allow a scalar value when a list (i.e. array reference) was required for a field. This has been tightened and validation will now fail if a scalar value is given. Conversion will continue to turn scalars into an array reference as it previously did. This newer version of CPAN::Meta is included in perl-5.20. To resolve the problem, the following patch is required: Index: virt-v2v-0.9.1/Build.PL =================================================================== --- virt-v2v-0.9.1.orig/Build.PL +++ virt-v2v-0.9.1/Build.PL @@ -316,7 +316,7 @@ my $build = $class->new ( script_files => [ 'v2v/virt-v2v.pl', 'p2v/server/virt-p2v-server.pl' ], meta_add => { resources => { - license => "http://www.gnu.org/licenses/gpl.html", + license => [ "http://www.gnu.org/licenses/gpl.html" ], homepage => "http://people.redhat.com/mbooth/virt-v2v/", repository => "git://git.fedorahosted.org/virt-v2v.git", MailingList => "http://www.redhat.com/mailman/listinfo/libguestfs", -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.