[Catalyst-commits] r12553 - in trunk/HTTP-Body: . lib/HTTP
chansen at dev.catalyst.perl.org
chansen at dev.catalyst.perl.org
Sat Jan 9 14:43:08 GMT 2010
Author: chansen
Date: 2010-01-09 14:43:06 +0000 (Sat, 09 Jan 2010)
New Revision: 12553
Modified:
trunk/HTTP-Body/Makefile.PL
trunk/HTTP-Body/lib/HTTP/Body.pm
Log:
Switched to Module::Install
s/ch at ngmedia.com/chansen at cpan.org/
Modified: trunk/HTTP-Body/Makefile.PL
===================================================================
--- trunk/HTTP-Body/Makefile.PL 2010-01-09 14:17:56 UTC (rev 12552)
+++ trunk/HTTP-Body/Makefile.PL 2010-01-09 14:43:06 UTC (rev 12553)
@@ -1,15 +1,16 @@
#!perl
-use ExtUtils::MakeMaker;
+use inc::Module::Install;
-WriteMakefile(
- NAME => 'HTTP::Body',
- VERSION_FROM => 'lib/HTTP/Body.pm',
- PREREQ_PM => {
- Carp => 0,
- File::Temp => '0.14',
- HTTP::Headers => 0,
- IO::File => 0,
- Test::Deep => 0,
- }
-);
+name 'HTTP-Body';
+all_from 'lib/HTTP/Body.pm';
+
+requires 'Carp';
+requires 'File::Temp' => '0.14';
+requires 'HTTP::Headers';
+requires 'IO::File';
+
+test_requires 'Test::More' => '0.86';
+test_requires 'Test::Deep';
+
+WriteAll;
Modified: trunk/HTTP-Body/lib/HTTP/Body.pm
===================================================================
--- trunk/HTTP-Body/lib/HTTP/Body.pm 2010-01-09 14:17:56 UTC (rev 12552)
+++ trunk/HTTP-Body/lib/HTTP/Body.pm 2010-01-09 14:43:06 UTC (rev 12553)
@@ -394,7 +394,7 @@
=head1 AUTHOR
-Christian Hansen, C<ch at ngmedia.com>
+Christian Hansen, C<chansen at cpan.org>
Sebastian Riedel, C<sri at cpan.org>
More information about the Catalyst-commits
mailing list