Skip to content
This repository has been archived by the owner on Jul 23, 2020. It is now read-only.

Commit

Permalink
fixed a dependancy declaration.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrubb committed Jan 9, 2004
1 parent 91015e6 commit 2c067ed
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 2 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Changes
LICENSE
MANIFEST
MANIFEST.SKIP
VERSION
Makefile.PL
README
Todo
Expand Down
2 changes: 0 additions & 2 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,3 @@ CVS/.*
^pm_to_blib$
~$
^RD_TRACE$
^VERSION$
^MANIFEST\.SKIP$
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 6 additions & 5 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
BEGIN
{
$VERSION = sprintf("%d.%02d", q$Revision$ =~ /(\d+)/g);
}

# 1.01
# 1.02
# 1.03
Expand All @@ -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
1 change: 0 additions & 1 deletion lib/Config/ApacheExtended.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 2c067ed

Please sign in to comment.