--- libmath-fibonacci-perl-1.5.orig/debian/control +++ libmath-fibonacci-perl-1.5/debian/control @@ -0,0 +1,20 @@ +Source: libmath-fibonacci-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: perl +Maintainer: Debian Perl Group +Uploaders: gregor herrmann +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Math-Fibonacci/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmath-fibonacci-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libmath-fibonacci-perl/ + +Package: libmath-fibonacci-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, +Description: Fibonacci numbers calculations Perl module + This module provides a few functions related to Fibonacci numbers, + such as getting the n term of a Fibonacci sequence, compute and + return the first n Fibonacci numbers, decompose an integer into the + sum of Fibonacci numbers, etc. --- libmath-fibonacci-perl-1.5.orig/debian/rules +++ libmath-fibonacci-perl-1.5/debian/rules @@ -0,0 +1,70 @@ +#!/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 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + + touch $@ + +clean: + dh_testdir + dh_testroot + + dh_clean build-stamp install-stamp + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + $(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 TODO + dh_installchangelogs Changes + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- libmath-fibonacci-perl-1.5.orig/debian/watch +++ libmath-fibonacci-perl-1.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Math-Fibonacci/ .*/Math-Fibonacci-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libmath-fibonacci-perl-1.5.orig/debian/copyright +++ libmath-fibonacci-perl-1.5/debian/copyright @@ -0,0 +1,20 @@ +This is the debian package for the Math::Fibonacci module. +It was created by David Moreno Garza using dh-make-perl +and is maintained by the Debian Perl Group. + +Upstream source location: http://search.cpan.org/dist/Math-Fibonacci/ + +Copyright: +Copyright (c) 1999-2001, Vipul Ved Prakash . + +This code is free software; you can redistribute it and/or modify it +under the ARTISTIC license (a copy is included in the distribution) +or under the same terms as Perl itself. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. On Debian GNU/Linux systems, the complete text of the +GNU General Public License can be found in `/usr/share/common-licenses/GPL' +and the Artistic Licence in `/usr/share/common-licenses/Artistic'. + +You can find the pristine source for this module directly from: + http://search.cpan.org/CPAN/modules/by-module/Math/ --- libmath-fibonacci-perl-1.5.orig/debian/compat +++ libmath-fibonacci-perl-1.5/debian/compat @@ -0,0 +1 @@ +5 --- libmath-fibonacci-perl-1.5.orig/debian/changelog +++ libmath-fibonacci-perl-1.5/debian/changelog @@ -0,0 +1,34 @@ +libmath-fibonacci-perl (1.5-4) unstable; urgency=low + + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: XS- + Vcs-Svn fields. + * debian/watch: use dist-based URL. + * debian/rules: + - delete /usr/lib/perl5 only if it exists (closes: #467881) + - update based on dh-make-perl's templates + * Set Standards-Version to 3.7.3 (no changes). + * Set debhelper compatibility level to 5. + * debian/copyright: add download URL. + + -- gregor herrmann Sat, 08 Mar 2008 23:03:25 +0100 + +libmath-fibonacci-perl (1.5-3) UNSTABLE; urgency=low + + * Fix typo in Description + + -- Frank Lichtenheld Sat, 2 Dec 2006 00:23:40 +0100 + +libmath-fibonacci-perl (1.5-2) unstable; urgency=low + + * New Maintainer: Debian Perl Group. + * Add watch file. + + -- gregor herrmann Fri, 15 Sep 2006 00:12:07 +0200 + +libmath-fibonacci-perl (1.5-1) unstable; urgency=low + + * Initial Release. + + -- David Moreno Garza Thu, 11 May 2006 11:14:09 -0500 +