r120 - in packages/libparams-classify-perl/trunk: . debian

Allard Hoeve hoeve-guest@haydn.debian.org
Thu, 10 Jun 2004 08:08:56 -0600


Author: hoeve-guest
Date: 2004-06-10 08:08:50 -0600 (Thu, 10 Jun 2004)
New Revision: 120

Added:
   packages/libparams-classify-perl/trunk/debian/
   packages/libparams-classify-perl/trunk/debian/changelog
   packages/libparams-classify-perl/trunk/debian/compat
   packages/libparams-classify-perl/trunk/debian/control
   packages/libparams-classify-perl/trunk/debian/copyright
   packages/libparams-classify-perl/trunk/debian/docs
   packages/libparams-classify-perl/trunk/debian/rules
Log:
Load libparams-classify-perl-0.000 into
packages/libparams-classify-perl/trunk.


Added: packages/libparams-classify-perl/trunk/debian/changelog
===================================================================
--- packages/libparams-classify-perl/trunk/debian/changelog	2004-06-10 14:07:31 UTC (rev 119)
+++ packages/libparams-classify-perl/trunk/debian/changelog	2004-06-10 14:08:50 UTC (rev 120)
@@ -0,0 +1,6 @@
+libparams-classify-perl (0.000-1) unstable; urgency=low
+
+  * Initial Release (Closes: #240661).
+
+ -- Florian Ragwitz <florian@mookooh.org>  Sun,  2 May 2004 21:00:20 +0200
+

Added: packages/libparams-classify-perl/trunk/debian/compat
===================================================================
--- packages/libparams-classify-perl/trunk/debian/compat	2004-06-10 14:07:31 UTC (rev 119)
+++ packages/libparams-classify-perl/trunk/debian/compat	2004-06-10 14:08:50 UTC (rev 120)
@@ -0,0 +1 @@
+4

Added: packages/libparams-classify-perl/trunk/debian/control
===================================================================
--- packages/libparams-classify-perl/trunk/debian/control	2004-06-10 14:07:31 UTC (rev 119)
+++ packages/libparams-classify-perl/trunk/debian/control	2004-06-10 14:08:50 UTC (rev 120)
@@ -0,0 +1,22 @@
+Source: libparams-classify-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Florian Ragwitz <florian@mookooh.org>, Joachim Breitner <nomeata@debian.org>
+Build-Depends: debhelper (>= 4.0.0), perl (>= 5.6.0-16)
+Standards-Version: 3.6.1
+
+Package: libparams-classify-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: Perl module for argument type classification
+ This module provides various type-testing functions. These are intended
+ for functions that, unlike most Perl code, care what type of data they
+ are operating on. For example, some functions wish to behave
+ differently depending on the type of their arguments (like overloaded
+ functions in C++).
+ .
+ These functions only provide type classification; they do not enforce
+ type restrictions. Type enforcement may, of course, be built using
+ these classification functions, but the reader's attention is drawn to
+ libparams-validate-perl.

Added: packages/libparams-classify-perl/trunk/debian/copyright
===================================================================
--- packages/libparams-classify-perl/trunk/debian/copyright	2004-06-10 14:07:31 UTC (rev 119)
+++ packages/libparams-classify-perl/trunk/debian/copyright	2004-06-10 14:08:50 UTC (rev 120)
@@ -0,0 +1,17 @@
+This package was debianized by Florian Ragwitz <florian@mookooh.org> on
+Sun,  2 May 2004 21:00:20 +0200.
+
+It was downloaded from http://search.cpan.org/~zefram/Params-Classify/
+
+Upstream Author: Andrew Main (Zefram) <zefram@fysh.org>
+
+Copyright: GNU/GPL, Artistic
+
+ Copyright (C) 2004 Andrew Main (Zefram) <zefram@fysh.org>
+
+ This module is free software; you can redistribute it and/or modify it
+ under the same terms as Perl itself. (GPL or Artistic)
+
+ 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'.

Added: packages/libparams-classify-perl/trunk/debian/docs
===================================================================
--- packages/libparams-classify-perl/trunk/debian/docs	2004-06-10 14:07:31 UTC (rev 119)
+++ packages/libparams-classify-perl/trunk/debian/docs	2004-06-10 14:08:50 UTC (rev 120)
@@ -0,0 +1 @@
+README

Added: packages/libparams-classify-perl/trunk/debian/rules
===================================================================
--- packages/libparams-classify-perl/trunk/debian/rules	2004-06-10 14:07:31 UTC (rev 119)
+++ packages/libparams-classify-perl/trunk/debian/rules	2004-06-10 14:08:50 UTC (rev 120)
@@ -0,0 +1,57 @@
+#!/usr/bin/make -f
+
+ifndef PERL
+	PERL=/usr/bin/perl
+endif
+
+configure: configure-stamp
+
+configure-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	touch configure-stamp
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+	$(MAKE)
+	$(MAKE) test
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	-$(MAKE) realclean
+	dh_clean build-stamp configure-stamp
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/libparams-classify-perl
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs 
+	dh_installdocs
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_perl
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure


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