bump version to 0.82 and prepare for release
[catagits/fcgi2.git] / perl / Makefile.PL
index 9a61424..a389f0c 100644 (file)
@@ -11,7 +11,7 @@ use File::Copy qw(copy);
 @h1 = qw(fastcgi.h fcgiapp.h fcgimisc.h fcgios.h);
 @h = (@h1, 'fcgi_config.h');
 @o = qw(FCGI.o);
-@dist1 = qw(LICENSE.TERMS);
+@dist1 = qw(LICENSE);
 @dist2 = qw(fcgiapp.c os_unix.c os_win32.c);
 @dist3 = (@h1, qw(fcgi_config_x86.h));
 
@@ -74,9 +74,13 @@ push @extras, META_MERGE => {
     dynamic_config => 0,
     resources => {
         repository => {
+            # this is the real repository
             # r/w: catagits@git.shadowcat.co.uk:fcgi2.git
-            url => 'git://git.shadowcat.co.uk/catagits/fcgi2.git',
-            web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits/fcgi2.git',
+            # r/o: git://git.shadowcat.co.uk/catagits/fcgi2.git
+            # web: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits/fcgi2.git
+            # this is a mirror, but can receive pull requests
+            url => 'https://github.com/perl-catalyst/FCGI.git',
+            web => 'https://github.com/perl-catalyst/FCGI',
             type => 'git',
         },
         bugtracker => {
@@ -133,6 +137,13 @@ WriteMakefile(
     'realclean'    => { FILES => 'configure MANIFEST.SKIP.bak MANIFEST.bak Makefile.old' },
     PM            => {'FCGI.pm' => '$(INST_ARCHLIBDIR)/FCGI.pm'},
     PREREQ_PM     => {'XSLoader' => '0'},
+    TEST_REQUIRES => {
+        'Config' => 0,
+        'FCGI::Client' => 0.09,
+        'File::Temp' => 0,
+        'IO::Socket' => 0,
+        'Test::More' => 0,
+    },
     @extras,
 );