r34894 - in /trunk/libstatistics-descriptive-perl: Build.PL Changes Descriptive.pm MANIFEST META.yml Makefile.PL README debian/changelog debian/control descr.t lib/ t/ test.pl

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Thu May 7 03:10:13 UTC 2009


Author: ryan52-guest
Date: Thu May  7 03:10:07 2009
New Revision: 34894

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=34894
Log:
* New upstream release
* Add myself to Uploaders
* Debian Policy 3.8.1

Added:
    trunk/libstatistics-descriptive-perl/Build.PL
      - copied unchanged from r34893, branches/upstream/libstatistics-descriptive-perl/current/Build.PL
    trunk/libstatistics-descriptive-perl/META.yml
      - copied unchanged from r34893, branches/upstream/libstatistics-descriptive-perl/current/META.yml
    trunk/libstatistics-descriptive-perl/lib/
      - copied from r34893, branches/upstream/libstatistics-descriptive-perl/current/lib/
    trunk/libstatistics-descriptive-perl/t/
      - copied from r34893, branches/upstream/libstatistics-descriptive-perl/current/t/
Removed:
    trunk/libstatistics-descriptive-perl/Descriptive.pm
    trunk/libstatistics-descriptive-perl/descr.t
    trunk/libstatistics-descriptive-perl/test.pl
Modified:
    trunk/libstatistics-descriptive-perl/Changes
    trunk/libstatistics-descriptive-perl/MANIFEST
    trunk/libstatistics-descriptive-perl/Makefile.PL
    trunk/libstatistics-descriptive-perl/README
    trunk/libstatistics-descriptive-perl/debian/changelog
    trunk/libstatistics-descriptive-perl/debian/control

Modified: trunk/libstatistics-descriptive-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstatistics-descriptive-perl/Changes?rev=34894&op=diff
==============================================================================
--- trunk/libstatistics-descriptive-perl/Changes (original)
+++ trunk/libstatistics-descriptive-perl/Changes Thu May  7 03:10:07 2009
@@ -1,7 +1,34 @@
 Revision history for Perl extension Statistics::Descriptive.
 
+2.7   May 03, 2009
+
+    - Converted the distribution to Build.PL and re-organized it to
+    put everything under its proper place. Started maintaining it in:
+        - http://svn.berlios.de/svnroot/repos/web-cpan/Statistics-Descriptive/
+
+    - Converted t/descr.t to use "use strict;" and "use warnings;".
+    
+    - Converted t/descr.t to use Test::More.
+
+    - Cleaned up the "use" statement of lib/Statistics/Descriptive.pm.
+
+    - Added more explicit dependencies (core, though) to Build.PL. 
+
+    - Fixed RT bug #34999: freq distribution generated too many bins.
+        - https://rt.cpan.org/Ticket/Display.html?id=34999
+
+    - Added some keywords and resources to the META.yml, using Build.PL's
+    meta_merge.
+
+    - Fixed https://rt.cpan.org/Ticket/Display.html?id=32183 
+        - more authoritative (and non-broken) link to the RFC.
+
+    - Applied the patch in https://rt.cpan.org/Ticket/Display.html?id=9160 
+        - {{#9160: Variance and Standard Deviation use costly pseudo-variance, 
+        instead of computing real variance}}.
+
 2.6   October 10, 2002
-        - Fixed caching in trimmed mean and modified code to allow trimming
+    - Fixed caching in trimmed mean and modified code to allow trimming
 	  0% from upper bound.  Formerly if 0 was requested then it used the
 	  lower bound!
 

Modified: trunk/libstatistics-descriptive-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstatistics-descriptive-perl/MANIFEST?rev=34894&op=diff
==============================================================================
--- trunk/libstatistics-descriptive-perl/MANIFEST (original)
+++ trunk/libstatistics-descriptive-perl/MANIFEST Thu May  7 03:10:07 2009
@@ -1,8 +1,13 @@
+Build.PL
 Changes
-Descriptive.pm
+lib/Statistics/Descriptive.pm
+Makefile.PL
 MANIFEST
-Makefile.PL
+META.yml
 README
-test.pl
-descr.t
+t/00-load.t
+t/descr.t
+t/freq_distribution-1-rt-34999.t
+t/pod-coverage.t
+t/pod.t
 UserSurvey.txt

Modified: trunk/libstatistics-descriptive-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstatistics-descriptive-perl/Makefile.PL?rev=34894&op=diff
==============================================================================
--- trunk/libstatistics-descriptive-perl/Makefile.PL (original)
+++ trunk/libstatistics-descriptive-perl/Makefile.PL Thu May  7 03:10:07 2009
@@ -1,11 +1,20 @@
+# Note: this file was auto-generated by Module::Build::Compat version 0.32
 use ExtUtils::MakeMaker;
-# See lib/ExtUtils/MakeMaker.pm for details of how to influence
-# the contents of the Makefile that is written.
-WriteMakefile(
-    'NAME'		=> 'Statistics::Descriptive',
-    'VERSION_FROM'	=> 'Descriptive.pm', # finds $VERSION
-    ($] >= 5.005 ?
-      ('ABSTRACT'   	=> 'Supplies statistical methods for perl5',
-       'AUTHOR'     	=> 'Colin Kuskie (ckuskie at cadence.com)') : ()),
-    'dist'		=> { COMPRESS => "gzip -9f" }
-);
+WriteMakefile
+(
+          'NAME' => 'Statistics::Descriptive',
+          'VERSION_FROM' => 'lib/Statistics/Descriptive.pm',
+          'PREREQ_PM' => {
+                           'Benchmark' => 0,
+                           'Carp' => 0,
+                           'POSIX' => 0,
+                           'Test::More' => 0,
+                           'strict' => 0,
+                           'vars' => 0,
+                           'warnings' => 0
+                         },
+          'INSTALLDIRS' => 'site',
+          'EXE_FILES' => [],
+          'PL_FILES' => {}
+        )
+;

Modified: trunk/libstatistics-descriptive-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstatistics-descriptive-perl/README?rev=34894&op=diff
==============================================================================
--- trunk/libstatistics-descriptive-perl/README (original)
+++ trunk/libstatistics-descriptive-perl/README Thu May  7 03:10:07 2009
@@ -1,3 +1,42 @@
+INSTALLATION
+
+To install this module, run the following commands:
+
+	perl Build.PL
+	./Build
+	./Build test
+	./Build install
+
+SUPPORT AND DOCUMENTATION
+
+After installing, you can find documentation for this module with the
+perldoc command.
+
+    perldoc Statistics::Descriptive
+
+You can also look for information at:
+
+    RT, CPAN's request tracker
+        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Statistics-Descriptive
+
+    AnnoCPAN, Annotated CPAN documentation
+        http://annocpan.org/dist/Statistics-Descriptive
+
+    CPAN Ratings
+        http://cpanratings.perl.org/d/Statistics-Descriptive
+
+    Search CPAN
+        http://search.cpan.org/dist/Statistics-Descriptive
+
+COPYRIGHT AND LICENCE
+
+This program is released under the following license: perl
+
+------------
+
+Old README:
+===========
+
 This new version (2.5) of Statistics::Descriptive contains:
 
 - frequency_distribution was modified so that specific bins could be

Modified: trunk/libstatistics-descriptive-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstatistics-descriptive-perl/debian/changelog?rev=34894&op=diff
==============================================================================
--- trunk/libstatistics-descriptive-perl/debian/changelog (original)
+++ trunk/libstatistics-descriptive-perl/debian/changelog Thu May  7 03:10:07 2009
@@ -1,11 +1,17 @@
-libstatistics-descriptive-perl (2.6-6) UNRELEASED; urgency=low
+libstatistics-descriptive-perl (2.7-1) UNRELEASED; urgency=low
 
+  [ gregor herrmann ]
   * debian/watch: use dist-based URL.
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
     (source stanza).
   * debian/control: Added: ${misc:Depends} to Depends: field.
 
- -- gregor herrmann <gregoa at debian.org>  Wed, 06 Aug 2008 18:23:56 -0300
+  [ Ryan Niebur ]
+  * New upstream release
+  * Add myself to Uploaders
+  * Debian Policy 3.8.1
+
+ -- Ryan Niebur <ryanryan52 at gmail.com>  Wed, 06 May 2009 20:09:57 -0700
 
 libstatistics-descriptive-perl (2.6-5) unstable; urgency=low
 

Modified: trunk/libstatistics-descriptive-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libstatistics-descriptive-perl/debian/control?rev=34894&op=diff
==============================================================================
--- trunk/libstatistics-descriptive-perl/debian/control (original)
+++ trunk/libstatistics-descriptive-perl/debian/control Thu May  7 03:10:07 2009
@@ -4,8 +4,9 @@
 Build-Depends: debhelper (>= 5)
 Build-Depends-Indep: perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Carlo Segre <segre at debian.org>, Russ Allbery <rra at debian.org>
-Standards-Version: 3.7.3
+Uploaders: Carlo Segre <segre at debian.org>, Russ Allbery <rra at debian.org>,
+ Ryan Niebur <ryanryan52 at gmail.com>
+Standards-Version: 3.8.1
 Homepage: http://search.cpan.org/dist/Statistics-Descriptive/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libstatistics-descriptive-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libstatistics-descriptive-perl/




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