[libmatch-simple-xs-perl] 01/01: Initial packaging.

Jonas Smedegaard dr at jones.dk
Sun May 11 12:37:38 UTC 2014


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

js pushed a commit to branch master
in repository libmatch-simple-xs-perl.

commit cdacaece201278902471ef7b1a56ce1d343c92a6
Author: Jonas Smedegaard <dr at jones.dk>
Date:   Sun May 11 14:34:17 2014 +0200

    Initial packaging.
---
 debian/README.source   |  11 ++++++
 debian/changelog       |   6 +++
 debian/compat          |   1 +
 debian/control         |  37 +++++++++++++++++
 debian/control.in      |  28 +++++++++++++
 debian/copyright       |  63 +++++++++++++++++++++++++++++
 debian/copyright_hints | 105 +++++++++++++++++++++++++++++++++++++++++++++++++
 debian/gbp.conf        |   8 ++++
 debian/rules           |  41 +++++++++++++++++++
 debian/source/format   |   1 +
 debian/watch           |   4 ++
 11 files changed, 305 insertions(+)

diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..f88449e
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,11 @@
+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
+
+
+ -- Jonas Smedegaard <dr at jones.dk>  Mon, 18 Feb 2013 12:55:37 +0100
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..3bb65d5
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+libmatch-simple-xs-perl (0.001-1) unstable; urgency=low
+
+  * Initial packaging release.
+    Closes: bug#747722.
+
+ -- Jonas Smedegaard <dr at jones.dk>  Sun, 11 May 2014 14:34:06 +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..a94c4fb
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,37 @@
+Source: libmatch-simple-xs-perl
+Section: perl
+Priority: optional
+Build-Depends: cdbs,
+ devscripts,
+ perl,
+ debhelper,
+ dh-buildinfo,
+ libexporter-tiny-perl,
+ liblist-moreutils-perl,
+ libsub-infix-perl,
+ perl (>= 5.13.4) | libtest-simple-perl (>= 0.96),
+ libtest-fatal-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jonas Smedegaard <dr at jones.dk>
+Standards-Version: 3.9.5
+Vcs-Git: git://anonscm.debian.org/git/pkg-perl/packages/libmatch-simple-xs-perl
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libmatch-simple-xs-perl.git
+Homepage: https://metacpan.org/release/match-simple-XS
+
+Package: libmatch-simple-xs-perl
+Architecture: any
+Depends: ${cdbs:Depends},
+ ${misc:Depends},
+ ${perl:Depends},
+ ${shlibs:Depends}
+Recommends: ${cdbs:Recommends}
+Suggests: ${cdbs:Suggests}
+Description: XS backend for match::simple
+ match::simple::XS is a faster XS-based implementation of match::simple.
+ .
+ Depending on what sort of matches done, it is likely to be several
+ times faster. In extreme cases, such as matching a string in an
+ arrayref, it can be twenty-five times faster, or more. However, where
+ $that is a single regexp, it's around 30% slower.
+ .
+ Overall though, the performance improvement should be worthwhile.
diff --git a/debian/control.in b/debian/control.in
new file mode 100644
index 0000000..53fd36b
--- /dev/null
+++ b/debian/control.in
@@ -0,0 +1,28 @@
+Source: libmatch-simple-xs-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.5
+Vcs-Git: git://anonscm.debian.org/git/pkg-perl/packages/libmatch-simple-xs-perl
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libmatch-simple-xs-perl.git
+Homepage: https://metacpan.org/release/match-simple-XS
+
+Package: libmatch-simple-xs-perl
+Architecture: any
+Depends: ${cdbs:Depends},
+ ${misc:Depends},
+ ${perl:Depends},
+ ${shlibs:Depends}
+Recommends: ${cdbs:Recommends}
+Suggests: ${cdbs:Suggests}
+Description: XS backend for match::simple
+ match::simple::XS is a faster XS-based implementation of match::simple.
+ .
+ Depending on what sort of matches done, it is likely to be several
+ times faster. In extreme cases, such as matching a string in an
+ arrayref, it can be twenty-five times faster, or more. However, where
+ $that is a single regexp, it's around 30% slower.
+ .
+ Overall though, the performance improvement should be worthwhile.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..fe50dfa
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,63 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: match::simple::XS
+Upstream-Contact: http://rt.cpan.org/Dist/Display.html?Queue=match-simple-XS
+Source: http://search.cpan.org/dist/match-simple-XS/
+ git://github.com/tobyink/p5-match-simple-xs
+
+Files: *
+Copyright: 2012-2014, Toby Inkster <tobyink at cpan.org>
+License: Artistic or GPL-1+
+Comment:
+ License:
+ .
+ This is free software; you can redistribute it and/or modify it under
+ the same terms as the Perl 5 programming language system itself.
+ .
+ Comment:
+ .
+ Perl 5 is licensed under either the 'Artistic license' or the 'GNU
+ General Public License' version 1 or later.
+
+Files: pport.h
+Copyright: 2004-2010, Marcus Holland-Moritz
+License: Artistic or GPL-1+
+Comment:
+ License:
+ .
+ This program is free software; you can redistribute it and/or modify it
+ under the same terms as Perl itself.
+
+Files: debian/*
+Copyright: 2014, Jonas Smedegaard <dr at jones.dk>
+License: GPL-3+
+
+License: Artistic
+ Comment:
+ .
+ On Debian 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..a4ca9ad
--- /dev/null
+++ b/debian/copyright_hints
@@ -0,0 +1,105 @@
+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: CREDITS
+ Changes
+ INSTALL
+ MANIFEST
+ META.json
+ META.yml
+ Makefile.PL
+ SIGNATURE
+ XS.xs
+ debian/README.source
+ debian/compat
+ debian/control
+ debian/control.in
+ debian/gbp.conf
+ debian/source/format
+ debian/watch
+ dist.ini
+ doap.ttl
+ fallback/const-c.inc
+ fallback/const-xs.inc
+Copyright: *No copyright*
+License: UNKNOWN
+ FIXME
+
+Files: CONTRIBUTING
+ README
+ lib/match/simple/XS.pm
+ t/01basic.t
+ t/02simple.t
+ t/03coderefs.t
+Copyright: 2012-2013, Toby Inkster
+  2013-2014, Toby Inkster
+  2014, Toby Inkster
+License: UNKNOWN
+ FIXME
+
+Files: debian/rules
+Copyright: 2014, Jonas Smedegaard <dr at jones.dk>
+License: GPL-3+
+ FIXME
+
+Files: LICENSE
+Copyright: 1989, Free Software Foundation, Inc
+  19xx name of author
+  19yy <name of author>
+  2014, Toby Inkster
+  disclaimer" for the program, if
+  interest in the
+  the software, and
+License: GPL-ever
+ FIXME
+
+Files: ppport.h
+Copyright: && HvNAME(hv) \
+  (( >= 32 && < 127))
+  (( >= 33 && <= 47) || ( >= 58 && <= 64) || ( >= 91 && <= 96) || ( >= 123 && <= 126))
+  ((U8) < ' ' || == 127)
+  ((U8) <= 127)
+  (->cop_file)
+  (->cop_filegv)
+  (->cop_stash)
+  (->cop_stashpv)
+  (CopFILE ? GvAV(gv_fetchfile(CopFILE)) : Nullav)
+  (CopFILE ? GvSV(gv_fetchfile(CopFILE)) : Nullsv)
+  (CopFILE ? gv_fetchfile(CopFILE) : Nullgv)
+  (CopFILEGV ? GvAV(CopFILEGV) : Nullav)
+  (CopFILEGV ? GvSV(CopFILEGV) : Nullsv)
+  (CopFILESV ? SvPVX(CopFILESV) : Nullch)
+  (CopSTASH ? HvNAME(CopSTASH) : Nullch)
+  (CopSTASHPV ? gv_stashpv(CopSTASHPV,GV_ADD) : Nullhv)
+  (isALNUM || isPUNCT)
+  (isALPHA || isDIGIT)
+  (isDIGIT || ( >= 'a' && <= 'f') || ( >= 'A' && <= 'F'))
+  (isSPACE || == '\v')
+  1999, Kenneth Albanowski
+  2001, Paul Marquess
+  2004-2010, Marcus Holland-Moritz
+  == (hv))
+  == HvNAME(hv) \
+  isalnum
+  isascii
+  iscntrl
+  isgraph
+  isprint
+  ispunct
+  isxdigit
+License: Perl
+ FIXME
+
+Files: COPYRIGHT
+Copyright: 2014, Toby Inkster
+  2014, the holder(s)
+  None
+  This software is 2013-2014, by Toby Inkster
+  This software is 2014, by Toby Inkster
+  Unknown
+License: UNKNOWN
+ FIXME
+
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..790a2f9
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,8 @@
+# Configuration file for git-buildpackage and friends
+
+[DEFAULT]
+pristine-tar = True
+sign-tags = True
+
+[git-import-orig]
+filter = .gitignore
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..a806d2a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,41 @@
+#!/usr/bin/make -f
+# -*- mode: makefile; coding: utf-8 -*-
+# Copyright © 2014 Jonas Smedegaard <dr at jones.dk>
+# Description: Main Debian packaging script for match::simple::XS
+#
+# 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-makemaker.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+pkg = $(DEB_SOURCE_PACKAGE)
+
+DEB_UPSTREAM_PACKAGE = match-simple-XS
+DEB_UPSTREAM_URL = http://www.cpan.org/CPAN/authors/id/T/TO/TOBYINK
+
+# needed by upstream build and (always) at runtime
+deps = libexporter-tiny-perl, liblist-moreutils-perl, libsub-infix-perl
+
+# Needed by upstream testsuite
+deps-test = perl (>= 5.13.4) | libtest-simple-perl (>= 0.96)
+deps-test +=, libtest-fatal-perl
+
+# needed (often) at runtime
+recommends = libmatch-simple-xs-perl
+
+CDBS_BUILD_DEPENDS +=, $(deps), $(deps-test)
+CDBS_DEPENDS_$(pkg) = $(deps)
+CDBS_RECOMMENDS_$(pkg) = $(recommends)
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..ff5f2c1
--- /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/T/TO/TOBYINK/match-simple-XS-([\d.]+)\.tar\.gz
+http://search.cpan.org/dist/match-simple-XS/ .*/match-simple-XS-([\d.]+)\.tar\.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libmatch-simple-xs-perl.git



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