--- libmath-random-isaac-perl-1.003.orig/debian/compat +++ libmath-random-isaac-perl-1.003/debian/compat @@ -0,0 +1 @@ +7 --- libmath-random-isaac-perl-1.003.orig/debian/rules +++ libmath-random-isaac-perl-1.003/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +%: + dh $@ + +override_dh_auto_test: + AUTOMATED_TESTING=1 dh_auto_test --- libmath-random-isaac-perl-1.003.orig/debian/watch +++ libmath-random-isaac-perl-1.003/debian/watch @@ -0,0 +1,4 @@ +# format version number, currently 3; this line is compulsory! +version=3 +# URL to the package page followed by a regex to search +http://search.cpan.org/dist/Math-Random-ISAAC/ .*/Math-Random-ISAAC-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libmath-random-isaac-perl-1.003.orig/debian/changelog +++ libmath-random-isaac-perl-1.003/debian/changelog @@ -0,0 +1,26 @@ +libmath-random-isaac-perl (1.003-1) unstable; urgency=low + + [ Jonathan Yu ] + * New upstream release + * Note that the algorithm was Bob Jenkins, though he's not a copyright + holder + + [ Ryan Niebur ] + * Update jawnsy's email address + + [ gregor herrmann ] + * debian/control: Changed: (build-)depend on perl instead of perl- + modules. + * Add perl (>= 5.10.1) as an alternative build dependency for + Pod::Simple. + + [ Dominic Hargreaves ] + * Note that this new release fixes FTBFS on perl 5.12 (Closes: #578898) + + -- Dominic Hargreaves Sun, 13 Feb 2011 17:05:46 +0000 + +libmath-random-isaac-perl (1.001-1) unstable; urgency=low + + * Initial Release (Closes: #525334) + + -- Jonathan Yu Thu, 27 Aug 2009 05:51:07 -0400 --- libmath-random-isaac-perl-1.003.orig/debian/control +++ libmath-random-isaac-perl-1.003/debian/control @@ -0,0 +1,38 @@ +Source: libmath-random-isaac-perl +Section: perl +Priority: optional +Build-Depends: perl (>= 5.10) | libmodule-build-perl, + debhelper (>= 7.2.10) +Build-Depends-Indep: perl, libtest-pod-coverage-perl, libtest-cpan-meta-perl, + perl (>= 5.10.1) | libpod-simple-perl (>= 3.07), libtest-pod-perl, libtest-minimumversion-perl, + libtest-portability-files-perl, libtest-nowarnings-perl (>= 0.084), + libstatistics-test-randomwalk-perl, libtest-without-module-perl (>= 0.17), + libtest-distmanifest-perl, libtest-kwalitee-perl, libtest-leaktrace-perl +Maintainer: Debian Perl Group +Uploaders: Jonathan Yu , Dominic Hargreaves +Standards-Version: 3.8.3 +Homepage: http://search.cpan.org/dist/Math-Random-ISAAC/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmath-random-isaac-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libmath-random-isaac-perl/ + +Package: libmath-random-isaac-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Recommends: libmath-random-isaac-xs-perl +Description: Perl interface to the ISAAC PRNG Algorithm + Math::Random::ISAAC implements the ISAAC (Indirection, Shift, Accumulate, Add + and Count) pseudorandom number generator (PRNG) algorithm described on the + project page at: + . + As with other algorithms like the Mersenne Twister (see Math::Random::MT), + this algorithm is designed to take some seed information and produce seemingly + random results as output. + . + The results are uniformly distributed, unbiased, and unpredictable unless you + know the seed. The algorithm was published by Bob Jenkins in the late 1990s + and despite the best efforts of many security researchers, no feasible attacks + have been found to date. + . + For comparison with other algorithms intended to generate random data, the + Mersenne Twister has a period of 2^19937-1, the related TT800 has a period + of 2^800-1 values. ISAAC has a period of 2^8295 values on average. --- libmath-random-isaac-perl-1.003.orig/debian/libmath-random-isaac-perl.examples +++ libmath-random-isaac-perl-1.003/debian/libmath-random-isaac-perl.examples @@ -0,0 +1 @@ +examples/* --- libmath-random-isaac-perl-1.003.orig/debian/copyright +++ libmath-random-isaac-perl-1.003/debian/copyright @@ -0,0 +1,48 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Jonathan Yu +Upstream-Source: http://search.cpan.org/dist/Math-Random-ISAAC/ +Upstream-Name: Math-Random-ISAAC + +Files: * +Copyright: 2009, Jonathan Yu +License: PD | Artistic | GPL-1+ +X-Comment: The ISAAC algorithm was conceived by Bob Jenkins. + It was released into the public domain by him and no copyright on + it was ever asserted. This package builds on the work of Allen Day + (at UCLA) who made a quick port to Perl. + +Files: debian/* +Copyright: 2009, Jonathan Yu +License: PD | Artistic | GPL-1+ + +License: PD + I, the copyright holder of this package, hereby release the entire + contents therein into the public domain. This applies worldwide, to + the extent that it is permissible by law. + + In case this is not legally possible, I grant any entity the right to + use this work for any purpose, without any conditions, unless such + conditions are required by law. + + If you so choose, or if you are legally compelled to do so, you may + use this software under the terms of your choice of the following + licenses: + + 1. The MIT/X11 License; or, + 2. The Perl Artistic License, version 1 or later; or, + 3. The GNU General Public License, version 1 or later + +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' + +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-1'