[libdancer-plugin-rest-perl] 05/63: MakefilePL

Jonas Smedegaard dr at jones.dk
Wed Jul 2 11:44:49 UTC 2014


This is an automated email from the git hooks/post-receive script.

js pushed a commit to annotated tag 0.07
in repository libdancer-plugin-rest-perl.

commit 20e8d3269cbe81c86269498f7c18b34ce7c94304
Author: Alexis Sukrieh <sukria at sukria.net>
Date:   Sat Apr 3 15:52:39 2010 +0200

    MakefilePL
---
 Makefile.PL | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..8aa888f
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,48 @@
+use ExtUtils::MakeMaker;
+
+WriteMakefile1(
+    NAME         => 'Dancer::Plugin::REST',
+    ABSTRACT     => "REST plugin for Dancer",
+    LICENSE      => 'perl',
+    VERSION_FROM => 'lib/Dancer/Plugin/REST.pm',
+    
+    META_MERGE => {
+        resources => {
+            repository => 'http://github.com/sukria/Dancer-Plugin-REST',
+        },
+    },
+
+    BUILD_REQUIRES => {
+        'Test::More' => '0.87',
+    },
+
+    PREREQ_PM => {
+        'Dancer' => '1.173',
+    },
+
+    test => {TESTS => join( ' ', (glob( 't/*.t'), glob('t/*/*.t')))},
+);
+
+sub WriteMakefile1 {  #Written by Alexandr Ciornii, version 0.21. Added by eumm-upgrade.
+    my %params=@_;
+    my $eumm_version=$ExtUtils::MakeMaker::VERSION;
+    $eumm_version=eval $eumm_version;
+    die "EXTRA_META is deprecated" if exists $params{EXTRA_META};
+    die "License not specified" if not exists $params{LICENSE};
+    if ($params{BUILD_REQUIRES} and $eumm_version < 6.5503) {
+        #EUMM 6.5502 has problems with BUILD_REQUIRES
+        $params{PREREQ_PM}={ %{$params{PREREQ_PM} || {}} , %{$params{BUILD_REQUIRES}} };
+        delete $params{BUILD_REQUIRES};
+    }
+    delete $params{CONFIGURE_REQUIRES} if $eumm_version < 6.52;
+    delete $params{MIN_PERL_VERSION} if $eumm_version < 6.48;
+    delete $params{META_MERGE} if $eumm_version < 6.46;
+    delete $params{META_ADD} if $eumm_version < 6.46;
+    delete $params{LICENSE} if $eumm_version < 6.31;
+    delete $params{AUTHOR} if $] < 5.005;
+    delete $params{ABSTRACT_FROM} if $] < 5.005;
+    delete $params{BINARY_LOCATION} if $] < 5.005;
+
+    WriteMakefile(%params);
+}
+

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdancer-plugin-rest-perl.git



More information about the Pkg-perl-cvs-commits mailing list