[Affelio-cvs 63] CVS update: affelio/tests/MLDBM-2.01

Back to archive index

Tadashi Okoshi slash****@users*****
2005年 6月 20日 (月) 00:12:27 JST


Index: affelio/tests/MLDBM-2.01/Changes
diff -u affelio/tests/MLDBM-2.01/Changes:1.1.1.1 affelio/tests/MLDBM-2.01/Changes:removed
--- affelio/tests/MLDBM-2.01/Changes:1.1.1.1	Tue Jun 14 12:53:30 2005
+++ affelio/tests/MLDBM-2.01/Changes	Mon Jun 20 00:12:26 2005
@@ -1,61 +0,0 @@
-=head1 NAME
-
-HISTORY - public release history for MLDBM
-
-=head1 DESCRIPTION
-
-=over 8
-
-=item 2.01  (07 July 2002)
-
-New testing method MLDBM::_compare($a, $b) used in t/*.t
-scripts to verify data structures are identical.  In 
-perl 5.8.0 RC2, the order of hashes changed, making the prior
-hard coded test case string comparisons invalid, so created
-this more flexible method for testing that should work in 
-future releases, without relying on specific hash ordering.
-
-=item 2.00  (10 May 1998)
-
-Added support for multiple serializing interfaces. (courtesy
-Raphael Manfredi <Raphael_Manfr****@greno*****>)
-
-Split serializer wrappers into multiple files, and regularized
-the interface some.  Underlying TIEHASH object and serializer
-can now be set at runtime (with care).
-
-Miscellaneous pod tweaks.
-
-=item 1.25  (7 December 1997)
-
-Add RemoveTaint flag.
-
-require 5.004.
-
-require Data::Dumper 2.08.
-
-=item 1.24  (29 October 1997)
-
-Version 1.23 was seriously busted, and had \r's. :-(
-
-=item 1.23  (26 July 1997)
-
-Fixes to avoid 'undefined value' messages.
-
-=item 1.22  (26 August 1996)
-
-Add EXISTS and CLEAR methods.
-
-Add a flag to control which underlying DBM is used.
-
-=item 1.21  (9 April 1996)
-
-Add flag to control which D::D method is used.
-
-=item 1.20  (16 February 1996)
-
-Earliest stable version I can remember.
-
-=back
-
-=cut
Index: affelio/tests/MLDBM-2.01/MANIFEST
diff -u affelio/tests/MLDBM-2.01/MANIFEST:1.1.1.1 affelio/tests/MLDBM-2.01/MANIFEST:removed
--- affelio/tests/MLDBM-2.01/MANIFEST:1.1.1.1	Tue Jun 14 12:53:30 2005
+++ affelio/tests/MLDBM-2.01/MANIFEST	Mon Jun 20 00:12:26 2005
@@ -1,12 +0,0 @@
-Changes
-README
-MANIFEST
-Makefile.PL
-lib/MLDBM.pm
-lib/MLDBM/Serializer/Data/Dumper.pm
-lib/MLDBM/Serializer/FreezeThaw.pm
-lib/MLDBM/Serializer/Storable.pm
-t/compare.t
-t/dumper.t
-t/freezethaw.t
-t/storable.t
Index: affelio/tests/MLDBM-2.01/Makefile.PL
diff -u affelio/tests/MLDBM-2.01/Makefile.PL:1.1.1.1 affelio/tests/MLDBM-2.01/Makefile.PL:removed
--- affelio/tests/MLDBM-2.01/Makefile.PL:1.1.1.1	Tue Jun 14 12:53:30 2005
+++ affelio/tests/MLDBM-2.01/Makefile.PL	Mon Jun 20 00:12:26 2005
@@ -1,8 +0,0 @@
-use ExtUtils::MakeMaker;
-WriteMakefile(
-              NAME => "MLDBM",
-              DISTNAME => "MLDBM",
-              VERSION_FROM => 'lib/MLDBM.pm',
-	      PREREQ_PM => { Data::Dumper => '2.08' },
-              'dist' => {COMPRESS=>'gzip -9f', SUFFIX => 'gz'}
-             );
Index: affelio/tests/MLDBM-2.01/README
diff -u affelio/tests/MLDBM-2.01/README:1.1.1.1 affelio/tests/MLDBM-2.01/README:removed
--- affelio/tests/MLDBM-2.01/README:1.1.1.1	Tue Jun 14 12:53:30 2005
+++ affelio/tests/MLDBM-2.01/README	Mon Jun 20 00:12:26 2005
@@ -1,67 +0,0 @@
-This is the README file for MLDBM, the Perl module that can 
-be used to store multidimensional hash structures in tied hashes
-(including DBM files).
-
-This is version 2.00.  It requires:
-   Perl Version 5.004 or later.
-   The Data::Dumper package from CPAN, version 2.08 or later.
-
-If you were able to install Data::Dumper with its XSUB extension, MLDBM
-will perform significantly faster.
-
-Optionally, you can also switch to other serializing packages such as
-FreezeThaw and Storable.  Storable provides much greater speeds, and the
-performance of FreezeThaw is comparable to Data::Dumper.  Support for
-this was added by Raphael Manfredi.  Many thanks!
-
-See the embedded documentation in the module for more details.
-
-As always, feedback is very welcome.
-
- - Sarathy.
-   gsar****@umich*****
-
-----------------------------------------------------------------------
-INSTALLATION
-
-You must install the Data::Dumper package first.  Optionally, you
-may want to install one or more of Storable and FreezeThaw as well.
-(Storable-0.5 @ 8 and FreezeThaw-0.3 have been tested, earlier versions
-may not work.)
-
-From the MLDBM source directory:
-
-   perl Makefile.PL
-   make test
-   make install
-
-is all that will be needed.
-
-----------------------------------------------------------------------
-CHANGES
-
-    2.01  (07 July 2002)
-	    Fixed t/*.t tests to work under perl 5.8.0 RC2
-	    The core of MLDBM was working, the tests were fixed.
-	    (courtesy of Josh Chamas)
-
-    2.00  (10 May 1998)
-            Added support for multiple serializing interfaces.
-            (courtesy Raphael Manfredi
-            <Raphael_Manfr****@greno*****>)
-
-            Split serializer wrappers into multiple files, and
-            regularized the interface some.  Underlying TIEHASH
-            object and serializer can now be set at runtime
-            (with care).
-
-            Miscellaneous pod tweaks.
-
-    1.25  (7 December 1997)
-
-            Add RemoveTaint flag.
-
-            require 5.004.
-
-            require Data::Dumper 2.08.
-


Affelio-cvs メーリングリストの案内
Back to archive index