--- libbenchmark-progressbar-perl-0.00001.orig/debian/control +++ libbenchmark-progressbar-perl-0.00001/debian/control @@ -0,0 +1,26 @@ +Source: libbenchmark-progressbar-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: libterm-progressbar-perl, perl (>= 5.6.0-12) +Maintainer: Debian Perl Group +Uploaders: Jonathan Yu +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/Benchmark-ProgressBar/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libbenchmark-progressbar-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libbenchmark-progressbar-perl/ + +Package: libbenchmark-progressbar-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends}, libterm-progressbar-perl +Description: Perl module that displays progress bar during benchmarking + Benchmark::ProgressBar is a combination of Benchmark and Term::ProgressBar + that produces a simple progress bar illustrating execution of benchmark + runs. As such, it is particularly useful for heavy benchmarking tests + that take a long time to complete. + . + You can use it as a drop-in replacement for Benchmark, but the only functions + that would display a progress bar are: cmpthese, timethese and timeit. + . + This module is not compatible for use with Benchmark in the same script. The + author doesn't know of any case where this would make sense. --- libbenchmark-progressbar-perl-0.00001.orig/debian/copyright +++ libbenchmark-progressbar-perl-0.00001/debian/copyright @@ -0,0 +1,38 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Copyright (c) 2008 Daisuke Maki C<< daisuke@endeworks.jp >> +Upstream-Source: http://search.cpan.org/dist/Benchmark-ProgressBar/ +Upstream-Name: Benchmark-ProgressBar + +Files: * +Copyright: Copyright (c) 2008 Daisuke Maki +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2009, Jonathan Yu +License: Artistic | GPL-1+ + +Files: inc/Test/More.pm +Copyright: Copyright 2001-2008 by Michael G Schwern +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: inc/Module/* +Copyright: Copyright 2002 - 2009 Brian Ingerson, Audrey Tang and Adam Kennedy +License-Alias: Perl +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' --- libbenchmark-progressbar-perl-0.00001.orig/debian/watch +++ libbenchmark-progressbar-perl-0.00001/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/Benchmark-ProgressBar/ .*/Benchmark-ProgressBar-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libbenchmark-progressbar-perl-0.00001.orig/debian/compat +++ libbenchmark-progressbar-perl-0.00001/debian/compat @@ -0,0 +1 @@ +7 --- libbenchmark-progressbar-perl-0.00001.orig/debian/changelog +++ libbenchmark-progressbar-perl-0.00001/debian/changelog @@ -0,0 +1,5 @@ +libbenchmark-progressbar-perl (0.00001-1) unstable; urgency=low + + * Initial Release. (Closes: #525327) + + -- Jonathan Yu Fri, 01 May 2009 20:49:12 -0400 --- libbenchmark-progressbar-perl-0.00001.orig/debian/rules +++ libbenchmark-progressbar-perl-0.00001/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + 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