r60920 - in /trunk/libscalar-string-perl: ./ debian/ debian/source/ lib/Scalar/ t/

angelabad-guest at users.alioth.debian.org angelabad-guest at users.alioth.debian.org
Fri Jul 30 09:44:54 UTC 2010


Author: angelabad-guest
Date: Fri Jul 30 09:44:45 2010
New Revision: 60920

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=60920
Log:
New upstream release 0.001

Added:
    trunk/libscalar-string-perl/debian/source/
    trunk/libscalar-string-perl/debian/source/format
    trunk/libscalar-string-perl/t/pod_cvg_pp.t
      - copied unchanged from r60918, branches/upstream/libscalar-string-perl/current/t/pod_cvg_pp.t
Removed:
    trunk/libscalar-string-perl/debian/libscalar-string-perl.docs
Modified:
    trunk/libscalar-string-perl/.cvsignore
    trunk/libscalar-string-perl/Build.PL
    trunk/libscalar-string-perl/Changes
    trunk/libscalar-string-perl/MANIFEST
    trunk/libscalar-string-perl/META.yml
    trunk/libscalar-string-perl/Makefile.PL
    trunk/libscalar-string-perl/README
    trunk/libscalar-string-perl/SIGNATURE
    trunk/libscalar-string-perl/debian/changelog
    trunk/libscalar-string-perl/debian/control
    trunk/libscalar-string-perl/debian/copyright
    trunk/libscalar-string-perl/lib/Scalar/String.pm
    trunk/libscalar-string-perl/lib/Scalar/String.xs
    trunk/libscalar-string-perl/t/pod_cvg.t
    trunk/libscalar-string-perl/t/pod_syn.t

Modified: trunk/libscalar-string-perl/.cvsignore
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/.cvsignore?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/.cvsignore (original)
+++ trunk/libscalar-string-perl/.cvsignore Fri Jul 30 09:44:45 2010
@@ -1,4 +1,4 @@
 Build Makefile
 _build blib
-META.yml Makefile.PL SIGNATURE
+META.yml MYMETA.yml Makefile.PL SIGNATURE
 Scalar-String-*

Modified: trunk/libscalar-string-perl/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/Build.PL?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/Build.PL (original)
+++ trunk/libscalar-string-perl/Build.PL Fri Jul 30 09:44:45 2010
@@ -1,3 +1,4 @@
+{ use 5.006; }
 use warnings;
 use strict;
 
@@ -34,8 +35,16 @@
 	}
 })->new(
 	module_name => "Scalar::String",
-	dist_version => "0.000",
 	license => "perl",
+	configure_requires => {
+		"Module::Build" => 0,
+		"perl" => "5.006",
+		"strict" => 0,
+		"warnings" => 0,
+	},
+	configure_recommends => {
+		"ExtUtils::CBuilder" => "0.15",
+	},
 	build_requires => {
 		"Module::Build" => 0,
 		"Test::More" => 0,
@@ -51,6 +60,7 @@
 		"Exporter" => 0,
 		"bytes" => 0,
 		"if" => 0,
+		"parent" => 0,
 		"perl" => "5.006",
 		"strict" => 0,
 		"utf8" => 0,
@@ -59,10 +69,11 @@
 	recommends => {
 		"XSLoader" => 0,
 	},
+	needs_compiler => 0,
 	dynamic_config => 1,
 	meta_add => { distribution_type => "module" },
 	create_makefile_pl => "passthrough",
 	sign => 1,
 )->create_build_script;
 
-exit 0;
+1;

Modified: trunk/libscalar-string-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/Changes?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/Changes (original)
+++ trunk/libscalar-string-perl/Changes Fri Jul 30 09:44:45 2010
@@ -1,3 +1,30 @@
+version 0.001; 2010-07-29
+
+  * in documentation, correct the word "numericness" to "stringness"
+
+  * make all numeric comparisons against $] stringify it first, to avoid
+    architecture-dependent problems with floating point rounding giving
+    it an unexpected numeric value
+
+  * in XS, use PERL_NO_GET_CONTEXT for efficiency
+
+  * use simpler "parent" pragma in place of "base"
+
+  * check for required Perl version at runtime
+
+  * use full stricture in test suite
+
+  * also test POD coverage of pure Perl implementation
+
+  * in Build.PL, explicitly set needs_compiler to avoid bogus
+    auto-dependency on ExtUtils::CBuilder
+
+  * in Build.PL, explicitly declare configure-time requirements
+
+  * remove bogus "exit 0" from Build.PL
+
+  * add MYMETA.yml to .cvsignore
+
 version 0.000; 2009-03-14
 
   * initial released version

Modified: trunk/libscalar-string-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/MANIFEST?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/MANIFEST (original)
+++ trunk/libscalar-string-perl/MANIFEST Fri Jul 30 09:44:45 2010
@@ -11,6 +11,7 @@
 t/grade.t
 t/grade_pp.t
 t/pod_cvg.t
+t/pod_cvg_pp.t
 t/pod_syn.t
 t/setup_pp.pl
 SIGNATURE    Added here by Module::Build

Modified: trunk/libscalar-string-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/META.yml?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/META.yml (original)
+++ trunk/libscalar-string-perl/META.yml Fri Jul 30 09:44:45 2010
@@ -1,36 +1,42 @@
 ---
-name: Scalar-String
-version: 0.000
+abstract: 'string aspects of scalars'
 author:
   - 'Andrew Main (Zefram) <zefram at fysh.org>'
-abstract: string aspects of scalars
-license: perl
-resources:
-  license: ~
-requires:
-  Carp: 0
-  Exporter: 0
-  bytes: 0
-  if: 0
-  perl: 5.006
-  strict: 0
-  utf8: 0
-  warnings: 0
 build_requires:
   Module::Build: 0
   Test::More: 0
   perl: 5.006
   strict: 0
   warnings: 0
-recommends:
-  XSLoader: 0
+configure_requires:
+  Module::Build: 0
+  perl: 5.006
+  strict: 0
+  warnings: 0
+distribution_type: module
 dynamic_config: 1
+generated_by: 'Module::Build version 0.3607'
+license: perl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: Scalar-String
 provides:
   Scalar::String:
     file: lib/Scalar/String.pm
-    version: 0.000
-generated_by: Module::Build version 0.31012
-meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.2.html
-  version: 1.2
-distribution_type: module
+    version: 0.001
+recommends:
+  XSLoader: 0
+requires:
+  Carp: 0
+  Exporter: 0
+  bytes: 0
+  if: 0
+  parent: 0
+  perl: 5.006
+  strict: 0
+  utf8: 0
+  warnings: 0
+resources:
+  license: http://dev.perl.org/licenses/
+version: 0.001

Modified: trunk/libscalar-string-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/Makefile.PL?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/Makefile.PL (original)
+++ trunk/libscalar-string-perl/Makefile.PL Fri Jul 30 09:44:45 2010
@@ -1,32 +1,35 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.31012
+# Note: this file was auto-generated by Module::Build::Compat version 0.3607
 require 5.006;
-    
+
     unless (eval "use Module::Build::Compat 0.02; 1" ) {
       print "This module requires Module::Build to install itself.\n";
-      
+
       require ExtUtils::MakeMaker;
       my $yn = ExtUtils::MakeMaker::prompt
 	('  Install Module::Build now from CPAN?', 'y');
-      
+
       unless ($yn =~ /^y/i) {
 	die " *** Cannot install without Module::Build.  Exiting ...\n";
       }
-      
+
       require Cwd;
       require File::Spec;
       require CPAN;
-      
+
       # Save this 'cause CPAN will chdir all over the place.
       my $cwd = Cwd::cwd();
-      
+
       CPAN::Shell->install('Module::Build::Compat');
       CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate
 	or die "Couldn't install Module::Build, giving up.\n";
-      
+
       chdir $cwd or die "Cannot chdir() back to $cwd: $!";
     }
     eval "use Module::Build::Compat 0.02; 1" or die $@;
     use lib '_build/lib';
     Module::Build::Compat->run_build_pl(args => \@ARGV);
+    my $build_script = 'Build';
+    $build_script .= '.com' if $^O eq 'VMS';
+    exit(0) unless(-e $build_script); # cpantesters convention
     require MyModuleBuilder;
     Module::Build::Compat->write_makefile(build_class => 'MyModuleBuilder');

Modified: trunk/libscalar-string-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/README?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/README (original)
+++ trunk/libscalar-string-perl/README Fri Jul 30 09:44:45 2010
@@ -30,7 +30,7 @@
 
 COPYRIGHT
 
-Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>
+Copyright (C) 2009, 2010 Andrew Main (Zefram) <zefram at fysh.org>
 
 LICENSE
 

Modified: trunk/libscalar-string-perl/SIGNATURE
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/SIGNATURE?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/SIGNATURE (original)
+++ trunk/libscalar-string-perl/SIGNATURE Fri Jul 30 09:44:45 2010
@@ -1,5 +1,5 @@
 This file contains message digests of all files listed in MANIFEST,
-signed via the Module::Signature module, version 0.55.
+signed via the Module::Signature module, version 0.64.
 
 To verify the content in this distribution, first make sure you have
 Module::Signature installed, then type:
@@ -14,25 +14,26 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-SHA1 b9cd58d655c5a3be5afea489693de1c552e5c121 .cvsignore
-SHA1 6bac6cb17478948e5adf1a378e8330df9ca75a75 Build.PL
-SHA1 d909d5b32a724160d9b83320fc9480c47134993e Changes
-SHA1 3f24f271d9105fa257dc0ac9773fa57361d0f758 MANIFEST
-SHA1 5c1c0afbc22a47fd9fdb2618b03da4cc2619220d META.yml
-SHA1 684ab827ae5405876abe203f5a032ffa6b575cf7 Makefile.PL
-SHA1 0cd2fd8904b7ff2cba07611af5540c3499dc2478 README
+SHA1 b96cd131fbf5526aa54457b5d0f51f8561c6962b .cvsignore
+SHA1 69644b6e77995e79f0ca7a6813a6ea8115adba30 Build.PL
+SHA1 f5ecc7bd84f5fd4803b28c6ac612f296adb280d4 Changes
+SHA1 7a1ba06fdfa4df47fedcf721214ef884905db6d8 MANIFEST
+SHA1 d72601742d5d4a533a7c550bd20173f7ee036e6c META.yml
+SHA1 0f1b3b6269550b5135e10b3cae1b6b41d274b276 Makefile.PL
+SHA1 226420051128bf02b8a2cc3669d45b09c108a362 README
 SHA1 c185a100351b2eb6d840b8ff2ce73c96d154f6a6 lib/Scalar/.cvsignore
-SHA1 9ee6d64702351d9bc817512a76e4a665d7081b66 lib/Scalar/String.pm
-SHA1 3733dbf8563677e245f0cc0d99ed01c80a81b6bd lib/Scalar/String.xs
+SHA1 4497dae28705d76e296cd555780c265589626a95 lib/Scalar/String.pm
+SHA1 1a90ca842ca222db2ef68fa4ae00fecb7905086a lib/Scalar/String.xs
 SHA1 f36c5928277d92e38d3eb240221dfcfcc6d51cce t/grade.t
 SHA1 438cb548ab97eede0c7f70604f2a33ac4990af10 t/grade_pp.t
-SHA1 0e141eecf3ca4903ef38d9413b5403a9ddb0392f t/pod_cvg.t
-SHA1 74a957cd8b93f25672ecc6aa578a671d084dd343 t/pod_syn.t
+SHA1 904d9a4f76525e2303e4b0c168c68230f223c8de t/pod_cvg.t
+SHA1 3f447b1d0b8a6247c3a311087f8d66da1c3ca5db t/pod_cvg_pp.t
+SHA1 65c75abdef6f01a5d1588a307f2ddfe2333dc961 t/pod_syn.t
 SHA1 3794f0f035dbf2532d7cdd8ab52c8dd3188425ad t/setup_pp.pl
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.9 (GNU/Linux)
 
-iEYEARECAAYFAkm7qxcACgkQOV9mt2VyAVEuewCfcVd6heZuhHMhjnCLw8OoUBfb
-K+kAnikkG7ccO/xXdlsyEK4g+gxkzX+h
-=hBlS
+iEYEARECAAYFAkxR76kACgkQOV9mt2VyAVEFvACeOTV4o9Xdr8xpVD8sNzikzEoe
+IXcAoKmkcUNWLP7EJBsrKV1uZ/6ELlzT
+=y0YE
 -----END PGP SIGNATURE-----

Modified: trunk/libscalar-string-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/debian/changelog?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/debian/changelog (original)
+++ trunk/libscalar-string-perl/debian/changelog Fri Jul 30 09:44:45 2010
@@ -1,3 +1,19 @@
+libscalar-string-perl (0.001-1) UNRELEASED; urgency=low
+
+  * New upstream release
+  * Add myself to Uploaders
+  * debian/control:
+    - Add libtest-pod-coverage-perl, libtest-pod-perl and
+      perl (>= 5.10.1) | libparent-perl to B-D
+    - Add perl (>= 5.10.1) | libparent-perl to Depends
+  * debian/libscalar-string-perl.docs: Remove file, it has only
+    install instructions
+  * Update copyright file
+  * Standards-Version 3.9.1
+  * Switch to dpkg-source format 3.0 (quilt)
+
+ -- Angel Abad <angelabad at gmail.com>  Fri, 30 Jul 2010 11:40:02 +0200
+
 libscalar-string-perl (0.000-2) unstable; urgency=low
 
   * Take over for the Debian Perl Group

Modified: trunk/libscalar-string-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/debian/control?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/debian/control (original)
+++ trunk/libscalar-string-perl/debian/control Fri Jul 30 09:44:45 2010
@@ -1,17 +1,19 @@
 Source: libscalar-string-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7.0.17), perl, perl (>= 5.10) | libmodule-build-perl
+Build-Depends: debhelper (>= 7.0.17), perl, perl (>= 5.10) | libmodule-build-perl,
+ perl (>= 5.10.1) | libparent-perl, libtest-pod-coverage-perl, libtest-pod-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Ivan Kohler <ivan-debian at 420.am>
-Standards-Version: 3.8.4
+Uploaders: Ivan Kohler <ivan-debian at 420.am>, Angel Abad <angelabad at gmail.com>
+Standards-Version: 3.9.1
 Homepage: http://search.cpan.org/dist/Scalar-String/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libscalar-string-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libscalar-string-perl/
 
 Package: libscalar-string-perl
 Architecture: any
-Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}
+Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends},
+ perl (>= 5.10.1) | libparent-perl
 Description: Perl module concerning the string aspects of scalars
  Scalar::String is about the string part of plain Perl scalars. A scalar has a
  string value, which is notionally a sequence of Unicode codepoints, but may

Modified: trunk/libscalar-string-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/debian/copyright?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/debian/copyright (original)
+++ trunk/libscalar-string-perl/debian/copyright Fri Jul 30 09:44:45 2010
@@ -1,28 +1,29 @@
-Format-Specification:
-    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
-Upstream-Maintainer: Andrew Main (Zefram) <zefram at fysh.org>
-Upstream-Source: http://search.cpan.org/dist/Scalar-String/
-Upstream-Name: Scalar-String
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Andrew Main (Zefram) <zefram at fysh.org>
+Source: http://search.cpan.org/dist/Scalar-String/
+Name: Scalar-String
 
 Files: *
-Copyright: Andrew Main (Zefram) <zefram at fysh.org>
-License-Alias: Perl
-License: Artistic | GPL-1+
+Copyright: 2009, 2010, Andrew Main (Zefram) <zefram at fysh.org>
+License: Artistic or GPL-1+
 
 Files: debian/*
-Copyright: 2009, Ivan Kohler <ivan-debian at 420.am>
-License: Artistic | GPL-1+
+Copyright: 2009, 2010, Ivan Kohler <ivan-debian at 420.am>
+ 2010, Angel Abad <angelabad at gmail.com>
+License: Artistic or GPL-1+
 
 License: Artistic
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the Artistic License, which comes with Perl.
-    On Debian GNU/Linux systems, the complete text of the Artistic License
-    can be found in `/usr/share/common-licenses/Artistic'
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian GNU/Linux systems, the complete text of the Artistic License
+ can be found in `/usr/share/common-licenses/Artistic'.
 
 License: GPL-1+
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 1, or (at your option)
-    any later version.
-    On Debian GNU/Linux systems, the complete text of the GNU General
-    Public License can be found in `/usr/share/common-licenses/GPL'
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+ .
+ On Debian GNU/Linux systems, the complete text of version 1 of the
+ General Public License can be found in `/usr/share/common-licenses/GPL-1'.

Added: trunk/libscalar-string-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/debian/source/format?rev=60920&op=file
==============================================================================
--- trunk/libscalar-string-perl/debian/source/format (added)
+++ trunk/libscalar-string-perl/debian/source/format Fri Jul 30 09:44:45 2010
@@ -1,0 +1,1 @@
+3.0 (quilt)

Modified: trunk/libscalar-string-perl/lib/Scalar/String.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/lib/Scalar/String.pm?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/lib/Scalar/String.pm (original)
+++ trunk/libscalar-string-perl/lib/Scalar/String.pm Fri Jul 30 09:44:45 2010
@@ -94,12 +94,13 @@
 
 package Scalar::String;
 
+{ use 5.006; }
 use warnings;
 use strict;
 
-our $VERSION = "0.000";
-
-use base "Exporter";
+our $VERSION = "0.001";
+
+use parent "Exporter";
 our @EXPORT_OK = qw(
 	sclstr_is_upgraded sclstr_is_downgraded
 	sclstr_upgrade_inplace sclstr_upgraded
@@ -130,14 +131,14 @@
 __DATA__
 
 use Carp qw(croak);
-BEGIN { require utf8 if $] >= 5.008; }
+BEGIN { require utf8 if "$]" >= 5.008; }
 
 =head1 FUNCTIONS
 
 Each "sclstr_" function takes one or more scalar string arguments to
 operate on.  These arguments must be strings; giving non-string arguments
 will cause mayhem.  See L<Params::Classify/is_string> for a way to
-check for numericness.  Only the string value of the scalar is used;
+check for stringness.  Only the string value of the scalar is used;
 the numeric value is completely ignored, so dualvars are not a problem.
 
 =head2 Classification
@@ -195,7 +196,7 @@
 
 sub sclstr_upgrade_inplace($);
 
-if($] >= 5.008) {
+if("$]" >= 5.008) {
 	*sclstr_upgrade_inplace = sub($) { &utf8::upgrade };
 } else {
 	# In perl 5.6, upgrade of a string can be forced by
@@ -233,7 +234,7 @@
 
 sub sclstr_downgrade_inplace($;$);
 
-if($] >= 5.008) {
+if("$]" >= 5.008) {
 	*sclstr_downgrade_inplace = sub($;$) {
 		utf8::downgrade($_[0], $_[1] || 0);
 	};
@@ -246,10 +247,10 @@
 	*sclstr_downgrade_inplace = sub($;$) {
 		return unless sclstr_is_upgraded($_[0]);
 		my ($down) = do {
-			use if $] < 5.008, "bytes";
+			use if "$]" < 5.008, "bytes";
 			$_[0] =~ /\A[\x00-\x7f\x80-\xbf\xc2\xc3]*\z/;
 		} ? do {
-			use if $] < 5.008, "utf8";
+			use if "$]" < 5.008, "utf8";
 			($_[0] =~ /\A([\x00-\xff]*)\z/);
 		} : (undef);
 		if(defined $down) {
@@ -290,7 +291,7 @@
 
 =head1 COPYRIGHT
 
-Copyright (C) 2009 Andrew Main (Zefram) <zefram at fysh.org>
+Copyright (C) 2009, 2010 Andrew Main (Zefram) <zefram at fysh.org>
 
 =head1 LICENSE
 

Modified: trunk/libscalar-string-perl/lib/Scalar/String.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/lib/Scalar/String.xs?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/lib/Scalar/String.xs (original)
+++ trunk/libscalar-string-perl/lib/Scalar/String.xs Fri Jul 30 09:44:45 2010
@@ -1,3 +1,4 @@
+#define PERL_NO_GET_CONTEXT 1
 #include "EXTERN.h"
 #include "perl.h"
 #include "XSUB.h"

Modified: trunk/libscalar-string-perl/t/pod_cvg.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/t/pod_cvg.t?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/t/pod_cvg.t (original)
+++ trunk/libscalar-string-perl/t/pod_cvg.t Fri Jul 30 09:44:45 2010
@@ -1,4 +1,9 @@
+use warnings;
+use strict;
+
 use Test::More;
 plan skip_all => "Test::Pod::Coverage not available"
 	unless eval "use Test::Pod::Coverage; 1";
 Test::Pod::Coverage::all_pod_coverage_ok();
+
+1;

Modified: trunk/libscalar-string-perl/t/pod_syn.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libscalar-string-perl/t/pod_syn.t?rev=60920&op=diff
==============================================================================
--- trunk/libscalar-string-perl/t/pod_syn.t (original)
+++ trunk/libscalar-string-perl/t/pod_syn.t Fri Jul 30 09:44:45 2010
@@ -1,3 +1,8 @@
+use warnings;
+use strict;
+
 use Test::More;
 plan skip_all => "Test::Pod not available" unless eval "use Test::Pod 1.00; 1";
 Test::Pod::all_pod_files_ok();
+
+1;




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