This is an automated email from the git hooks/post-receive script. gregoa pushed a commit to branch master in repository libtime-period-perl.
commit c55bdd5d2cafd4c53efc609750b624556fb09163 Author: Roderick Schertler <[email protected]> Date: Tue Mar 10 13:47:28 1998 -0500 Import Debian changes 1.20-4 libtime-period-perl (1.20-4) unstable; urgency=low * Stop running dh_du. * Oops, build in binary-indep, not binary-arch. 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. libtime-period-perl (1.20-2) unstable; urgency=low * Change section to interpreters. * Add RCS id tags. * Pass -isp to dpkg-gencontrol. libtime-period-perl (1.20-1) unstable; urgency=low * Initial version. --- debian/changelog | 30 ++++++++++++++++++++++++++++ debian/control | 16 +++++++++++++++ debian/copyright | 36 ++++++++++++++++++++++++++++++++++ debian/docs | 1 + debian/rules | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 142 insertions(+) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..74ababf --- /dev/null +++ b/debian/changelog @@ -0,0 +1,30 @@ +libtime-period-perl (1.20-4) unstable; urgency=low + + * Stop running dh_du. + * Oops, build in binary-indep, not binary-arch. + + -- Roderick Schertler <[email protected]> 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 <[email protected]> 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 <[email protected]> Sat, 7 Feb 1998 23:57:40 -0500 + +libtime-period-perl (1.20-1) unstable; urgency=low + + * Initial version. + + -- Roderick Schertler <[email protected]> Sun, 18 Jan 1998 16:05:56 -0500 + +$Id: changelog,v 1.5 1998/03/10 18:48:52 roderick Exp $ diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..91fe9c9 --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: libtime-period-perl +Section: interpreters +Priority: optional +Maintainer: Roderick Schertler <[email protected]> +Standards-Version: 2.4.0.0 + +Package: libtime-period-perl +Architecture: all +Depends: perl (>= 5.001) +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". diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..f0a9db5 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,36 @@ +$Id: copyright,v 1.4 1998/03/10 18:48:52 roderick Exp $ + +This is a Debian prepackaged version of the Time::Period Perl module. It +was put together by Roderick Schertler <[email protected]> with sources +obtained from <URL:http://www.perl.com/CPAN/modules/by-module/Time/>. + +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/doc/copyright/GPL', and the complete text of the +Artistic License can be found in `/usr/doc/copyright/Artistic'. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e845566 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..bb3f89b --- /dev/null +++ b/debian/rules @@ -0,0 +1,59 @@ +#!/usr/bin/make -f + +# $Id: rules,v 1.4 1998/03/10 18:48:52 roderick Exp $ + +dt := debian/tmp +prefix = `pwd`/$(dt) + +# Setting PREFIX at Makefile generation time loses because it might or +# might not match *perl*. If it does the resulting hierarchy is wrong. +# So, set it at install time, after the structure of the hierarchy has +# been determined. Since I have to add variables at install time anyway +# I set them all there. + +build: + dh_testdir + perl Makefile.PL + $(MAKE) + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) realclean + dh_clean + +binary-indep: build +# dh_testversion + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) \ + PREFIX=$(prefix)/usr \ + INSTALLMAN1DIR=$(prefix)/usr/man/man1 \ + INSTALLMAN3DIR=$(prefix)/usr/man/man3 \ + pure_perl_install + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installinit + dh_installcron + dh_installmanpages +# dh_undocumented + dh_installchangelogs + dh_strip + dh_compress + dh_fixperms + dh_suidregister + dh_installdeb + dh_shlibdeps + dh_gencontrol -u -isp +# dh_makeshlibs + dh_md5sums + dh_builddeb + +binary-arch: build + +binary: binary-indep binary-arch + +.PHONY: build clean binary-indep binary-arch binary -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libtime-period-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
