35 lines
1.3 KiB
Diff
35 lines
1.3 KiB
Diff
|
From 6ea7529da49959ff164f39eae4423fdc730f9753 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
||
|
Date: Fri, 27 Jun 2014 17:20:00 +0200
|
||
|
Subject: [PATCH] The license metadata must be a list
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
CPAN::Meta::Spec defines the license value must be an array reference.
|
||
|
However current Build.PL uses simple scalar. This breaks generating
|
||
|
META.* files which breaks tests with recent Module::Build 0.4205.
|
||
|
|
||
|
https://bugzilla.redhat.com/show_bug.cgi?id=1083430
|
||
|
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
||
|
---
|
||
|
Build.PL | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/Build.PL b/Build.PL
|
||
|
index 55cee55..0ccace3 100644
|
||
|
--- a/Build.PL
|
||
|
+++ b/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",
|
||
|
--
|
||
|
1.9.3
|
||
|
|