--- libset-infinite-perl-0.63.orig/debian/control +++ libset-infinite-perl-0.63/debian/control @@ -0,0 +1,23 @@ +Source: libset-infinite-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: perl (>= 5.8.0-7) +Maintainer: Debian Perl Group +Uploaders: Jaldhar H. Vyas , + Jose Luis Rivas +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Set-Infinite/ +Vcs-Svn: svn://svn.debian.org/svn/pkg-perl/trunk/libset-infinite-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libset-infinite-perl/ + +Package: libset-infinite-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, perl-modules +Description: Sets of intervals + Set::Infinite is a Set Theory module for infinite sets. + . + It works with reals, integers, and objects. + . + When it is used dates, this module provides schedule checks (intersections), + unions, and infinite recurrences. --- libset-infinite-perl-0.63.orig/debian/copyright +++ libset-infinite-perl-0.63/debian/copyright @@ -0,0 +1,18 @@ +This is the debian package for the Set::Infinite module. +It was created by Jaldhar H. Vyas using dh-make-perl. + +It was downloaded from http://search.cpan.org/dist/Set-Infinite/ + +The upstream author is: Flavio S. Glock + +Copyright: (c) 2001, 2002, 2003, 2004 Flavio Soibelmann Glock. +All rights reserved. + +License *: + + This library is free software. You can redistribute it and/or modify it + under the same terms as perl itself. + +The Artistic and GPL licences under which Perl is distributed can be found +in /usr/share/common-licenses/ . See /usr/share/doc/perl/copyright for +the license of Perl itself. --- libset-infinite-perl-0.63.orig/debian/watch +++ libset-infinite-perl-0.63/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Set-Infinite/ .*/Set-Infinite-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libset-infinite-perl-0.63.orig/debian/compat +++ libset-infinite-perl-0.63/debian/compat @@ -0,0 +1 @@ +5 --- libset-infinite-perl-0.63.orig/debian/changelog +++ libset-infinite-perl-0.63/debian/changelog @@ -0,0 +1,40 @@ +libset-infinite-perl (0.63-1) unstable; urgency=low + + [ Jose Luis Rivas ] + * New upstream release + * Added me as uploader. + * debian/copyright: Better formatting, more machine readable. + * Bumped to 3.8.0 wo/ changes needed. + + [ gregor herrmann ] + * debian/copyright: update years of copyright and author email address. + * Refresh debian/rules, no functional changes; except: don't install almost + empty README any more. + + -- Jose Luis Rivas Tue, 22 Jul 2008 00:02:27 -0430 + +libset-infinite-perl (0.61-2) unstable; urgency=low + + * Gave url to download location in debian/copyright. + * Corrected vcs url in debian/control. + + -- Jaldhar H. Vyas Thu, 28 Feb 2008 21:50:57 -0500 + +libset-infinite-perl (0.61-1) unstable; urgency=low + + * First upload to Debian, new upstream version. + + -- Jaldhar H. Vyas Wed, 27 Feb 2008 22:17:29 -0500 + +libset-infinite-perl (0.59-0.1) unstable; urgency=low + + * Second non-release, new upstream version. + + -- Jaldhar H. Vyas Thu, 2 Sep 2004 19:18:38 -0400 + +libset-infinite-perl (0.49-0.1) unstable; urgency=low + + * Initial non-release. + + -- Jaldhar H. Vyas Mon, 5 May 2003 00:04:45 -0400 + --- libset-infinite-perl-0.63.orig/debian/rules +++ libset-infinite-perl-0.63/debian/rules @@ -0,0 +1,60 @@ +#!/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 + $(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 + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install