r759 - in packages/libmath-spline-perl/trunk: . debian

Carlo Segre segre-guest@costa.debian.org
Mon, 14 Mar 2005 07:00:43 +0100


Author: segre-guest
Date: 2005-03-14 07:00:43 +0100 (Mon, 14 Mar 2005)
New Revision: 759

Added:
   packages/libmath-spline-perl/trunk/debian/
   packages/libmath-spline-perl/trunk/debian/changelog
   packages/libmath-spline-perl/trunk/debian/compat
   packages/libmath-spline-perl/trunk/debian/control
   packages/libmath-spline-perl/trunk/debian/copyright
   packages/libmath-spline-perl/trunk/debian/docs
   packages/libmath-spline-perl/trunk/debian/rules
   packages/libmath-spline-perl/trunk/debian/watch
Modified:
   packages/libmath-spline-perl/trunk/Spline.pm
Log:
Load libmath-spline-perl-0.01 into packages/libmath-spline-perl/trunk.


Modified: packages/libmath-spline-perl/trunk/Spline.pm
===================================================================
--- packages/libmath-spline-perl/trunk/Spline.pm	2005-03-14 06:00:23 UTC (rev 758)
+++ packages/libmath-spline-perl/trunk/Spline.pm	2005-03-14 06:00:43 UTC (rev 759)
@@ -1,4 +1,5 @@
 # $Id: Spline.pm,v 1.1 1995/12/26 17:28:17 willijar Exp $
+
 =head1 NAME
 
     Math::Spline  - Cubic Spline Interpolation of data

Added: packages/libmath-spline-perl/trunk/debian/changelog
===================================================================
--- packages/libmath-spline-perl/trunk/debian/changelog	2005-03-14 06:00:23 UTC (rev 758)
+++ packages/libmath-spline-perl/trunk/debian/changelog	2005-03-14 06:00:43 UTC (rev 759)
@@ -0,0 +1,6 @@
+libmath-spline-perl (0.01-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Carlo Segre <segre@iit.edu>  Fri, 12 Mar 2004 01:15:39 -0600
+

Added: packages/libmath-spline-perl/trunk/debian/compat
===================================================================
--- packages/libmath-spline-perl/trunk/debian/compat	2005-03-14 06:00:23 UTC (rev 758)
+++ packages/libmath-spline-perl/trunk/debian/compat	2005-03-14 06:00:43 UTC (rev 759)
@@ -0,0 +1 @@
+4

Added: packages/libmath-spline-perl/trunk/debian/control
===================================================================
--- packages/libmath-spline-perl/trunk/debian/control	2005-03-14 06:00:23 UTC (rev 758)
+++ packages/libmath-spline-perl/trunk/debian/control	2005-03-14 06:00:43 UTC (rev 759)
@@ -0,0 +1,16 @@
+Source: libmath-spline-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Carlo Segre <segre@iit.edu>
+Build-Depends: debhelper (>= 4.0.0), perl
+Standards-Version: 3.6.1
+
+Package: libmath-spline-perl
+Architecture: all
+Depends: ${perl:Depends}, libmath-derivative-perl
+Description: Cubic Spline Interpolation of data
+ This package provides cubic spline interpolation of numeric data. The
+ data is passed as references to two arrays containing the x and y
+ ordinates. It may be used as an exporter of the the numerical
+ functions or, more easily as a class module.

Added: packages/libmath-spline-perl/trunk/debian/copyright
===================================================================
--- packages/libmath-spline-perl/trunk/debian/copyright	2005-03-14 06:00:23 UTC (rev 758)
+++ packages/libmath-spline-perl/trunk/debian/copyright	2005-03-14 06:00:43 UTC (rev 759)
@@ -0,0 +1,13 @@
+This package was debianized by Carlo Segre <segre@iit.edu> on
+Fri, 12 Mar 2004 01:15:39 -0600.
+
+It was downloaded from http://search.cpan.org/authors/id/J/JA/JARW/
+
+Upstream Author: John A.R. Williams <J.A.R.Williams@aston.ac.uk>
+
+Copyright (c) 1995 John A.R. Williams. All rights reserved. This program is
+free software; you can redistribute it and/or modify it under the same terms
+as Perl itself.
+
+On Debian GNU/Linux systems, the complete text of these licenses can be found
+in /usr/share/common-licenses/GPL and /usr/share/common-licenses/Artistic.

Added: packages/libmath-spline-perl/trunk/debian/docs
===================================================================
--- packages/libmath-spline-perl/trunk/debian/docs	2005-03-14 06:00:23 UTC (rev 758)
+++ packages/libmath-spline-perl/trunk/debian/docs	2005-03-14 06:00:43 UTC (rev 759)
@@ -0,0 +1,2 @@
+README
+Release

Added: packages/libmath-spline-perl/trunk/debian/rules
===================================================================
--- packages/libmath-spline-perl/trunk/debian/rules	2005-03-14 06:00:23 UTC (rev 758)
+++ packages/libmath-spline-perl/trunk/debian/rules	2005-03-14 06:00:43 UTC (rev 759)
@@ -0,0 +1,58 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This is the debhelper compatibility version to use.
+# export DH_COMPAT=4
+
+package := $(shell grep Package debian/control | sed 's/^Package: //')
+version := $(shell head -1 debian/changelog | \
+                        perl -nle 'm/\S+\s+\((\S+)\)/ && print $$1')
+debtmp  := $(CURDIR)/debian/$(package)
+
+build:
+	dh_testdir
+	# Add here commands to compile the package.
+	perl Makefile.PL verbose INSTALLDIRS=vendor
+clean:
+	dh_testdir
+	dh_testroot
+	-$(MAKE) clean
+	rm -f Makefile.old
+	dh_clean
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+	$(MAKE) PREFIX=$(debtmp)/usr test install
+	rm -rf $(debtmp)/usr/lib
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_perl	
+	dh_installdocs
+	dh_installexamples
+#	dh_installmenu
+#	dh_installinit
+#	dh_installcron
+#	dh_installmanpages
+#	dh_undocumented
+	dh_installchangelogs
+	dh_compress
+	dh_fixperms
+#	dh_suidregister
+	dh_installdeb
+	dh_gencontrol
+#	dh_md5sums
+	dh_builddeb
+
+binary-arch: build install
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure


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

Added: packages/libmath-spline-perl/trunk/debian/watch
===================================================================
--- packages/libmath-spline-perl/trunk/debian/watch	2005-03-14 06:00:23 UTC (rev 758)
+++ packages/libmath-spline-perl/trunk/debian/watch	2005-03-14 06:00:43 UTC (rev 759)
@@ -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://search.cpan.org/CPAN/authors/id/J/JA/JARW/Math-Spline-(.*)\.tar\.gz	debian	uupdate