Skip to content

Commit

Permalink
Complete rewrite with new API, while providing backwards compatibility
Browse files Browse the repository at this point in the history
with legacy API.
  • Loading branch information
mschilli committed May 10, 2010
1 parent 5c86c10 commit 32a796e
Show file tree
Hide file tree
Showing 11 changed files with 1,522 additions and 583 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
MANIFEST.bak
Makefile
blib
pm_to_blib
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
######################################################################
Revision history for Perl extension Config::Patch

0.09 2010/05/09
(ms) Complete rewrite with new API, while providing backwards
compatibility with legacy API.

0.08 2007/10/03
(ms) Added insert() patch by Steve McNeill.

Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ README
t/001Basic.t
t/002Replace.t
t/003Prepend.t
t/004HunkApi.t
1 change: 1 addition & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ blib
^Makefile.old$
CVS
.cvsignore
.git
docs
MANIFEST.bak
adm/release
10 changes: 10 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
# 2005, Mike Schilli <cpan@perlmeister.com>
######################################################################
use ExtUtils::MakeMaker;

my $meta_merge = {
META_MERGE => {
resources => {
repository => 'http://github.com/mschilli/config-patch-perl',
},
}
};

WriteMakefile(
'NAME' => 'Config::Patch',
'VERSION_FROM' => 'lib/Config/Patch.pm', # finds $VERSION
Expand All @@ -12,6 +21,7 @@ WriteMakefile(
Set::IntSpan => 0,
Log::Log4perl => 0,
}, # e.g., Module::Name => 1.1
$ExtUtils::MakeMaker::VERSION >= 6.50 ? (%$meta_merge) : (),
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/Config/Patch.pm',
AUTHOR => 'Mike Schilli <cpan@perlmeister.com>') : ()),
Expand Down
Loading

0 comments on commit 32a796e

Please sign in to comment.