Change 31464 by [EMAIL PROTECTED] on 2007/06/25 14:20:04
Rename README and Changes for more readability
Affected files ...
... //depot/perl/MANIFEST#1594 edit
... //depot/perl/Porting/Maintainers.pl#81 edit
... //depot/perl/lib/Net/Changes#1 branch
... //depot/perl/lib/Net/Changes.libnet#5 delete
... //depot/perl/lib/Net/README#1 branch
... //depot/perl/lib/Net/README.libnet#7 delete
Differences ...
==== //depot/perl/MANIFEST#1594 (text) ====
Index: perl/MANIFEST
--- perl/MANIFEST#1593~31463~ 2007-06-25 07:16:28.000000000 -0700
+++ perl/MANIFEST 2007-06-25 07:20:04.000000000 -0700
@@ -2191,7 +2191,7 @@
lib/Module/Pluggable/Object.pm Module::Pluggable
lib/Module/Pluggable.pm Module::Pluggable
lib/mro.pm mro extension
-lib/Net/Changes.libnet libnet
+lib/Net/Changes libnet
lib/Net/Cmd.pm libnet
lib/Net/Config.eg libnet
lib/Net/Config.pm libnet
@@ -2237,7 +2237,7 @@
lib/Net/POP3.pm libnet
lib/Net/protoent.pm By-name interface to Perl's builtin getproto*
lib/Net/protoent.t See if Net::protoent works
-lib/Net/README.libnet libnet
+lib/Net/README libnet
lib/Net/servent.pm By-name interface to Perl's builtin getserv*
lib/Net/servent.t See if Net::servtent works
lib/Net/SMTP.pm libnet
==== //depot/perl/Porting/Maintainers.pl#81 (text) ====
Index: perl/Porting/Maintainers.pl
--- perl/Porting/Maintainers.pl#80~31415~ 2007-06-18 06:19:23.000000000
-0700
+++ perl/Porting/Maintainers.pl 2007-06-25 07:20:04.000000000 -0700
@@ -426,7 +426,7 @@
{
'MAINTAINER' => 'gbarr',
'FILES' =>
-
q[lib/Net/{Cmd,Config,Domain,FTP,Netrc,NNTP,POP3,SMTP,Time}.pm
lib/Net/ChangeLog.libnet lib/Net/FTP lib/Net/*.eg lib/Net/libnetFAQ.pod
lib/Net/README.libnet lib/Net/t],
+
q[lib/Net/{Cmd,Config,Domain,FTP,Netrc,NNTP,POP3,SMTP,Time}.pm
lib/Net/ChangeLog lib/Net/FTP lib/Net/*.eg lib/Net/libnetFAQ.pod lib/Net/README
lib/Net/t],
'CPAN' => 1,
},
==== //depot/perl/lib/Net/Changes#1 (text) ====
Index: perl/lib/Net/Changes
--- /dev/null 2007-03-19 09:41:43.516454971 -0700
+++ perl/lib/Net/Changes 2007-06-25 07:20:04.000000000 -0700
@@ -0,0 +1,63 @@
+libnet 1.21 -- Sat May 19 08:53:09 CDT 2007
+
+Bug Fixes
+ * Fix bug causing utf8 encoding of 8bit strings in Net::Cmd
+ * Fix precedence issue in Net::NNTP. Patch from Brendan O'Dea
+ * Fixed bug causing removal of last character on the line when
+ doing ASCII FTP transfers
+
+Enhancements
+ * Add support for ENVID and AUTH to Net::SMTP. Patch by Mark Martinec
+ * Changed default for FTP transfers to be passive
+ * Added support for FTP FEAT command
+
+libnet 1.20 -- Fri Feb 2 19:42:51 CST 2007
+
+Bug Fixes
+ * Fixed incorrect handling of CRLF that straddled two blocks
+ * Fix bug in response() which was too liberal in what it thought was a
response line
+ * Silence uninitialized value warnings in Net::Cmd during testing on Win32
+ * Documentations typos and updates
+
+Enhancements
+ * Added support for ORCPT into Net::SMTP
+ * Support for servers that expect the USER command in upper or lower case.
Try USER
+ first then try user if that fails
+
+libnet 1.19 -- Wed Jun 30 14:53:48 BST 2004
+
+Bug Fixes
+ * Fixed datasend test to work on Win32 platform
+ * Fixed Authen::SASL checking in SMTP.pm and POP3.pm
+ * Fixed bug that a restarted get with Net::FTP did not append to local file
+
+libnet 1.18 -- Mon Mar 22 16:19:01 GMT 2004
+
+Bug Fixes
+ * Fixed bug in CRLF translation in Net::Cmd datasend/dataend methods
+ * Fixed bug in converting numbers returned by PASV command into a
+ packed IP address
+ * Fixed bug that caused Net::FTP->get to truncate the local file after
+ the restart method had been called
+ * Fixed bug in Net::FTP-.rmdir when the server returned . and .. in
+ the contents of a directory
+ * Fixed bug in POP3 that was sending unnecessary RSETs
+
+Enhancements
+ * Added support for POP3 CAPA command
+ * Added support for XVERP to Net::SMTP
+ * Added Net::POP3->banner method to return the banner received from
+ the server during connect
+ * Added Net::POP3->auth method for performing authentication using
+ SASL, requires Authen::SASL
+ * Added Host option to ->new constructor of FTP, NNTP, SMTP and POP3
+ which can be used instead of passing the host as the first argument
+ * Added ->host method to FTP, NNTP, SMTP and POP3 to return the host
+ string used for the connect. This is useful to determine which host
+ was connected to when multiple hosts are specified
+ * Added support for more non-standard responses to Net::FTP->size
+ * Updated POD for Net::SMTP wrt. not passing a Hello parameter to the
+ constructor. (Jeff Macdonald)
+
+ChangeLogs for releases prior to 1.18 may be found at
+http://svn.mutatus.co.uk/browse/libnet/tags/libnet-1.17/ChangeLog
==== //depot/perl/lib/Net/README#1 (text) ====
Index: perl/lib/Net/README
--- /dev/null 2007-03-19 09:41:43.516454971 -0700
+++ perl/lib/Net/README 2007-06-25 07:20:04.000000000 -0700
@@ -0,0 +1,109 @@
+libnet is a collection of Perl modules which provides a simple
+and consistent programming interface (API) to the client side
+of various protocols used in the internet community.
+
+For details of each protocol please refer to the RFC. RFC's
+can be found a various places on the WEB, for a starting
+point look at:
+
+ http://www.yahoo.com/Computers_and_Internet/Standards/RFCs/
+
+The RFC implemented in this distribution are
+
+Net::FTP RFC959 File Transfer Protocol
+Net::SMTP RFC821 Simple Mail Transfer Protocol
+Net::Time RFC867 Daytime Protocol
+Net::Time RFC868 Time Protocol
+Net::NNTP RFC977 Network News Transfer Protocol
+Net::POP3 RFC1939 Post Office Protocol 3
+
+AVAILABILITY
+
+The latest version of libnet is available from the Comprehensive Perl
+Archive Network (CPAN). To find a CPAN site near you see:
+
+ http://search.cpan.org/~gbarr/libnet/
+
+The subversion source repository can be browsed at
+
+ http://svn.goingon.net/viewvc/libnet/
+
+If you have a subversion client, then you can checkout the latest code with
+
+ svn co http://svn.goingon.net/repos/libnet/trunk libnet
+
+INSTALLATION
+
+In order to use this package you will need Perl version 5.002 or
+better. You install libnet, as you would install any perl module
+library, by running these commands:
+
+ perl Makefile.PL
+ make
+ make test
+ make install
+
+If you want to install a private copy of libnet in your home
+directory, then you should try to produce the initial Makefile with
+something like this command:
+
+ perl Makefile.PL PREFIX=~/perl
+
+
+The Makefile.PL program will start out by checking your perl
+installation for a few packages that are recommended to be installed
+together with libnet. These packages should be available on CPAN
+(described above).
+
+CONFIGURE
+
+Normally when perl Makefile.PL is run it will run Configure which will
+ask some questions about your system. The results of these questions
+will be stored in a file called libnet.cfg which will be installed
+alongside the other perl modules in this distribution. The Makefile.PL
+will run Configure in an interactive mode unless these exists a file
+called libnet.cfg in the build directory.
+
+If you are on a system which cannot run this script you can create an
+empty file to make Makefile.PL skip running Configure. If you want to
+keep your existing settings and not run interactivly the simple run
+
+ Configure -d
+
+before running the Makefile.PL.
+
+DOCUMENTATION
+
+See ChangeLog for recent changes. POD style documentation is included
+in all modules and scripts. These are normally converted to manual
+pages and installed as part of the "make install" process. You should
+also be able to use the 'perldoc' utility to extract documentation from
+the module files directly.
+
+DEMOS
+
+The demos directory does contain a few demo scripts. These should be
+run from the top directory like
+
+ demos/smtp.self -user my-email-address -debug
+
+However I do not guarantee these scripts to work.
+
+SUPPORT
+
+Questions about how to use this library should be directed to the
+comp.lang.perl.modules USENET Newsgroup. Bug reports and suggestions
+for improvements can be sent to me at <[EMAIL PROTECTED]>.
+
+Most of the modules in this library have an option to output a debug
+transcript to STDERR. When reporting bugs/problems please, if possible,
+include a transcript of a run.
+
+COPYRIGHT
+
+ (C) 1996-2007 Graham Barr. All rights reserved.
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+Share and Enjoy!
End of Patch.