[libmath-cartesian-product-perl] 01/01: Initial packaging.

Jonas Smedegaard dr at jones.dk
Tue May 19 00:49:12 UTC 2015


This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository libmath-cartesian-product-perl.

commit 3a6d423d5cb21c3a1fde126d916bbfe2965d2e19
Author: Jonas Smedegaard <dr at jones.dk>
Date:   Tue May 19 02:41:06 2015 +0200

    Initial packaging.
---
 debian/README.source   | 25 +++++++++++++++++++++++
 debian/changelog       |  6 ++++++
 debian/compat          |  1 +
 debian/control         | 38 +++++++++++++++++++++++++++++++++++
 debian/control.in      | 33 ++++++++++++++++++++++++++++++
 debian/copyright       | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright_hints | 34 +++++++++++++++++++++++++++++++
 debian/gbp.conf        |  8 ++++++++
 debian/rules           | 27 +++++++++++++++++++++++++
 debian/source/format   |  1 +
 debian/watch           |  4 ++++
 11 files changed, 231 insertions(+)

diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..5c5203c
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,25 @@
+Packaging notes
+===============
+
+CDBS+git-buildpackage
+---------------------
+
+This source package uses CDBS and git-buildpackage.  NMUs need not (but
+are encouraged to) make special use of these tools.  In particular, the
+debian/control.in file can be completely ignored.
+
+More info here: http://wiki.debian.org/CDBS+git-buildpackage
+
+
+Circular build-dependencies
+---------------------
+
+This package is problematic to bootstrap, as some of the declared
+build-dependencies cause bootstrapping loops.
+
+For a bootstrappable (but potentially crippled) build, set environment
+variables DEB_BUILD_PROFILE and DEB_MAINTAINER_MODE, and clean before
+building.  See also <https://wiki.debian.org/DebianBootstrap>.
+
+
+ -- Jonas Smedegaard <dr at jones.dk>  Fri, 07 Jun 2013 23:02:51 +0200
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0a61c5b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+libmath-cartesian-product-perl (1.008-1) unstable; urgency=low
+
+  * Initial packaging release.
+    Closes: bug#785674.
+
+ -- Jonas Smedegaard <dr at jones.dk>  Tue, 19 May 2015 02:40:46 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..7108f6f
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,38 @@
+Source: libmath-cartesian-product-perl
+Section: perl
+Priority: optional
+Build-Depends: cdbs,
+ devscripts,
+ perl,
+ libmodule-build-perl,
+ debhelper,
+ dh-buildinfo
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jonas Smedegaard <dr at jones.dk>
+Standards-Version: 3.9.6
+Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libmath-cartesian-product-perl
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmath-cartesian-product-perl.git
+Homepage: https://metacpan.org/release/Math-Cartesian-Product
+
+Package: libmath-cartesian-product-perl
+Architecture: all
+Depends: ${cdbs:Depends},
+ ${misc:Depends},
+ ${perl:Depends}
+Description: generate the Cartesian product of zero or more lists
+ Math::Cartesian::Product generates the Cartesian product of zero or
+ more lists.
+ .
+ Given two lists, say: [a,b] and [1,2,3], the Cartesian product is the
+ set of all ordered pairs:
+ .
+ (a,1), (a,2), (a,3), (b,1), (b,2), (b,3)
+ .
+ which select their first element from all the possibilities listed in
+ the first list, and select their second element from all the
+ possibilities in the second list.
+ .
+ The idea can be generalized to n-tuples selected from n lists where all
+ the elements of the first list are combined with all the elements of
+ the second list, the results of which are then combined with all the
+ member of the third list and so on over all the input lists.
diff --git a/debian/control.in b/debian/control.in
new file mode 100644
index 0000000..8db3eab
--- /dev/null
+++ b/debian/control.in
@@ -0,0 +1,33 @@
+Source: libmath-cartesian-product-perl
+Section: perl
+Priority: optional
+Build-Depends: @cdbs@
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jonas Smedegaard <dr at jones.dk>
+Standards-Version: 3.9.6
+Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libmath-cartesian-product-perl
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libmath-cartesian-product-perl.git
+Homepage: https://metacpan.org/release/Math-Cartesian-Product
+
+Package: libmath-cartesian-product-perl
+Architecture: all
+Depends: ${cdbs:Depends},
+ ${misc:Depends},
+ ${perl:Depends}
+Description: generate the Cartesian product of zero or more lists
+ Math::Cartesian::Product generates the Cartesian product of zero or
+ more lists.
+ .
+ Given two lists, say: [a,b] and [1,2,3], the Cartesian product is the
+ set of all ordered pairs:
+ .
+ (a,1), (a,2), (a,3), (b,1), (b,2), (b,3)
+ .
+ which select their first element from all the possibilities listed in
+ the first list, and select their second element from all the
+ possibilities in the second list.
+ .
+ The idea can be generalized to n-tuples selected from n lists where all
+ the elements of the first list are combined with all the elements of
+ the second list, the results of which are then combined with all the
+ member of the third list and so on over all the input lists.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..8af5979
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,54 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Math::Cartesian::Product
+Upstream-Contact: https://github.com/kasei/Math-Cartesian-Product/issues
+Source: http://search.cpan.org/dist/Math-Cartesian-Product/
+ git://github.com/kasei/Math-Cartesian-Product
+
+Files: *
+Copyright: 2006, Philip R Brenan <PhilipRBrenan at appaapps.com>
+License: Artistic or GPL-1+
+Comment:
+ License:
+ .
+ This module is free software. It may be used, redistributed and/or
+ modified under the same terms as Perl itself.
+ .
+ Comment:
+ .
+ Perl 5 is licensed under either the 'Artistic license' or the 'GNU
+ General Public License' version 1 or later.
+
+Files: debian/*
+Copyright: 2015, Jonas Smedegaard <dr at jones.dk>
+License: GPL-3+
+
+License: Artistic
+ Comment:
+ .
+ On Debian GNU systems the 'Artistic License' is located in
+ '/usr/share/common-licenses/Artistic'.
+
+License: GPL-1+
+ Comment:
+ .
+ On Debian systems the 'GNU General Public License' version 1 is located
+ in '/usr/share/common-licenses/GPL-1'.
+
+License: GPL-3+
+ This program is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by the
+ Free Software Foundation; either version 3, or (at your option) any
+ later version.
+ .
+ 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 the GNU
+ General Public License for more details.
+ .
+ Comment:
+ .
+ On Debian systems the 'GNU General Public License' version 3 is located
+ in '/usr/share/common-licenses/GPL-3'.
+ .
+ You should have received a copy of the 'GNU General Public License'
+ along with this program.  If not, see <http://www.gnu.org/licenses/>.
diff --git a/debian/copyright_hints b/debian/copyright_hints
new file mode 100644
index 0000000..a8f357b
--- /dev/null
+++ b/debian/copyright_hints
@@ -0,0 +1,34 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: FIXME
+Upstream-Contact: FIXME
+Source: FIXME
+Disclaimer: Autogenerated by CDBS
+
+Files: Build.PL
+ CHANGES
+ MANIFEST
+ META.json
+ META.yml
+ debian/README.source
+ debian/compat
+ debian/control
+ debian/control.in
+ debian/gbp.conf
+ debian/source/format
+ debian/watch
+ t/test.t
+Copyright: *No copyright*
+License: UNKNOWN
+ FIXME
+
+Files: README
+ lib/Math/Cartesian/Product.pm
+Copyright: 2009, Philip R Brenan
+License: UNKNOWN
+ FIXME
+
+Files: debian/rules
+Copyright: 2015, Jonas Smedegaard <dr at jones.dk>
+License: GPL-3+
+ FIXME
+
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..1f8d409
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,8 @@
+# Configuration file for git-buildpackage and friends
+
+[DEFAULT]
+pristine-tar = True
+sign-tags = True
+
+[import-orig]
+filter = .gitignore
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..46f0f70
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,27 @@
+#!/usr/bin/make -f
+# -*- mode: makefile; coding: utf-8 -*-
+# Copyright © 2015 Jonas Smedegaard <dr at jones.dk>
+# Description: Main Debian packaging script for Math::Cartesian::Product
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3, or (at your option)
+# any later version.
+#
+# 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 the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+include /usr/share/cdbs/1/rules/upstream-tarball.mk
+include /usr/share/cdbs/1/rules/utils.mk
+include /usr/share/cdbs/1/class/perl-build.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+pkg = $(DEB_SOURCE_PACKAGE)
+
+DEB_UPSTREAM_PACKAGE = Math-Cartesian-Product
+DEB_UPSTREAM_URL = http://www.cpan.org/authors/id/P/PR/PRBRENAN
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..05a1dee
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+# Run the "uscan" command to check for upstream updates and more.
+version=3
+http://www.cpan.org/authors/id/P/PR/PRBRENAN/Math-Cartesian-Product-([\d.]+)\.tar\.gz
+https://metacpan.org/release/Math-Cartesian-Product .*/Math-Cartesian-Product-([\d.]+)\.tar\.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libmath-cartesian-product-perl.git



More information about the Pkg-perl-cvs-commits mailing list