r63272 - in /branches/upstream/libstatistics-basic-perl/current: Basic.pm Basic/Covariance.pm Changes META.yml Makefile.PL t/critic.t t/pod.t t/pod_coverage.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Oct 3 22:39:59 UTC 2010


Author: jawnsy-guest
Date: Sun Oct  3 22:39:54 2010
New Revision: 63272

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=63272
Log:
[svn-upgrade] new version libstatistics-basic-perl (1.6602)

Modified:
    branches/upstream/libstatistics-basic-perl/current/Basic.pm
    branches/upstream/libstatistics-basic-perl/current/Basic/Covariance.pm
    branches/upstream/libstatistics-basic-perl/current/Changes
    branches/upstream/libstatistics-basic-perl/current/META.yml
    branches/upstream/libstatistics-basic-perl/current/Makefile.PL
    branches/upstream/libstatistics-basic-perl/current/t/critic.t
    branches/upstream/libstatistics-basic-perl/current/t/pod.t
    branches/upstream/libstatistics-basic-perl/current/t/pod_coverage.t

Modified: branches/upstream/libstatistics-basic-perl/current/Basic.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstatistics-basic-perl/current/Basic.pm?rev=63272&op=diff
==============================================================================
--- branches/upstream/libstatistics-basic-perl/current/Basic.pm (original)
+++ branches/upstream/libstatistics-basic-perl/current/Basic.pm Sun Oct  3 22:39:54 2010
@@ -7,7 +7,7 @@
 
 use Number::Format;
 
-our $VERSION = '1.6601';
+our $VERSION = '1.6602';
 our $fmt = new Number::Format;
 
 our( $NOFILL, $DEBUG, $IPRES, $TOLER, $UNBIAS );

Modified: branches/upstream/libstatistics-basic-perl/current/Basic/Covariance.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstatistics-basic-perl/current/Basic/Covariance.pm?rev=63272&op=diff
==============================================================================
--- branches/upstream/libstatistics-basic-perl/current/Basic/Covariance.pm (original)
+++ branches/upstream/libstatistics-basic-perl/current/Basic/Covariance.pm Sun Oct  3 22:39:54 2010
@@ -18,7 +18,7 @@
     my $c = $v1->_get_linked_computer( covariance => $v2 );
     return $c if $c;
 
-    my $this = bless {v1=>$v1, v2=>$v2}, $class; ## no critic: false, this is not comma separated statements, wtf?
+    my $this = bless({'v1'=>$v1, 'v2'=>$v2}, $class);
     warn "[new " . ref($this) . " v1:$this->{v1} v2:$this->{v2}]\n" if $Statistics::Basic::DEBUG >= 2;
 
     $this->{_vectors} = [ $v1, $v2 ];

Modified: branches/upstream/libstatistics-basic-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstatistics-basic-perl/current/Changes?rev=63272&op=diff
==============================================================================
--- branches/upstream/libstatistics-basic-perl/current/Changes (original)
+++ branches/upstream/libstatistics-basic-perl/current/Changes Sun Oct  3 22:39:54 2010
@@ -1,3 +1,7 @@
+1.6602: Thu Sep 30 2010
+   - changes to make this work again in 5.6.x
+     (hint provided by Jerome Provensal)
+
 1.6601: Sat Sep 12 2009
    - The debian build devs set TEST_AUTHOR, then created a bug
      report concerning the results.  First things first, make it

Modified: branches/upstream/libstatistics-basic-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstatistics-basic-perl/current/META.yml?rev=63272&op=diff
==============================================================================
--- branches/upstream/libstatistics-basic-perl/current/META.yml (original)
+++ branches/upstream/libstatistics-basic-perl/current/META.yml Sun Oct  3 22:39:54 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Statistics-Basic
-version:            1.6601
+version:            1.6602
 abstract:           ~
 author:  []
 license:            LGPL
@@ -10,7 +10,7 @@
 build_requires:
     ExtUtils::MakeMaker:  0
 requires:
-    Number::Format:  1.61
+    Number::Format:  1.42
     perl:            5.006
     Scalar::Util:    0
 resources:
@@ -19,7 +19,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.54
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: branches/upstream/libstatistics-basic-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstatistics-basic-perl/current/Makefile.PL?rev=63272&op=diff
==============================================================================
--- branches/upstream/libstatistics-basic-perl/current/Makefile.PL (original)
+++ branches/upstream/libstatistics-basic-perl/current/Makefile.PL Sun Oct  3 22:39:54 2010
@@ -4,13 +4,9 @@
 use warnings;
 
 my @v = eval {
-    my $b = bless {v1=>1, v2=>2}, "blarg";
+    my $b = bless {'v1'=>1, 'v2'=>2}, "blarg";
     return keys %$b;
 };
-
-die "Your perl ($]) has a terrible bug in bless().  Please upgrade it."
-   unless 2 == grep {m/v[12]/} @v;
-
 
 use ExtUtils::MakeMaker;
 
@@ -19,7 +15,7 @@
     'VERSION_FROM'  => 'Basic.pm',
 
     'PREREQ_PM'     => { 
-        'Number::Format' => 1.61, # it's kinda silly to allow 5.6.x since 1.61 requires 5.8, but what can ya do
+        'Number::Format' => 1.42,
         'Scalar::Util'   => 0,
     },
 

Modified: branches/upstream/libstatistics-basic-perl/current/t/critic.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstatistics-basic-perl/current/t/critic.t?rev=63272&op=diff
==============================================================================
--- branches/upstream/libstatistics-basic-perl/current/t/critic.t (original)
+++ branches/upstream/libstatistics-basic-perl/current/t/critic.t Sun Oct  3 22:39:54 2010
@@ -2,6 +2,8 @@
 use strict;
 use Test::More;
 use File::Spec;
+
+no warnings;
 
 # NOTE: please do not blame me for suggetions from this test.  Do not set
 # TEST_AUTHOR and then tell me about it.  Use test at your own risk.

Modified: branches/upstream/libstatistics-basic-perl/current/t/pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstatistics-basic-perl/current/t/pod.t?rev=63272&op=diff
==============================================================================
--- branches/upstream/libstatistics-basic-perl/current/t/pod.t (original)
+++ branches/upstream/libstatistics-basic-perl/current/t/pod.t Sun Oct  3 22:39:54 2010
@@ -1,6 +1,7 @@
 #!/usr/bin/perl -w
 use strict;
 use Test::More;
+no warnings;
 
 # NOTE: please do not blame me for suggetions from this test.  Do not set
 # TEST_AUTHOR and then tell me about it.  Use test at your own risk.

Modified: branches/upstream/libstatistics-basic-perl/current/t/pod_coverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstatistics-basic-perl/current/t/pod_coverage.t?rev=63272&op=diff
==============================================================================
--- branches/upstream/libstatistics-basic-perl/current/t/pod_coverage.t (original)
+++ branches/upstream/libstatistics-basic-perl/current/t/pod_coverage.t Sun Oct  3 22:39:54 2010
@@ -1,7 +1,8 @@
 #!/usr/bin/perl -w
+
 use strict;
-
 use Test::More;
+no warnings;
 
 # NOTE: please do not blame me for suggetions from this test.  Do not set
 # TEST_AUTHOR and then tell me about it.  Use test at your own risk.




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