r84 - in packages/libfile-touch-perl/trunk: . debian

Allard Hoeve hoeve-guest@haydn.debian.org
Thu, 10 Jun 2004 07:45:17 -0600


Author: hoeve-guest
Date: 2004-06-10 07:45:12 -0600 (Thu, 10 Jun 2004)
New Revision: 84

Added:
   packages/libfile-touch-perl/trunk/debian/
   packages/libfile-touch-perl/trunk/debian/changelog
   packages/libfile-touch-perl/trunk/debian/control
   packages/libfile-touch-perl/trunk/debian/copyright
   packages/libfile-touch-perl/trunk/debian/rules
   packages/libfile-touch-perl/trunk/debian/watch
Log:
Load libfile-touch-perl-0.01 into packages/libfile-touch-perl/trunk.


Added: packages/libfile-touch-perl/trunk/debian/changelog
===================================================================
--- packages/libfile-touch-perl/trunk/debian/changelog	2004-06-10 13:44:01 UTC (rev 83)
+++ packages/libfile-touch-perl/trunk/debian/changelog	2004-06-10 13:45:12 UTC (rev 84)
@@ -0,0 +1,33 @@
+libfile-touch-perl (0.01-5) unstable; urgency=low
+
+  * Section is "perl", not "web" (closes: #250417)
+
+ -- Allard Hoeve <allard@byte.nl>  Mon, 24 May 2004 11:50:14 +0200
+
+libfile-touch-perl (0.01-4) unstable; urgency=low
+
+  * Mentioned group maintainership and upstream URL in debian/copyright
+  * Fixed a detail in the description in debian/control, a non-existing
+    file mentioned in debian/rules, added '$(MAKE) test' in debian/rules
+  * First version uploaded to Debian (Closes: #246756)
+
+ -- Gunnar Wolf <gwolf@debian.org>  Fri, 30 Apr 2004 16:54:19 -0500
+
+libfile-touch-perl (0.01-3) unstable; urgency=low
+
+  * Add Uploaders: line to add Joachim, Gunnar and me
+
+ -- Allard Hoeve <allard@byte.nl>  Mon, 26 Apr 2004 22:31:03 +0200
+
+libfile-touch-perl (0.01-2) unstable; urgency=low
+
+  * Made lintian-clean
+
+ -- Allard Hoeve <allard@byte.nl>  Wed, 10 Mar 2004 16:17:24 +0100
+
+libfile-touch-perl (0.01-1) unstable; urgency=low
+
+  * Initial Debian version.
+
+ -- Allard Hoeve <allard@byte.nl>  Fri, 09 Jan 2004 15:31:50 +0100
+

Added: packages/libfile-touch-perl/trunk/debian/control
===================================================================
--- packages/libfile-touch-perl/trunk/debian/control	2004-06-10 13:44:01 UTC (rev 83)
+++ packages/libfile-touch-perl/trunk/debian/control	2004-06-10 13:45:12 UTC (rev 84)
@@ -0,0 +1,14 @@
+Source: libfile-touch-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Allard Hoeve <allard@byte.nl>, Gunnar Wolf <gwolf@debian.org>, Joachim Breitner <nomeata@debian.org>
+Section: perl
+Priority: optional
+Standards-Version: 3.6.1
+Build-Depends-Indep: debhelper (>> 4.1), perl (>> 5.8), perl-modules
+
+Package: libfile-touch-perl
+Architecture: all
+Depends: ${perl:Depends}, perl-modules
+Description: perl File::Touch - touch-like functions for use in Perl
+ Update access and modification timestamps, creating nonexistent 
+ files where necessary.

Added: packages/libfile-touch-perl/trunk/debian/copyright
===================================================================
--- packages/libfile-touch-perl/trunk/debian/copyright	2004-06-10 13:44:01 UTC (rev 83)
+++ packages/libfile-touch-perl/trunk/debian/copyright	2004-06-10 13:45:12 UTC (rev 84)
@@ -0,0 +1,24 @@
+This is the Debian GNU/Linux version of the File::Touch Perl module.
+
+This package is maintained by the Debian Perl Group. For further
+information see http://pkg-perl.alioth.debian.org/
+
+It was downloaded from http://www.cpan.org/modules/by-module/File/
+
+Upstream author is Nigel Wetters (nigel@wetters.net)
+
+From the source:
+
+5. COPYRIGHT
+
+   Copyright (c) 2001, Nigel Wetters. All Rights Reserved.           
+   This module is free software. It may be used, redistributed
+   and/or modified under the same terms as Perl itself.
+
+Perl is distributed under either the Artistic licence or the GPL.
+
+The full text of the GPL is available on Debian systems in
+/usr/share/common-licenses/GPL
+
+The full text of the Artistic Licence is available on Debian systems in
+/usr/share/common-licenses/Artistic.

Added: packages/libfile-touch-perl/trunk/debian/rules
===================================================================
--- packages/libfile-touch-perl/trunk/debian/rules	2004-06-10 13:44:01 UTC (rev 83)
+++ packages/libfile-touch-perl/trunk/debian/rules	2004-06-10 13:45:12 UTC (rev 84)
@@ -0,0 +1,59 @@
+#! /usr/bin/make -f
+# -*-makefile-*-
+# debian/rules file for libfile-touch-perl
+
+export DH_COMPAT=4
+
+PERL	?= /usr/bin/perl
+
+package	:= $(firstword $(shell dh_listpackages))
+prefix	:= $(PWD)/debian/$(package)/usr
+
+version	:= $(shell dpkg-parsechangelog | \
+			sed -ne 's/^Version: *\([0-9]\+:\)*//p')
+
+tag:
+	cvs tag -c -F $(subst .,_,debian_version_$(version))
+ifeq ($(findstring -,$(version)),)
+	cvs tag -c -F $(subst .,_,upstream_version_$(version))
+endif
+
+build:	build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor PERL=$(PERL)
+	$(MAKE) LD_RUN_PATH=
+	$(MAKE) test
+	touch $@
+
+clean:	checkroot
+	rm -f build-stamp
+	-$(MAKE) distclean
+	dh_clean
+
+binary-indep:	checkroot build
+	dh_clean
+	dh_installdirs
+
+	$(MAKE) pure_install PREFIX=$(prefix)
+
+	dh_installdocs
+	dh_installchangelogs Changes
+
+	dh_compress
+	dh_fixperms
+	dh_perl
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-arch:	checkroot build
+
+binary:	binary-indep binary-arch
+
+checkroot:
+	dh_testdir
+	dh_testroot
+
+.PHONY:	binary binary-arch binary-indep clean checkroot build


Property changes on: packages/libfile-touch-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/libfile-touch-perl/trunk/debian/watch
===================================================================
--- packages/libfile-touch-perl/trunk/debian/watch	2004-06-10 13:44:01 UTC (rev 83)
+++ packages/libfile-touch-perl/trunk/debian/watch	2004-06-10 13:45:12 UTC (rev 84)
@@ -0,0 +1,6 @@
+# Example watch control file for uscan
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# Site		Directory		Pattern			Version	Script
+version=2
+http://www.cpan.org/modules/by-module/File/File-Touch-(\d.*)\.tar\.gz