Blame SOURCES/Parse-PMFile-0.41-Do-not-use-ExtUtils-MakeMaker-CPANfile.patch

b69957
From 76f72eb15b44af89a089d30b14d5f5d4d6829f7a Mon Sep 17 00:00:00 2001
b69957
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
b69957
Date: Fri, 1 Jun 2018 09:28:17 +0200
b69957
Subject: [PATCH] Do not use ExtUtils::MakeMaker::CPANfile
b69957
MIME-Version: 1.0
b69957
Content-Type: text/plain; charset=UTF-8
b69957
Content-Transfer-Encoding: 8bit
b69957
b69957
The Makefile.PL works as well as with plain ExtUtils::MakeMaker.
b69957
rpmbuild does not read dependencies from META, thus cpanfile content
b69957
is irrelevant when building an RPM package.
b69957
b69957
Signed-off-by: Petr Písař <ppisar@redhat.com>
b69957
---
b69957
 Makefile.PL | 2 +-
b69957
 cpanfile    | 2 +-
b69957
 2 files changed, 2 insertions(+), 2 deletions(-)
b69957
b69957
diff --git a/Makefile.PL b/Makefile.PL
b69957
index a4faee1..b4bb0d8 100644
b69957
--- a/Makefile.PL
b69957
+++ b/Makefile.PL
b69957
@@ -1,6 +1,6 @@
b69957
 use strict;
b69957
 use warnings;
b69957
-use ExtUtils::MakeMaker::CPANfile;
b69957
+use ExtUtils::MakeMaker;
b69957
 
b69957
 my %params = (
b69957
     NAME          => 'Parse::PMFile',
b69957
diff --git a/cpanfile b/cpanfile
b69957
index a5eef0c..6295f99 100644
b69957
--- a/cpanfile
b69957
+++ b/cpanfile
b69957
@@ -12,4 +12,4 @@ on test => sub {
b69957
 on develop => sub {
b69957
   requires 'PAUSE::Permissions' => '0.08' if $] > 5.010000;
b69957
   requires 'WorePAN' => '0.13';
b69957
-};
b69957
\ No newline at end of file
b69957
+};
b69957
-- 
b69957
2.14.4
b69957