Subject: | App::Basis for older perls |
The App::Basis testsuite works fine for perl 5.12.3 if all "use 5.x" statements are removed (in Makefile.PL and lib/App/Basis.pm, see attached patch). If you're unsure what's the minimum perl version you can always do a devel release and check out cpantesters some days later.
Subject: | 0001-module-works-also-for-older-perls.patch |
From 311f8d8a948d4b1aeb4eaa20d6cf1a8cd3b62db9 Mon Sep 17 00:00:00 2001
From: Slaven Rezic <slaven.rezic@idealo.de>
Date: Mon, 3 Nov 2014 11:52:16 +0100
Subject: [PATCH] module works also for older perls
---
Makefile.PL | 2 --
lib/App/Basis.pm | 1 -
2 files changed, 3 deletions(-)
diff --git a/Makefile.PL b/Makefile.PL
index ea23478..3055e67 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -3,8 +3,6 @@
use strict;
use warnings;
-use 5.014;
-
use ExtUtils::MakeMaker 6.30;
diff --git a/lib/App/Basis.pm b/lib/App/Basis.pm
index b4aeb4b..2e1509a 100644
--- a/lib/App/Basis.pm
+++ b/lib/App/Basis.pm
@@ -3,7 +3,6 @@
package App::Basis;
$App::Basis::VERSION = '1.0';
-use 5.014;
use warnings;
use strict;
use Getopt::Long;
--
1.7.9.5