r19583 - in /branches/upstream/libdata-types-perl/current: Build.PL Changes META.yml README lib/Data/Types.pm t/zpod.t

rmayorga-guest at users.alioth.debian.org rmayorga-guest at users.alioth.debian.org
Wed May 7 05:48:50 UTC 2008


Author: rmayorga-guest
Date: Wed May  7 05:48:49 2008
New Revision: 19583

URL: http://svn.debian.org/wsvn/?sc=1&rev=19583
Log:
[svn-upgrade] Integrating new upstream version, libdata-types-perl (0.08)

Modified:
    branches/upstream/libdata-types-perl/current/Build.PL
    branches/upstream/libdata-types-perl/current/Changes
    branches/upstream/libdata-types-perl/current/META.yml
    branches/upstream/libdata-types-perl/current/README
    branches/upstream/libdata-types-perl/current/lib/Data/Types.pm
    branches/upstream/libdata-types-perl/current/t/zpod.t

Modified: branches/upstream/libdata-types-perl/current/Build.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libdata-types-perl/current/Build.PL?rev=19583&op=diff
==============================================================================
--- branches/upstream/libdata-types-perl/current/Build.PL (original)
+++ branches/upstream/libdata-types-perl/current/Build.PL Wed May  7 05:48:49 2008
@@ -4,11 +4,11 @@
     module_name        => 'Data::Types',
     license            => 'perl',
     create_makefile_pl => 'passthrough',
-    configure_requires => {
+    configure_requires => { 'Module::Build' => '0.2701' },
+    recommends         => { 'Test::Pod'     => '1.20'   },
+    build_requires     => {
         'Module::Build' => '0.2701',
-    },
-    build_requires     => {
-        'Test::Simple'  => '0.17'
+        'Test::More'    => '0.17',
     },
 );
 $build->create_build_script;

Modified: branches/upstream/libdata-types-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libdata-types-perl/current/Changes?rev=19583&op=diff
==============================================================================
--- branches/upstream/libdata-types-perl/current/Changes (original)
+++ branches/upstream/libdata-types-perl/current/Changes Wed May  7 05:48:49 2008
@@ -1,4 +1,11 @@
 Revision history for Perl extension Data::Types.
+
+0.08  2008-05-05T19:01:10
+       - Added Test::Pod to the "recommends" parameter in Build.PL.
+       - Added Module::Build to the "build_requires" parameter in Build.PL.
+       - Updated copyright.
+       - Added a link to the Subversion repository.
+       - Updated the POD test to take advantage of Test::Pod 1.20 or later.
 
 0.07  2008-01-22T18:27:22
        - Added Module::Build to the "configure_requires" parameter in

Modified: branches/upstream/libdata-types-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libdata-types-perl/current/META.yml?rev=19583&op=diff
==============================================================================
--- branches/upstream/libdata-types-perl/current/META.yml (original)
+++ branches/upstream/libdata-types-perl/current/META.yml Wed May  7 05:48:49 2008
@@ -1,6 +1,6 @@
 ---
 name: Data-Types
-version: 0.07
+version: 0.08
 author:
   - 'David Wheeler <david at kineticode.com>'
 abstract: Validate and convert data types.
@@ -10,11 +10,14 @@
 configure_requires:
   Module::Build: 0.2701
 build_requires:
-  Test::Simple: 0.17
+  Module::Build: 0.2701
+  Test::More: 0.17
+recommends:
+  Test::Pod: 1.20
 provides:
   Data::Types:
     file: lib/Data/Types.pm
-    version: 0.07
+    version: 0.08
 generated_by: Module::Build version 0.280801
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.2.html

Modified: branches/upstream/libdata-types-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/libdata-types-perl/current/README?rev=19583&op=diff
==============================================================================
--- branches/upstream/libdata-types-perl/current/README (original)
+++ branches/upstream/libdata-types-perl/current/README Wed May  7 05:48:49 2008
@@ -1,4 +1,4 @@
-Data/Types version 0.07
+Data/Types version 0.08
 =======================
 
 This module exports a number of functions that are useful for validating and
@@ -28,7 +28,7 @@
 
 COPYRIGHT AND LICENCE
 
-Copyright (c) 2002-2006, David Wheeler. All Rights Reserved.
+Copyright (c) 2002-2008, David Wheeler. Some Rights Reserved.
 
-This module is free software; you can redistribute it and/or modify it under the
-same terms as Perl itself.
+This module is free software; you can redistribute it and/or modify it under
+the same terms as Perl itself.

Modified: branches/upstream/libdata-types-perl/current/lib/Data/Types.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libdata-types-perl/current/lib/Data/Types.pm?rev=19583&op=diff
==============================================================================
--- branches/upstream/libdata-types-perl/current/lib/Data/Types.pm (original)
+++ branches/upstream/libdata-types-perl/current/lib/Data/Types.pm Wed May  7 05:48:49 2008
@@ -4,7 +4,7 @@
 require Exporter;
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 
-$VERSION = '0.07';
+$VERSION = '0.08';
 
 @ISA = qw(Exporter);
 
@@ -406,9 +406,14 @@
   $string = to_string(undef);      # Returns undef.
   $string = to_string('hello', 4); # Returns 'hell'.
 
-=head1 BUGS
-
-Please send bug reports to <bug-data-types at rt.cpan.org>.
+=head1 SUPPORT
+
+This module is stored in an open repository at the following address:
+
+L<https://svn.kineticode.com/Data-Types/trunk/>
+
+Patches against Data::Types are welcome. Please send bug reports to
+<bug-data-types at rt.cpan.org>.
 
 =head1 AUTHOR
 
@@ -434,7 +439,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2002-2006, David Wheeler. All Rights Reserved.
+Copyright (c) 2002-2008, David Wheeler. Some Rights Reserved.
 
 This module is free software; you can redistribute it and/or modify it under the
 same terms as Perl itself.

Modified: branches/upstream/libdata-types-perl/current/t/zpod.t
URL: http://svn.debian.org/wsvn/branches/upstream/libdata-types-perl/current/t/zpod.t?rev=19583&op=diff
==============================================================================
--- branches/upstream/libdata-types-perl/current/t/zpod.t (original)
+++ branches/upstream/libdata-types-perl/current/t/zpod.t Wed May  7 05:48:49 2008
@@ -1,23 +1,9 @@
 #!perl -w
 
-# $Id: zpod.t 682 2004-09-28 05:59:10Z theory $
+# $Id: zpod.t 3791 2008-05-05 18:57:16Z david $
 
+use strict;
 use Test::More;
-use File::Spec;
-use File::Find;
-use strict;
-
-eval "use Test::Pod 0.95";
-
-if ($@) {
-    plan skip_all => "Test::Pod v0.95 required for testing POD";
-} else {
-    Test::Pod->import;
-    my @files;
-    my $blib = File::Spec->catfile(qw(blib lib));
-    find( sub {push @files, $File::Find::name if /\.p(l|m|od)$/}, $blib);
-    plan tests => scalar @files;
-    foreach my $file (@files) {
-        pod_file_ok($file);
-    }
-}
+eval 'use Test::Pod 1.20';
+plan skip_all => 'Test::Pod 1.20 required for testing POD' if $@;
+all_pod_files_ok(all_pod_files('bin', 'lib'));




More information about the Pkg-perl-cvs-commits mailing list