From 2c067edb362cf19dd38b5663229dede19856ad55 Mon Sep 17 00:00:00 2001 From: Michael Grubb Date: Fri, 9 Jan 2004 15:51:01 +0000 Subject: [PATCH] fixed a dependancy declaration. --- Changes | 6 ++++++ MANIFEST | 2 ++ MANIFEST.SKIP | 2 -- META.yml | 2 +- Makefile.PL | 4 ++-- README | 2 +- VERSION | 11 ++++++----- lib/Config/ApacheExtended.pm | 1 - 8 files changed, 18 insertions(+), 12 deletions(-) diff --git a/Changes b/Changes index 76543a8..50386e0 100644 --- a/Changes +++ b/Changes @@ -18,3 +18,9 @@ Revision history for Perl module Config::ApacheExtended This is because Carp prior to 5.8.0 does not have a version set according to the CPAN Testing Collective. - minor documentation changes + +1.14 Fri Jan 09 09:47:31 CST 2004 + - fixed another dependancy problem (this one was IO::File) + another issue found by the CPAN Testing Collective. + - fixed issue caused by moving the version to its own file (VERSION) + this works, but I had not included the VERSION file in the distribution diff --git a/MANIFEST b/MANIFEST index 71d899f..0fc42fc 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,6 +1,8 @@ Changes LICENSE MANIFEST +MANIFEST.SKIP +VERSION Makefile.PL README Todo diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index 3c440be..7fe9fe4 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -15,5 +15,3 @@ CVS/.* ^pm_to_blib$ ~$ ^RD_TRACE$ -^VERSION$ -^MANIFEST\.SKIP$ diff --git a/META.yml b/META.yml index 790a77a..d8f0961 100644 --- a/META.yml +++ b/META.yml @@ -7,7 +7,7 @@ installdirs: site requires: Carp: 0 File::Spec::Functions: 1.3 - IO::File: 1.09 + IO::File: 1.07 Parse::RecDescent: 1.94 Scalar::Util: 1.07 Test::More: 0.47 diff --git a/Makefile.PL b/Makefile.PL index 60177cd..cfa5652 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,11 +6,11 @@ WriteMakefile( # VERSION_FROM => 'lib/Config/ApacheExtended.pm', # finds $VERSION VERSION_FROM => 'VERSION', # finds $VERSION AUTHOR => 'Michael Grubb (mgrubb-cpan@fifthvision.net)', - ABSTRACT => '', + ABSTRACT_FROM => 'lib/Config/ApacheExtended.pm', PREREQ_PM => { 'Carp' => '0', 'File::Spec::Functions' => '1.3', - 'IO::File' => '1.09', + 'IO::File' => '1.07', 'Parse::RecDescent' => '1.94', 'Scalar::Util' => '1.07', 'Test::More' => '0.47', diff --git a/README b/README index 4a0b7cc..dccf366 100644 --- a/README +++ b/README @@ -16,7 +16,7 @@ This module requires these other modules and libraries: Carp File::Spec::Functions 1.3 - IO::File 1.09 + IO::File 1.07 Parse::RecDescent 1.94 Scalar::Util 1.07 Test::More 0.47 diff --git a/VERSION b/VERSION index ccb74b4..0238e9f 100644 --- a/VERSION +++ b/VERSION @@ -1,3 +1,8 @@ +BEGIN +{ + $VERSION = sprintf("%d.%02d", q$Revision$ =~ /(\d+)/g); +} + # 1.01 # 1.02 # 1.03 @@ -11,8 +16,4 @@ # 1.11 - 2003-12-29 # 1.12 - 2003-12-29 # 1.13 - 2004-01-06 - -BEGIN -{ - $VERSION = sprintf("%d.%02d", q$Revision$ =~ /(\d+)/g); -} +# 1.14 - 2004-01-09 diff --git a/lib/Config/ApacheExtended.pm b/lib/Config/ApacheExtended.pm index 5a70d19..92fa9cc 100644 --- a/lib/Config/ApacheExtended.pm +++ b/lib/Config/ApacheExtended.pm @@ -2,7 +2,6 @@ package Config::ApacheExtended; use Parse::RecDescent; use Config::ApacheExtended::Grammar; -#use Config::ApacheExtended::ParseTree; use IO::File; use Scalar::Util qw(weaken); use Text::Balanced qw(extract_variable);