r990 - in packages/libmath-combinatorics-perl/trunk: . debian

Carlo Segre segre-guest@costa.debian.org
Sat, 14 May 2005 23:36:57 +0000


Author: segre-guest
Date: 2005-05-14 23:36:56 +0000 (Sat, 14 May 2005)
New Revision: 990

Added:
   packages/libmath-combinatorics-perl/trunk/debian/
   packages/libmath-combinatorics-perl/trunk/debian/changelog
   packages/libmath-combinatorics-perl/trunk/debian/compat
   packages/libmath-combinatorics-perl/trunk/debian/control
   packages/libmath-combinatorics-perl/trunk/debian/copyright
   packages/libmath-combinatorics-perl/trunk/debian/docs
   packages/libmath-combinatorics-perl/trunk/debian/rules
   packages/libmath-combinatorics-perl/trunk/debian/watch
Log:
Load libmath-combinatorics-perl-0.04 into
packages/libmath-combinatorics-perl/trunk.


Added: packages/libmath-combinatorics-perl/trunk/debian/changelog
===================================================================
--- packages/libmath-combinatorics-perl/trunk/debian/changelog	2005-05-14 23:36:19 UTC (rev 989)
+++ packages/libmath-combinatorics-perl/trunk/debian/changelog	2005-05-14 23:36:56 UTC (rev 990)
@@ -0,0 +1,8 @@
+libmath-combinatorics-perl (0.04-1) unstable; urgency=low
+
+  * Initial Release (Closes: #??????)
+  * Maintainer - 
+    Debian Perl Group <pkg-perl-maintainer@lists.alioth.debian.org> 
+    via Carlo Segre <segre@iit.edu>
+
+ -- Carlo Segre <segre@iit.edu>  Mon,  2 May 2005 14:45:06 -0500

Added: packages/libmath-combinatorics-perl/trunk/debian/compat
===================================================================
--- packages/libmath-combinatorics-perl/trunk/debian/compat	2005-05-14 23:36:19 UTC (rev 989)
+++ packages/libmath-combinatorics-perl/trunk/debian/compat	2005-05-14 23:36:56 UTC (rev 990)
@@ -0,0 +1 @@
+4

Added: packages/libmath-combinatorics-perl/trunk/debian/control
===================================================================
--- packages/libmath-combinatorics-perl/trunk/debian/control	2005-05-14 23:36:19 UTC (rev 989)
+++ packages/libmath-combinatorics-perl/trunk/debian/control	2005-05-14 23:36:56 UTC (rev 990)
@@ -0,0 +1,23 @@
+Source: libmath-combinatorics-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Carlo Segre <segre@iit.edu>
+Build-Depends-Indep: debhelper (>= 4.0.0), perl
+Standards-Version: 3.6.1
+
+Package: libmath-combinatorics-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: Perform combinations and permutations on lists
+ Combinatorics is the branch of mathematics studying the enumeration,
+ combination, and permutation of sets of elements and the mathematical
+ relations that characterize their properties. As a jumping off point,
+ refer to:
+ .
+ http://mathworld.wolfram.com/Combinatorics.html
+ .
+ This module provides a pure-perl implementation of nCk, nPk, and n!
+ (combination, permutation, and factorial, respectively). Functional and
+ object-oriented usages allow problems such as the following to be
+ solved:

Added: packages/libmath-combinatorics-perl/trunk/debian/copyright
===================================================================
--- packages/libmath-combinatorics-perl/trunk/debian/copyright	2005-05-14 23:36:19 UTC (rev 989)
+++ packages/libmath-combinatorics-perl/trunk/debian/copyright	2005-05-14 23:36:56 UTC (rev 990)
@@ -0,0 +1,13 @@
+This package was debianized by Carlo Segre <segre@iit.edu> on
+Mon,  2 May 2005 14:45:06 -0500.
+
+It was downloaded from http://search.cpan.org/CPAN/authors/id/A/AL/ALLENDAY/
+
+Upstream Author: Allen Day <allenday@ucla.edu>
+
+Copyright (c) 2004 Allen Day. 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-combinatorics-perl/trunk/debian/docs
===================================================================
--- packages/libmath-combinatorics-perl/trunk/debian/docs	2005-05-14 23:36:19 UTC (rev 989)
+++ packages/libmath-combinatorics-perl/trunk/debian/docs	2005-05-14 23:36:56 UTC (rev 990)
@@ -0,0 +1,2 @@
+README
+Changes

Added: packages/libmath-combinatorics-perl/trunk/debian/rules
===================================================================
--- packages/libmath-combinatorics-perl/trunk/debian/rules	2005-05-14 23:36:19 UTC (rev 989)
+++ packages/libmath-combinatorics-perl/trunk/debian/rules	2005-05-14 23:36:56 UTC (rev 990)
@@ -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-combinatorics-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/libmath-combinatorics-perl/trunk/debian/watch
===================================================================
--- packages/libmath-combinatorics-perl/trunk/debian/watch	2005-05-14 23:36:19 UTC (rev 989)
+++ packages/libmath-combinatorics-perl/trunk/debian/watch	2005-05-14 23:36:56 UTC (rev 990)
@@ -0,0 +1,2 @@
+version=2
+http://search.cpan.org/CPAN/authors/id/A/AL/ALLENDAY/Math-Derivative-(.*)\.tar\.gz	debian	uupdate