Update of /cvsroot/openinteract/OpenInteract2/sample/package_cpan
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22321/package_cpan
Modified Files:
module_include.t Makefile.PL Brick.pm
Log Message:
OIN-166: update package files to include information about when/how the file was generated
Index: module_include.t
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract2/sample/package_cpan/module_include.t,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** module_include.t 8 Feb 2005 12:32:48 -0000 1.1
--- module_include.t 22 Oct 2005 21:58:33 -0000 1.2
***************
*** 1,4 ****
--- 1,10 ----
# -*-perl-*-
+ # This OpenInteract2 file was generated
+ # by: [% invocation %]
+ # on: [% date %]
+ # from: [% source_template %]
+ # using: OpenInteract2 version [% oi2_version %]
+
use strict;
use Test::More tests => [% package_modules.size + 2 %];
Index: Makefile.PL
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract2/sample/package_cpan/Makefile.PL,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Makefile.PL 8 Feb 2005 12:32:48 -0000 1.1
--- Makefile.PL 22 Oct 2005 21:58:33 -0000 1.2
***************
*** 1,2 ****
--- 1,8 ----
+ # This OpenInteract2 file was generated
+ # by: [% invocation %]
+ # on: [% date %]
+ # from: [% source_template %]
+ # using: OpenInteract2 version [% oi2_version %]
+
use ExtUtils::MakeMaker;
***************
*** 8,13 ****
'PREREQ_PM' => {
'OpenInteract2::Action' => 1.66, # proxy for OI2
! [% FOREACH module = required_modules -%]
! [% module %] => 0,
[% END -%]
},
--- 14,19 ----
'PREREQ_PM' => {
'OpenInteract2::Action' => 1.66, # proxy for OI2
! [% FOREACH req_module = required_modules -%]
! [% IF req_module %][% req_module %] => 0,[% END %]
[% END -%]
},
Index: Brick.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract2/sample/package_cpan/Brick.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Brick.pm 8 Feb 2005 12:32:48 -0000 1.1
--- Brick.pm 22 Oct 2005 21:58:33 -0000 1.2
***************
*** 1,2 ****
--- 1,8 ----
+ # This OpenInteract2 file was generated
+ # by: [% invocation %]
+ # on: [% date %]
+ # from: [% source_template %]
+ # using: OpenInteract2 version [% oi2_version %]
+
package [% full_brick_class %];
|