perl/modules/W3C/LinkChecker Makefile.PL,1.30,1.31

Update of /sources/public/perl/modules/W3C/LinkChecker
In directory hutz:/tmp/cvs-serv2350

Modified Files:
	Makefile.PL 
Log Message:
Run perltidy, update indentation settings.

Index: Makefile.PL
===================================================================
RCS file: /sources/public/perl/modules/W3C/LinkChecker/Makefile.PL,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- Makefile.PL	28 Feb 2010 19:13:52 -0000	1.30
+++ Makefile.PL	28 Feb 2010 21:13:22 -0000	1.31
@@ -2,69 +2,69 @@
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
-  NAME          => 'W3C::LinkChecker',
-  ABSTRACT      => 'W3C Link Checker',
-  AUTHOR        => 'W3C QA-dev Team <public-qa-dev@w3.org>',
-  LICENSE       => 'open_source',
-  VERSION_FROM  => 'bin/checklink',
-  PREREQ_PM     => {
-                     # Hard dependencies:
-                     HTML::Entities   => 0,
-                     HTML::Parser     => 3.20,
-                     HTTP::Request    => 0,
-                     HTTP::Response   => 1.50,
-                     LWP::RobotUA     => 1.19,
-                     LWP::UserAgent   => 0,
-                     Time::HiRes      => 0,
-                     URI              => 1.31,
-                     URI::Escape      => 0,
+    NAME         => 'W3C::LinkChecker',
+    ABSTRACT     => 'W3C Link Checker',
+    AUTHOR       => 'W3C QA-dev Team <public-qa-dev@w3.org>',
+    LICENSE      => 'open_source',
+    VERSION_FROM => 'bin/checklink',
+    PREREQ_PM    => {
 
-                     # Optional, but required if using a config file:
-                     Config::General  => 2.06,
+        # Hard dependencies:
+        HTML::Entities => 0,
+        HTML::Parser   => 3.20,
+        HTTP::Request  => 0,
+        HTTP::Response => 1.50,
+        LWP::RobotUA   => 1.19,
+        LWP::UserAgent => 0,
+        Time::HiRes    => 0,
+        URI            => 1.31,
+        URI::Escape    => 0,
 
-                     # Optional, but required if private IPs are disallowed:
-                     Net::hostent     => 0,
-                     Net::IP          => 0,
-                     Socket           => 0,
+        # Optional, but required if using a config file:
+        Config::General => 2.06,
 
-                     # Optional, but required in command line mode:
-                     File::Spec       => 0,
-                     Getopt::Long     => 2.17,
-                     Text::Wrap       => 0,
-                     URI::file        => 0,
+        # Optional, but required if private IPs are disallowed:
+        Net::hostent => 0,
+        Net::IP      => 0,
+        Socket       => 0,
 
-                     # Optional, used for password input in command line mode:
-                     Term::ReadKey    => 2.00,
+        # Optional, but required in command line mode:
+        File::Spec   => 0,
+        Getopt::Long => 2.17,
+        Text::Wrap   => 0,
+        URI::file    => 0,
 
-                     # Optional, used for guessing language in cmd line mode:
-                     Locale::Country  => 0,
-                     Locale::Language => 0,
+        # Optional, used for password input in command line mode:
+        Term::ReadKey => 2.00,
 
-                     # Optional, but required in CGI mode:
-                     CGI              => 0,
-                     CGI::Carp        => 0,
-                     CGI::Cookie      => 0,
+        # Optional, used for guessing language in cmd line mode:
+        Locale::Country  => 0,
+        Locale::Language => 0,
 
-                     # Optional, required if using cookies:
-                     HTTP::Cookies    => 0,
+        # Optional, but required in CGI mode:
+        CGI         => 0,
+        CGI::Carp   => 0,
+        CGI::Cookie => 0,
 
-                     # Required for the test suite:
-                     File::Spec       => 0,
-                     Test::More       => 0,
-                   },
-  PM            => { 'lib/W3C/LinkChecker.pm' =>
-                     '$(INST_LIB)/W3C/LinkChecker.pm' },
-  EXE_FILES     => [ 'bin/checklink' ],
-  MAN1PODS      => { 'bin/checklink.pod' =>
-                     '$(INST_MAN1DIR)/checklink.$(MAN1EXT)',
-                   },
-  depend        => { distdir => 'ChangeLog lib/W3C/LinkChecker.pm' },
-  dist          => { TARFLAGS => '--owner=0 --group=0 -cvf' },
-  clean         => { FILES => 'ChangeLog.bak' },
+        # Optional, required if using cookies:
+        HTTP::Cookies => 0,
+
+        # Required for the test suite:
+        File::Spec => 0,
+        Test::More => 0,
+    },
+    PM => {'lib/W3C/LinkChecker.pm' => '$(INST_LIB)/W3C/LinkChecker.pm'},
+    EXE_FILES => ['bin/checklink'],
+    MAN1PODS =>
+        {'bin/checklink.pod' => '$(INST_MAN1DIR)/checklink.$(MAN1EXT)',},
+    depend => {distdir  => 'ChangeLog lib/W3C/LinkChecker.pm'},
+    dist   => {TARFLAGS => '--owner=0 --group=0 -cvf'},
+    clean  => {FILES    => 'ChangeLog.bak'},
 );
 
-sub MY::postamble {
-  return <<'MAKE_FRAG';
+sub MY::postamble
+{
+    return <<'MAKE_FRAG';
 ChangeLog: bin/checklink bin/checklink.pod docs/checklink.html docs/linkchecker.css README t/00compile.t
 	cvs2cl --FSF --utc --prune \
 	  --ignore ChangeLog --ignore cvsignore --ignore SIGNATURE \

Received on Sunday, 28 February 2010 21:13:26 UTC