r5371 - in /packages/libmath-randomorg-perl/trunk: Changes MANIFEST MANIFEST.SKIP META.yml Makefile.PL SIGNATURE debian/changelog examples/ inc/ lib/Math/RandomOrg.pm t/pod.t t/pod_coverage.t

gwolf at users.alioth.debian.org gwolf at users.alioth.debian.org
Wed May 9 14:44:42 UTC 2007


Author: gwolf
Date: Wed May  9 14:44:41 2007
New Revision: 5371

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

Added:
    packages/libmath-randomorg-perl/trunk/SIGNATURE
      - copied unchanged from r5369, packages/libmath-randomorg-perl/branches/upstream/current/SIGNATURE
    packages/libmath-randomorg-perl/trunk/examples/
      - copied from r5369, packages/libmath-randomorg-perl/branches/upstream/current/examples/
    packages/libmath-randomorg-perl/trunk/inc/
      - copied from r5369, packages/libmath-randomorg-perl/branches/upstream/current/inc/
    packages/libmath-randomorg-perl/trunk/t/pod.t
      - copied unchanged from r5369, packages/libmath-randomorg-perl/branches/upstream/current/t/pod.t
    packages/libmath-randomorg-perl/trunk/t/pod_coverage.t
      - copied unchanged from r5369, packages/libmath-randomorg-perl/branches/upstream/current/t/pod_coverage.t
Modified:
    packages/libmath-randomorg-perl/trunk/Changes
    packages/libmath-randomorg-perl/trunk/MANIFEST
    packages/libmath-randomorg-perl/trunk/MANIFEST.SKIP
    packages/libmath-randomorg-perl/trunk/META.yml
    packages/libmath-randomorg-perl/trunk/Makefile.PL
    packages/libmath-randomorg-perl/trunk/debian/changelog
    packages/libmath-randomorg-perl/trunk/lib/Math/RandomOrg.pm

Modified: packages/libmath-randomorg-perl/trunk/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmath-randomorg-perl/trunk/Changes?rev=5371&op=diff
==============================================================================
--- packages/libmath-randomorg-perl/trunk/Changes (original)
+++ packages/libmath-randomorg-perl/trunk/Changes Wed May  9 14:44:41 2007
@@ -1,4 +1,10 @@
 Revision history for Perl extension Math/RandomOrg.pm:
+
+0.04	Mon Nov 27 2006
+	- Changes to conform to CPANTS Kwalitee:
+	  - Added pod tests.
+	  - Added examples directory.
+	  - Updated Makefile.PL to use Module::Install and provide licensing terms.
 
 0.03	Tue May 30  02:56:00 EST 2006
 	- Added checkbuf() and randseq() functions (thanks to Aaron Dalton).

Modified: packages/libmath-randomorg-perl/trunk/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmath-randomorg-perl/trunk/MANIFEST?rev=5371&op=diff
==============================================================================
--- packages/libmath-randomorg-perl/trunk/MANIFEST (original)
+++ packages/libmath-randomorg-perl/trunk/MANIFEST Wed May  9 14:44:41 2007
@@ -1,9 +1,18 @@
 Changes
 lib/Math/RandomOrg.pm
 Makefile.PL
+META.yml
 MANIFEST
 MANIFEST.SKIP
 README
 t/randbyte.t
 t/randnum.t
-META.yml                                 Module meta-data (added by MakeMaker)
+t/pod.t
+t/pod_coverage.t
+SIGNATURE
+inc/Module/Install/Base.pm
+inc/Module/Install/Makefile.pm
+inc/Module/Install/MakeMaker.pm
+inc/Module/Install/Metadata.pm
+inc/Module/Install.pm
+examples/coin_toss.pl

Modified: packages/libmath-randomorg-perl/trunk/MANIFEST.SKIP
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmath-randomorg-perl/trunk/MANIFEST.SKIP?rev=5371&op=diff
==============================================================================
--- packages/libmath-randomorg-perl/trunk/MANIFEST.SKIP (original)
+++ packages/libmath-randomorg-perl/trunk/MANIFEST.SKIP Wed May  9 14:44:41 2007
@@ -1,3 +1,8 @@
+inc/.author
+MANIFEST.SKIP
+Makefile
+.DS_Store
+.svn
 \.AppleDouble/.*
 CVS/.*
 \.bak$

Modified: packages/libmath-randomorg-perl/trunk/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmath-randomorg-perl/trunk/META.yml?rev=5371&op=diff
==============================================================================
--- packages/libmath-randomorg-perl/trunk/META.yml (original)
+++ packages/libmath-randomorg-perl/trunk/META.yml Wed May  9 14:44:41 2007
@@ -1,11 +1,20 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
-name:         Math-RandomOrg
-version:      0.03
-version_from: lib/Math/RandomOrg.pm
-installdirs:  site
+--- #YAML:1.0
+meta-spec:
+  version: 1.3
+  url: http://module-build.sourceforge.net/META-spec-v1.3.html
+name: Math-RandomOrg
+abstract: Retrieve random numbers and data from the random.org webservice.
+author: 'Gregory Todd Williams <gwilliams at cpan.org>'
+build_requires:
+  Test::More: 0.61
+distribution_type: module
+generated_by: Module::Install version 0.630
+license: perl
+no_index:
+  directory:
+    - inc
+    - t
 requires:
-    LWP:                           0
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.17
+  LWP: 0
+  Math::BigInt: 0
+version: 0.04

Modified: packages/libmath-randomorg-perl/trunk/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmath-randomorg-perl/trunk/Makefile.PL?rev=5371&op=diff
==============================================================================
--- packages/libmath-randomorg-perl/trunk/Makefile.PL (original)
+++ packages/libmath-randomorg-perl/trunk/Makefile.PL Wed May  9 14:44:41 2007
@@ -1,9 +1,19 @@
-use ExtUtils::MakeMaker;
+# use ExtUtils::MakeMaker;
+use inc::Module::Install;
+
+license				'perl';
+build_requires		'Test::More'	=> '0.42';
+no_index			'directory'		=> 'examples';
+perl_version		'5.006';
 
 WriteMakefile(
-    'NAME'		=> 'Math::RandomOrg',
-    'AUTHOR'	=> 'Gregory Todd Williams <gwilliams at cpan.org>',
-    'ABSTRACT_FROM'	=> 'lib/Math/RandomOrg.pm', # finds ABSTRACT
+    'NAME'			=> 'Math::RandomOrg',
+    'AUTHOR'		=> 'Gregory Todd Williams <gwilliams at cpan.org>',
+    'ABSTRACT'		=> 'Retrieve random numbers and data from the random.org webservice.',
     'VERSION_FROM'	=> 'lib/Math/RandomOrg.pm', # finds $VERSION
-    'PREREQ_PM'		=> { LWP => 0 }
+    'PREREQ_PM'		=> {
+    					'LWP'			=> 0,
+    					'Math::BigInt'	=> 0,
+    				}
 );
+

Modified: packages/libmath-randomorg-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmath-randomorg-perl/trunk/debian/changelog?rev=5371&op=diff
==============================================================================
--- packages/libmath-randomorg-perl/trunk/debian/changelog (original)
+++ packages/libmath-randomorg-perl/trunk/debian/changelog Wed May  9 14:44:41 2007
@@ -1,3 +1,9 @@
+libmath-randomorg-perl (0.04-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Gunnar Wolf <gwolf at debian.org>  Wed, 09 May 2007 09:43:20 -0500
+
 libmath-randomorg-perl (0.03-3) unstable; urgency=medium
 
   * Disable 'make test', as it requires network access.

Modified: packages/libmath-randomorg-perl/trunk/lib/Math/RandomOrg.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmath-randomorg-perl/trunk/lib/Math/RandomOrg.pm?rev=5371&op=diff
==============================================================================
--- packages/libmath-randomorg-perl/trunk/lib/Math/RandomOrg.pm (original)
+++ packages/libmath-randomorg-perl/trunk/lib/Math/RandomOrg.pm Wed May  9 14:44:41 2007
@@ -10,7 +10,8 @@
 
 =head1 DESCRIPTION
 
-Math::RandomOrg provides functions for retrieving random data from the random.org server. Data may be retrieved in an integer or byte-stream format using the C<randnum> and C<randbyte> functions respectively.
+Math::RandomOrg provides functions for retrieving random data from the random.org server.
+Data may be retrieved in an integer or byte-stream format using the C<randnum> and C<randbyte> functions respectively.
 
 =head1 REQUIRES
 
@@ -43,15 +44,16 @@
 package Math::RandomOrg;
 
 use strict;
-use vars qw(@ISA @EXPORT_OK @EXPORT $VERSION);
+use warnings;
+
+our ($VERSION, @ISA, @EXPORT, @EXPORT_OK);
 
 require Exporter;
-
 @ISA = qw(Exporter);
 
 @EXPORT_OK = qw( checkbuf randnum randbyte randseq );
 @EXPORT = qw();
-$VERSION = '0.03';
+$VERSION = '0.04';
 
 use Carp;
 use Math::BigInt;
@@ -204,25 +206,24 @@
 
 None known.
 
+=head1 SEE ALSO
+
+=over 4
+
+=item * L<Math::TrulyRandom>
+
+=item * L<rand>
+
+=back
+
+=head1 COPYRIGHT
+
+Copyright (c) 2001-2006 Gregory Todd Williams. All rights reserved. This
+program is free software; you can redistribute it and/or modify it under
+the same terms as Perl itself.
+
 =head1 AUTHOR
 
-Gregory Williams <gwilliams at cpan.org>
-
-=head1 SEE ALSO
-
-=over 4
-
-=item * L<Math::TrulyRandom>
-
-=item * L<rand>
-
-=back
-
-=head1 COPYRIGHT
-
-Copyright (c) 2001--2006, Gregory Williams. All rights reserved.
-This module is free software. It may be used, redistributed
-and/or modified under the same terms as Perl itself.
-
-=cut
-
+Gregory Todd Williams  C<< <gwilliams at cpan.org> >>
+
+=cut




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