Changeset 32529 for lang/perl/UUID-Generator-PurePerl
- Timestamp:
- 04/17/09 16:00:45 (4 years ago)
- Location:
- lang/perl/UUID-Generator-PurePerl/trunk
- Files:
-
- 5 modified
-
Changes (modified) (1 diff)
-
Makefile.PL (modified) (2 diffs)
-
lib/UUID/Generator/PurePerl.pm (modified) (1 diff)
-
lib/UUID/Generator/PurePerl/Compat.pm (modified) (1 diff)
-
lib/UUID/Generator/PurePerl/Util.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/UUID-Generator-PurePerl/trunk/Changes
r32332 r32529 1 1 Revision history for Perl extension UUID::Generator::PurePerl 2 2 3 0.04 Mon Apr 13 11:00:00 JST 2009 3 0.04_01 Mon Apr 13 11:00:00 JST 2009 4 - changed the way to inherit Exporter's import() method 5 (to deal with Exporter prior to version 5.57) 6 7 0.04 Mon Apr 13 11:00:00 JST 2009 4 8 - modified t/31_compat for processor's endian consideration 5 9 (binary and base64 represenation on Data::UUID depend on endian) 6 10 - wrote POD of UUID::Generator::PurePerl::Compat 7 11 8 0.03 Fri Apr 10 10:10:00 JST 200912 0.03 Fri Apr 10 10:10:00 JST 2009 9 13 - modified t/32_compat_du to check Data::UUID version >= 1.200 10 14 (Data::UUID < 1.200 has wrong MD5 implementation) 11 15 - changed required Perl version down to 5.006 12 16 13 0.02 Wed Apr 08 13:40:00 JST 200917 0.02 Wed Apr 08 13:40:00 JST 2009 14 18 - modified t/23_v3 test not to use Data::UUID, 15 19 to use pre-calculated parameters. 16 20 (to figure out problems on x86_64 architecture) 17 21 18 0.01 Tue Apr 07 12:00:00 JST 200922 0.01 Tue Apr 07 12:00:00 JST 2009 19 23 - original version 20 24 -
lang/perl/UUID-Generator-PurePerl/trunk/Makefile.PL
r32056 r32529 4 4 all_from 'lib/UUID/Generator/PurePerl.pm'; 5 5 6 requires 'Exporter' => 5.562; 6 7 requires 'Carp' => 0; 7 8 requires 'Time::HiRes' => 1.20; … … 11 12 recommends 'Digest::SHA' => 5.32; 12 13 13 requires 'UUID::Object' => 0.0 1;14 requires 'UUID::Object' => 0.04; 14 15 15 16 use FindBin; -
lang/perl/UUID-Generator-PurePerl/trunk/lib/UUID/Generator/PurePerl.pm
r32332 r32529 5 5 use 5.006; 6 6 7 our $VERSION = '0.04 ';7 our $VERSION = '0.04_01'; 8 8 9 9 use Carp; -
lang/perl/UUID-Generator-PurePerl/trunk/lib/UUID/Generator/PurePerl/Compat.pm
r32332 r32529 4 4 use warnings; 5 5 6 our $VERSION = '0.02'; 7 8 use Exporter 'import'; 6 our $VERSION = '0.02_01'; 7 8 use Exporter; 9 *import = \&Exporter::import; 9 10 10 11 our @EXPORT = qw( NameSpace_DNS NameSpace_URL NameSpace_OID NameSpace_X500 ); -
lang/perl/UUID-Generator-PurePerl/trunk/lib/UUID/Generator/PurePerl/Util.pm
r32332 r32529 4 4 use warnings; 5 5 6 use Exporter 'import'; 6 use Exporter; 7 *import = \&Exporter::import; 7 8 8 9 our @EXPORT = qw( digest_as_octets digest_as_32bit digest_as_16bit );
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)