From: Richard D. <ric...@us...> - 2006-10-05 21:45:16
|
Update of /cvsroot/file-extattr/File-Attributes-Extended In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv5278 Modified Files: Makefile.PL Added Files: .cvsignore Changes MANIFEST README Log Message: Module basically works --- NEW FILE: README --- File-Attributes-Extended The README is used to introduce the module and provide instructions on how to install the module, any machine dependencies it may have (for example C compilers and installed libraries) and any other information that should be provided before the module is installed. A README file is required for CPAN modules since CPAN extracts the README file from a module distribution so that people browsing the archive can use it get an idea of the modules uses. It is usually a good idea to provide version information here so that people can decide whether fixes for the module are worth downloading. INSTALLATION To install this module, run the following commands: perl Makefile.PL make make test make install SUPPORT AND DOCUMENTATION After installing, you can find documentation for this module with the perldoc command. perldoc File::Attributes::Extended You can also look for information at: Search CPAN http://search.cpan.org/dist/File-Attributes-Extended CPAN Request Tracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=File-Attributes-Extended AnnoCPAN, annotated CPAN documentation: http://annocpan.org/dist/File-Attributes-Extended CPAN Ratings: http://cpanratings.perl.org/d/File-Attributes-Extended COPYRIGHT AND LICENCE Copyright (C) 2006 Richard Dawe This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. --- NEW FILE: .cvsignore --- blib* Makefile Makefile.old Build _build* pm_to_blib* *.tar.gz .lwpcookies File-Attributes-Extended-* cover_db --- NEW FILE: Changes --- Revision history for File-Attributes-Extended 0.01 Date/time First version, released on an unsuspecting world. Index: Makefile.PL =================================================================== RCS file: /cvsroot/file-extattr/File-Attributes-Extended/Makefile.PL,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.PL 14 Jul 2006 22:25:13 -0000 1.1.1.1 --- Makefile.PL 5 Oct 2006 21:45:12 -0000 1.2 *************** *** 1,12 **** use ExtUtils::MakeMaker; - # See lib/ExtUtils/MakeMaker.pm for details of how to influence - # the contents of the Makefile that is written. WriteMakefile( ! NAME => 'File::Attributes::Extended', ! VERSION_FROM => 'lib/File/Attributes/Extended.pm', # finds $VERSION ! PREREQ_PM => {}, ! ($] >= 5.005 ? ## Add these new keywords supported since 5.005 ! (ABSTRACT_FROM => 'lib/File/Attributes/Extended.pm', # retrieve abstract from module ! AUTHOR => 'Richard Dawe <ri...@ph...>') : ()) ); --- 1,16 ---- + use strict; + use warnings; use ExtUtils::MakeMaker; WriteMakefile( ! NAME => 'File::Attributes::Extended', ! AUTHOR => 'Richard Dawe <ric...@cp...>', ! VERSION_FROM => 'lib/File/Attributes/Extended.pm', ! ABSTRACT_FROM => 'lib/File/Attributes/Extended.pm', ! PL_FILES => {}, ! PREREQ_PM => { ! 'Test::More' => 0, ! }, ! dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, ! clean => { FILES => 'File-Attributes-Extended-*' }, ); --- NEW FILE: MANIFEST --- Changes MANIFEST META.yml # Will be created by "make dist" Makefile.PL README lib/File/Attributes/Extended.pm t/00-load.t t/boilerplate.t t/pod-coverage.t t/pod.t |