From: Chris W. <la...@us...> - 2005-03-01 03:36:11
|
Update of /cvsroot/openinteract/OpenInteract2/sample/package In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30331/sample/package Modified Files: App.pm FILES Added Files: package.ini Log Message: no longer need to create App.pm when generating CPAN; use package.ini... --- NEW FILE: package.ini --- [package] name = [% package_name %] version = 0.01 author = Who AmI <me...@wh...> url = http://www.whereami.com/ sql_installer = OpenInteract2::SQLInstall::[% class_name %] description = Description of package [% package_name %] goes here. Use can use '\' as a line continuation. # Dependencies: use multiple lines for multiple dependencies module = # Other options: config_watcher, spops_file, action_file, message_file # Add template plugins here: key is name of plugin, value is class [package template_plugin] # Register observers here: key is name of observer, value is class [package observer] Index: App.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/sample/package/App.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** App.pm 26 Feb 2005 23:05:51 -0000 1.1 --- App.pm 1 Mar 2005 03:35:59 -0000 1.2 *************** *** 5,9 **** use OpenInteract2::Manage; ! $OpenInteract2::App::[% class_name %]::VERSION = '0.01'; @OpenInteract2::App::[% class_name %]::EXPORT = qw( install ); --- 5,9 ---- use OpenInteract2::Manage; ! $OpenInteract2::App::[% class_name %]::VERSION = sprintf("%d.%02d", q$Revision$ =~ /(\d+)\.(\d+)/); @OpenInteract2::App::[% class_name %]::EXPORT = qw( install ); *************** *** 29,57 **** OpenInteract2::App::[% class_name %] - This application will do everything! ! =head1 SYNOPSIS ! ! =head1 DESCRIPTION ! ! =head1 OBJECTS ! ! No objects created by this application. ! ! =head1 ACTIONS ! ! No actions defined in this application. ! ! =head1 RULESETS ! ! No rulesets defined in this application. ! ! =head1 TASKS ! ! No management tasks defined in this application. ! ! =head1 SEE ALSO ! ! =head1 AUTHORS ! ! Who AmI E<lt>me...@wh...E<gt> =cut --- 29,33 ---- OpenInteract2::App::[% class_name %] - This application will do everything! ! [% pod %] =cut Index: FILES =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/sample/package/FILES,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** FILES 26 Feb 2005 23:05:51 -0000 1.6 --- FILES 1 Mar 2005 03:35:59 -0000 1.7 *************** *** 6,10 **** # 'package_name' and 'class_name' template keys replaced. ! package.conf --> package.conf MANIFEST.SKIP --> MANIFEST.SKIP spops.ini --> conf spops.ini --- 6,10 ---- # 'package_name' and 'class_name' template keys replaced. ! package.ini --> package.ini MANIFEST.SKIP --> MANIFEST.SKIP spops.ini --> conf spops.ini |