--- libalgorithm-numerical-sample-perl-2010011201.orig/debian/compat +++ libalgorithm-numerical-sample-perl-2010011201/debian/compat @@ -0,0 +1 @@ +5 --- libalgorithm-numerical-sample-perl-2010011201.orig/debian/rules +++ libalgorithm-numerical-sample-perl-2010011201/debian/rules @@ -0,0 +1,63 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PERL ?= /usr/bin/perl +PACKAGE = $(shell dh_listpackages) +TMP = $(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + # Add commands to compile the package here + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + touch $@ + +clean: + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + # Add commands to clean up after the build process here + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + # Add commands to install the package into $(TMP) here + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/lib/perl5 ] || \ + rmdir --ignore-fail-on-non-empty --parents --verbose \ + $(TMP)/usr/lib/perl5 + touch $@ + +binary-arch: +# We have nothing to do here for an architecture-independent package + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs README + dh_installchangelogs Changes + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- libalgorithm-numerical-sample-perl-2010011201.orig/debian/watch +++ libalgorithm-numerical-sample-perl-2010011201/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/Algorithm-Numerical-Sample/ .*/Algorithm-Numerical-Sample-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libalgorithm-numerical-sample-perl-2010011201.orig/debian/changelog +++ libalgorithm-numerical-sample-perl-2010011201/debian/changelog @@ -0,0 +1,12 @@ +libalgorithm-numerical-sample-perl (2010011201-1) unstable; urgency=low + + * New upstream release + * Update Standards-Version (no changes) + + -- Dominic Hargreaves Sat, 12 Jun 2010 13:00:47 +0100 + +libalgorithm-numerical-sample-perl (2009040301-1) unstable; urgency=low + + * Initial Release (closes: #528678) + + -- Dominic Hargreaves Thu, 14 May 2009 18:21:00 +0100 --- libalgorithm-numerical-sample-perl-2010011201.orig/debian/control +++ libalgorithm-numerical-sample-perl-2010011201/debian/control @@ -0,0 +1,17 @@ +Source: libalgorithm-numerical-sample-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: perl (>= 5.6.10-12) +Maintainer: Dominic Hargreaves +Standards-Version: 3.8.4 +Homepage: http://search.cpan.org/dist/Algorithm-Numerical-Sample/ + +Package: libalgorithm-numerical-sample-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: Draw samples from a set + This package gives two methods to draw fair, random samples from a set. + There is a procedural interface for the case the entire set is known, + and an object oriented interface when the a set with unknown size has + to be processed. --- libalgorithm-numerical-sample-perl-2010011201.orig/debian/copyright +++ libalgorithm-numerical-sample-perl-2010011201/debian/copyright @@ -0,0 +1,27 @@ +This is the debian package for the Algorithm-Numerical-Sample module. +It was created by Dominic Hargreaves using dh-make-perl. + +It was downloaded from http://search.cpan.org/dist/Algorithm-Numerical-Sample/ + +Copyright (C) 1998, 1999, 2009, Abigail. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +The Debian packaging is (C) 2009, Dominic Hargreaves and +is licensed under the same terms as the software itself (see above).