perl/modules/W3C/LinkChecker .cvsignore,1.1,1.2 MANIFEST,1.8,1.9 META.yml,1.11,1.12 Makefile.PL,1.14,1.15

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

Modified Files:
	.cvsignore MANIFEST META.yml Makefile.PL 
Log Message:
Autogenerate a dummy *.pm for CPAN indexing purposes.

Index: .cvsignore
===================================================================
RCS file: /sources/public/perl/modules/W3C/LinkChecker/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- .cvsignore	18 Mar 2004 21:44:14 -0000	1.1
+++ .cvsignore	19 Apr 2007 21:41:54 -0000	1.2
@@ -1,4 +1,5 @@
 blib
+lib
 Makefile
 Makefile.old
 pm_to_blib

Index: META.yml
===================================================================
RCS file: /sources/public/perl/modules/W3C/LinkChecker/META.yml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- META.yml	22 Oct 2006 16:48:13 -0000	1.11
+++ META.yml	19 Apr 2007 21:41:54 -0000	1.12
@@ -12,7 +12,7 @@
     LWP:                           5.66
     Net::IP:                       0
     Term::ReadKey:                 2
-    Test::Simple:                  0
+    Test::More:                    0
     Time::HiRes:                   0
     URI:                           0
 

Index: Makefile.PL
===================================================================
RCS file: /sources/public/perl/modules/W3C/LinkChecker/Makefile.PL,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- Makefile.PL	19 Apr 2007 21:35:55 -0000	1.14
+++ Makefile.PL	19 Apr 2007 21:41:54 -0000	1.15
@@ -30,9 +30,11 @@
                      Time::HiRes     => 0,
                      URI             => 0,
                      # For the test suite:
-                     Test::Simple    => 0,
+                     Test::More      => 0,
                      File::Spec      => 0,
                    },
+  PM            => { 'lib/W3C/LinkChecker.pm' =>
+                     '$(INST_LIB)/W3C/LinkChecker.pm' },
   EXE_FILES     => [ 'bin/checklink' ],
   MAN1PODS      => { 'bin/checklink.pod' =>
                      '$(INST_MAN1DIR)/checklink.$(MAN1EXT)',
@@ -49,5 +51,14 @@
 	  --ignore ChangeLog --ignore cvsignore --ignore SIGNATURE \
 	  --ignore Makefile.PL --ignore META.yml --ignore MANIFEST \
 	  --ignore NEWS
+
+lib/W3C/LinkChecker.pm: Makefile.PL bin/checklink
+	$(MKPATH) lib/W3C
+	$(ECHO) "# Dummy module for CPAN indexing purposes."  > $@
+	$(ECHO) "package $(NAME);"                           >> $@
+	$(ECHO) "use strict;"                                >> $@
+	$(ECHO) "use vars qw(\$$VERSION);"                   >> $@
+	$(ECHO) "\$$VERSION = \"$(VERSION)\";"               >> $@
+	$(ECHO) "1;"                                         >> $@
 MAKE_FRAG
 }

Index: MANIFEST
===================================================================
RCS file: /sources/public/perl/modules/W3C/LinkChecker/MANIFEST,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- MANIFEST	23 Nov 2004 20:48:59 -0000	1.8
+++ MANIFEST	19 Apr 2007 21:41:54 -0000	1.9
@@ -14,4 +14,5 @@
 docs/qa-small.png
 docs/valid-xhtml10.png
 docs/w3c_home.png
+lib/W3C/LinkChecker.pm  Dummy *.pm for CPAN indexing purposes
 t/00compile.t

Received on Thursday, 19 April 2007 21:42:30 UTC