From: Peter Rabbitson <ribasushi@cpan.org>
Date: Fri, 28 Aug 2009 12:09:27 +0000 (+0000)
Subject: Makefile fixes + changes
X-Git-Tag: v0.11008~94
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=475a7db793013b3cb0d4aaeac160389b0c948354;p=dbsrgits%2FSQL-Translator.git

Makefile fixes + changes
---

diff --git a/Changes b/Changes
index 54f4038..9b2e6ca 100644
--- a/Changes
+++ b/Changes
@@ -1,4 +1,10 @@
 # ----------------------------------------------------------
+# 0.11002 2009-08-28
+# ----------------------------------------------------------
+* Depend on fixed Parse::RecDescent
+* Added skip-tables and skip-tables-like options to Diagram
+
+# ----------------------------------------------------------
 # 0.11001 2009-08-18
 # ----------------------------------------------------------
 * Removed last use of Readonly
diff --git a/Makefile.PL b/Makefile.PL
index e1c14f9..2916095 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,7 +1,10 @@
-use inc::Module::Install 0.89;
+use inc::Module::Install 0.91;
 use strict;
 use warnings;
 
+# to deal wuth x.y.z versions properly
+configure_requires 'ExtUtils::MakeMaker' => 6.54;
+
 my $deps = {
   requires => {
     'Class::Base'              => 0,
@@ -11,7 +14,7 @@ my $deps = {
     'Carp::Clan'               => 0,
     'IO::Dir'                  => 0,
     'IO::Scalar'               => 2.110,
-    'Parse::RecDescent'        => 1.096000,   # PBP ftw
+    'Parse::RecDescent'        => 1.962002,
     'Pod::Usage'               => 0,
     'Class::Accessor::Fast'    => 0,
     'DBI'                      => 0,
@@ -51,6 +54,7 @@ resources Ratings => 'http://cpanratings.perl.org/d/SQL-Translator';
 
 all_from    'lib/SQL/Translator.pm';
 
+
 for my $type (qw/requires recommends test_requires/) {
   no strict qw/refs/;
   my $f = \&$type;