--- libstatistics-test-sequence-perl-0.01.orig/debian/control +++ libstatistics-test-sequence-perl-0.01/debian/control @@ -0,0 +1,28 @@ +Source: libstatistics-test-sequence-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: libparams-util-perl, libtest-perl-critic-perl (>= 1.01), + libperl-critic-perl (>= 1.098), libtest-yaml-meta-perl (>= 0.11), + libtest-pod-perl (>= 1.14), libtest-pod-coverage-perl (>= 1.04), + libtest-nowarnings-perl (>= 0.084), libtest-minimumversion-perl (>= 0.008), + perl (>= 5.6.0-12) +Maintainer: Debian Perl Group +Uploaders: Jonathan Yu +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/Statistics-Test-Sequence/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libstatistics-test-sequence-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libstatistics-test-sequence-perl/ + +Package: libstatistics-test-sequence-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends}, libparams-util-perl +Suggests: libstatistics-test-randomwalk-perl +Description: Perl module that tests correlation of random numbers + Statistics::Test::Sequence implements a sequence correlation test for random + number generators. It shows pairwise correlation between subsequent random + numbers. + . + It performs this analysis using an algorithm published in: Blobel, V., and + Lohrmann, E. Statistische und numerische Methoden der Datenanalyse. Stuttgart, + Leipzig: Teubner, 1998 --- libstatistics-test-sequence-perl-0.01.orig/debian/copyright +++ libstatistics-test-sequence-perl-0.01/debian/copyright @@ -0,0 +1,28 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Steffen Mueller +Upstream-Source: http://search.cpan.org/dist/Statistics-Test-Sequence/ +Upstream-Name: Statistics-Test-Sequence + +Files: * +Copyright: 2007, Steffen Mueller +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2009, Jonathan Yu +License: Artistic | 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' + +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' --- libstatistics-test-sequence-perl-0.01.orig/debian/watch +++ libstatistics-test-sequence-perl-0.01/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/Statistics-Test-Sequence/ .*/Statistics-Test-Sequence-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libstatistics-test-sequence-perl-0.01.orig/debian/libstatistics-test-sequence-perl.examples +++ libstatistics-test-sequence-perl-0.01/debian/libstatistics-test-sequence-perl.examples @@ -0,0 +1 @@ +examples/* --- libstatistics-test-sequence-perl-0.01.orig/debian/compat +++ libstatistics-test-sequence-perl-0.01/debian/compat @@ -0,0 +1 @@ +7 --- libstatistics-test-sequence-perl-0.01.orig/debian/changelog +++ libstatistics-test-sequence-perl-0.01/debian/changelog @@ -0,0 +1,5 @@ +libstatistics-test-sequence-perl (0.01-1) unstable; urgency=low + + * Initial Release. (Closes: #526396) + + -- Jonathan Yu Tue, 28 Apr 2009 16:18:35 -0400 --- libstatistics-test-sequence-perl-0.01.orig/debian/rules +++ libstatistics-test-sequence-perl-0.01/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + TEST_AUTHOR=1 dh build + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build