--- libdate-simple-perl-3.03.03.orig/debian/watch +++ libdate-simple-perl-3.03.03/debian/watch @@ -0,0 +1,3 @@ +version=3 +opts="uversionmangle=s/_/./g" \ +http://search.cpan.org/dist/Date-Simple/ .+/Date-Simple-v?(\d[\d._]*)\.(?:tar\.(?:gz|bz2)|tga|zip) --- libdate-simple-perl-3.03.03.orig/debian/rules +++ libdate-simple-perl-3.03.03/debian/rules @@ -0,0 +1,88 @@ +#!/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) + +# Allow disabling build optimation by setting noopt in +# $DEB_BUILD_OPTIONS +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +build: build-stamp +build-stamp: + dh_testdir + + # Add commands to compile the package here + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH="" + $(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) + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + [ ! -d $(TMP)/usr/share/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/share/perl5 + + touch $@ + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do here for an architecture-dependent package + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs ChangeLog + dh_shlibdeps + dh_strip + 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 --- libdate-simple-perl-3.03.03.orig/debian/copyright +++ libdate-simple-perl-3.03.03/debian/copyright @@ -0,0 +1,29 @@ +This package was debianized by Edward Betts on +Wed, 20 Oct 2004 12:23:05 +0100 + +It was downloaded from http://search.cpan.org/dist/Date-Simple/ + +The upstream authors are: + +Marty Pauley +John Tobey +Yves Orton . + +Copyright: + + Copyright (C) 2001 Kasei. + Copyright (C) 2001,2002 John Tobey. + Copyright (C) 2004 Yves Orton. + + This program is free software; you can redistribute it and/or modify + it under the terms of either: + + a) the GNU General Public License as published by the Free Software + Foundation; either version 1, or (at your option) any later + version, or + + b) the "Artistic License" which comes with Perl. + + 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'. --- libdate-simple-perl-3.03.03.orig/debian/compat +++ libdate-simple-perl-3.03.03/debian/compat @@ -0,0 +1 @@ +6 --- libdate-simple-perl-3.03.03.orig/debian/control +++ libdate-simple-perl-3.03.03/debian/control @@ -0,0 +1,24 @@ +Source: libdate-simple-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 6), perl (>= 5.8.0-7) +Maintainer: Debian Perl Group +Uploaders: Edward Betts , + gregor herrmann , + Damyan Ivanov +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Date-Simple/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdate-simple-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libdate-simple-perl/ + +Package: libdate-simple-perl +Architecture: any +Depends: ${perl:Depends}, ${shlibs:Depends} +Description: a simple date object for Perl + Dates are complex enough without times and timezones. This module may + be used to create simple date objects. + . + It handles validation, interval arithmetic, day-of-week calculation + and transparent date formatting. + . + It does not deal with hours, minutes, seconds, and time zones. --- libdate-simple-perl-3.03.03.orig/debian/changelog +++ libdate-simple-perl-3.03.03/debian/changelog @@ -0,0 +1,56 @@ +libdate-simple-perl (3.03.03-1build3) trusty; urgency=low + + * Rebuild for Perl 5.18. + + -- Colin Watson Mon, 21 Oct 2013 09:55:27 +0100 + +libdate-simple-perl (3.03.03-1build2) precise; urgency=low + + * Rebuild for Perl 5.14. + + -- Colin Watson Tue, 15 Nov 2011 19:39:31 +0000 + +libdate-simple-perl (3.03.03-1build1) oneiric; urgency=low + + * Rebuild for Perl 5.12. + + -- Colin Watson Sun, 08 May 2011 07:27:56 +0100 + +libdate-simple-perl (3.03.03-1) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: XS- + Vcs-Svn fields. + * debian/rules: delete /usr/share/perl5 only if it exists. + + [ Damyan Ivanov ] + * New upstream release + * debian/watch: use dist-based URL and better patern + * debian/rules: converted to debhelper + * Standards-Version: 3.7.3 (no changes) + * add myself to Uploaders + * debian/copyright: use author-neutral URL + + -- Damyan Ivanov Mon, 21 Jan 2008 13:03:30 +0200 + +libdate-simple-perl (3.02-1) unstable; urgency=low + + [ Edward Betts ] + * New upstream release + * debian/rules: change Maintainer to Debian Perl Group + * debian/rules: add Uploaders: Edward Betts + + [ gregor herrmann ] + * Set Standards-Version to 3.7.2 (no changes). + * Set debhelper compatibility level to 5. + * Remove empty /usr/share/perl5 directory from binary package. + + -- gregor herrmann Thu, 07 Jun 2007 15:01:06 +0200 + +libdate-simple-perl (3.01-1) unstable; urgency=low + + * Initial Release. + + -- Edward Betts Fri, 22 Oct 2004 14:13:53 +0100 +