--- libtime-period-perl-1.20.orig/debian/changelog +++ libtime-period-perl-1.20/debian/changelog @@ -0,0 +1,58 @@ +libtime-period-perl (1.20-8) unstable; urgency=low + + * Drop /usr/doc symlink by rebuilding with newer debhelper (closes: #359529). + * Change section to "perl". + * Add debian/watch. + + -- Roderick Schertler Fri, 26 May 2006 09:05:02 -0400 + +libtime-period-perl (1.20-7) unstable; urgency=low + + * Don't install extraneous empty directories. + + -- Roderick Schertler Tue, 31 Jul 2001 10:45:59 -0400 + +libtime-period-perl (1.20-6) unstable; urgency=low + + * Update to policy 3.5.2 (closes: #91198, #91564). + * Update to latest Perl policy. + + -- Roderick Schertler Mon, 9 Apr 2001 08:25:38 -0400 + +libtime-period-perl (1.20-5) unstable; urgency=low + + * Simple updates for 3.0.0 standards. + * Simple updates for new Perl policy. + + -- Roderick Schertler Thu, 15 Jul 1999 10:55:56 -0400 + +libtime-period-perl (1.20-4) unstable; urgency=low + + * Stop running dh_du. + * Oops, build in binary-indep, not binary-arch. + + -- Roderick Schertler Tue, 10 Mar 1998 13:47:28 -0500 + +libtime-period-perl (1.20-3) unstable; urgency=low + + * Update FSF address. + * Build with debhelper 0.60 fixes permsissions problems. + * Update Standards-Version to 2.4.0.0. + + -- Roderick Schertler Tue, 10 Feb 1998 20:14:10 -0500 + +libtime-period-perl (1.20-2) unstable; urgency=low + + * Change section to interpreters. + * Add RCS id tags. + * Pass -isp to dpkg-gencontrol. + + -- Roderick Schertler Sat, 7 Feb 1998 23:57:40 -0500 + +libtime-period-perl (1.20-1) unstable; urgency=low + + * Initial version. + + -- Roderick Schertler Sun, 18 Jan 1998 16:05:56 -0500 + +$Id: changelog,v 1.9 2006-05-26 13:05:36 roderick Exp $ --- libtime-period-perl-1.20.orig/debian/control +++ libtime-period-perl-1.20/debian/control @@ -0,0 +1,17 @@ +Source: libtime-period-perl +Section: perl +Priority: optional +Maintainer: Roderick Schertler +Standards-Version: 3.5.2 +Build-Depends: debhelper (>= 3.0.5), perl (>= 5.6.0-16) + +Package: libtime-period-perl +Architecture: all +Depends: ${perl:Depends} +Description: Perl library for testing if a time() is in a specific period + This Perl library provides a function which tells whether a specific + time falls within a specified time period. Its syntax for specifying + time periods allows you to test for conditions like "Monday to Friday, + 9am till 5pm" and "on the second Tuesday of the month" and "between 4pm + and 4:15pm" and "in the first half of each minute" and "in January of + 1998". --- libtime-period-perl-1.20.orig/debian/copyright +++ libtime-period-perl-1.20/debian/copyright @@ -0,0 +1,36 @@ +$Id: copyright,v 1.5 1999-07-15 14:56:52 roderick Exp $ + +This is a Debian prepackaged version of the Time::Period Perl module. It +was put together by Roderick Schertler with sources +obtained from . + +The source has not been modified. + +The Time::Period module is Copyright (c) 1997 Patrick Ryan. All rights +reserved. It may be distributed under the same terms as Perl. These +are: + + 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 this Kit. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either + the GNU General Public License or the Artistic License for more details. + + You should have received a copy of the Artistic License with this + Kit, in the file named "Artistic". If not, I'll be glad to provide one. + + You should also have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + +On Debian systems, the complete text of the GNU General Public License can +be found in `/usr/share/common-licenses/GPL', and the complete text of the +Artistic License can be found in `/usr/share/common-licenses/Artistic'. --- libtime-period-perl-1.20.orig/debian/docs +++ libtime-period-perl-1.20/debian/docs @@ -0,0 +1 @@ +README --- libtime-period-perl-1.20.orig/debian/rules +++ libtime-period-perl-1.20/debian/rules @@ -0,0 +1,73 @@ +#!/usr/bin/make -f + +# $Id: rules,v 1.7 2001-07-31 14:46:20 roderick Exp $ + +dt := debian/libtime-period-perl +prefix = `pwd`/$(dt) +stamp_build := debian/stamp.build +stamp_install := debian/stamp.install +clean := $(stamp_build) $(stamp_install) + +ifneq "" "$(findstring debug,$(DEB_BUILD_OPTIONS))" + CFLAGS += -g +endif +export DH_COMPAT := 3 +PERL ?= perl + +build: $(stamp_build) +$(stamp_build): + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-O2 -Wall $(CFLAGS)" + $(MAKE) test + touch $@ + +install: $(stamp_install) +$(stamp_install): $(stamp_build) + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install PREFIX=$(prefix)/usr + find $(prefix) -depth -type d -print0 | \ + xargs -0r rmdir --ignore-fail-on-non-empty + touch $@ + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) realclean + dh_clean $(clean) + +binary: binary-indep binary-arch +binary-arch: +binary-indep: $(stamp_install) + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit + dh_installcron + dh_installman + dh_installinfo +# dh_undocumented + dh_installchangelogs + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol -u -isp + dh_md5sums + dh_builddeb + +.PHONY: build install clean binary-indep binary-arch binary --- libtime-period-perl-1.20.orig/debian/watch +++ libtime-period-perl-1.20/debian/watch @@ -0,0 +1,5 @@ +# $Id: watch,v 1.1 2006-05-26 13:05:36 roderick Exp $ + +version=2 + +http://www.cpan.org/modules/by-module/Time/Period-(\d.*)\.tar\.gz