[libnanomsg-raw-perl] 01/01: Initial packaging.

Harlan Lieberman-Berg H.LiebermanBerg at gmail.com
Thu Jul 24 17:42:54 UTC 2014


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

hlieberman-guest pushed a commit to branch master
in repository libnanomsg-raw-perl.

commit df7f1c5b7501238e2161901f690c292caefb108e
Author: Harlan Lieberman-Berg <H.LiebermanBerg at gmail.com>
Date:   Thu Jul 24 13:40:20 2014 -0400

    Initial packaging.
---
 debian/changelog                               |  5 +++
 debian/compat                                  |  1 +
 debian/control                                 | 20 +++++++++
 debian/copyright                               | 33 ++++++++++++++
 debian/patches/0001-fix-manpage-spelling.patch | 60 ++++++++++++++++++++++++++
 debian/patches/series                          |  1 +
 debian/rules                                   |  5 +++
 debian/source/format                           |  1 +
 debian/watch                                   |  2 +
 9 files changed, 128 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6fcc97b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libnanomsg-raw-perl (0.02-1) unstable; urgency=low
+
+  * Initial release (Closes: #754216)
+
+ -- Harlan Lieberman-Berg <H.LiebermanBerg at gmail.com>  Wed, 09 Jul 2014 10:28:23 -0400
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..0c21e73
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,20 @@
+Source: libnanomsg-raw-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Harlan Lieberman-Berg <H.LiebermanBerg at gmail.com>
+Build-Depends: debhelper (>= 9.20120312), libnanomsg-dev,
+	       libtest-tcp-perl, libtest-fatal-perl
+Standards-Version: 3.9.5
+Homepage: https://metacpan.org/pod/NanoMsg::Raw
+Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libnanomsg-raw-perl.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libnanomsg-raw-perl.git;a=summary
+
+Package: libnanomsg-raw-perl
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}, libnanomsg0
+Description: low-level interface to nanomsg for Perl
+ NanoMsg::Raw is a binding directly to the underlying nanomsg C library.  
+ It is intended to provide a very low-level and manual interface; it does 
+ not provide a convenient high-level API, integration with event loops, 
+ or any other abstractions.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..0ea1318
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,33 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: NanoMsg::Raw
+Upstream-Contact: Florian Ragwitz <rafl at debian.org>
+Source: https://metacpan.org/pod/NanoMsg::Raw
+License: Expat
+
+Files: *
+Copyright: 2013, Florian Ragwitz <rafl at debian.org>
+License: Expat
+
+Files: debian/*
+Copyright: 2014, Harlan Lieberman-Berg <H.LiebermanBerg at gmail.com>
+License: Expat
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+ .
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/debian/patches/0001-fix-manpage-spelling.patch b/debian/patches/0001-fix-manpage-spelling.patch
new file mode 100644
index 0000000..85db6fc
--- /dev/null
+++ b/debian/patches/0001-fix-manpage-spelling.patch
@@ -0,0 +1,60 @@
+Description: Fix minor misspellings in POD.
+Author: Harlan Lieberman-Berg <H.LiebermanBerg at gmail.com>
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=97465
+Forwarded: yes
+--- a/lib/NanoMsg/Raw.pm
++++ b/lib/NanoMsg/Raw.pm
+@@ -93,7 +93,7 @@
+ 
+ C<REQREP>
+ 
+-allows to build clusters of stateless services to process user requests
++allows one to build clusters of stateless services to process user requests
+ 
+ =item *
+ 
+@@ -112,7 +112,7 @@
+ 
+ C<SURVEY>
+ 
+-allows to query state of multiple applications in a single go
++allows one to query state of multiple applications in a single go
+ 
+ =back
+ 
+@@ -1093,7 +1093,7 @@
+ separate servers. These applications can then communicate via PAIR sockets.
+ 
+ The downside of this protocol is that its scaling properties are very
+-limited. Splitting the application into two pieces allows to scale to two
++limited. Splitting the application into two pieces allows one to scale to two
+ servers. To add the third server to the cluster, application has to be split
+ once more, say be separating HR functionality into hiring module and salary
+ computation module. Whenever possible, try to use one of the more scalable
+@@ -1202,7 +1202,7 @@
+ 
+ =head2 Survey protocol
+ 
+-Allows to broadcast a survey to multiple locations and gather the responses.
++allows one to broadcast a survey to multiple locations and gather the responses.
+ 
+ =head3 Socket Types
+ 
+@@ -1307,7 +1307,7 @@
+ 
+ =head2 In-process transport
+ 
+-The in-process transport allows to send messages between threads or modules inside a
++The in-process transport allows one to send messages between threads or modules inside a
+ process. In-process address is an arbitrary case-sensitive string preceded by
+ C<inproc://> protocol specifier. All in-process addresses are visible from any
+ module within the process. They are not visible from outside of the process.
+@@ -1316,7 +1316,7 @@
+ C<NN_RCVBUF> socket option on the receiving end of the connection. The
+ C<NN_SNDBUF> socket option is ignored. In addition to the buffer, one message of
+ arbitrary size will fit into the buffer. That way, even messages larger than the
+-buffer can be transfered via inproc connection.
++buffer can be transferred via inproc connection.
+ 
+ This transport's ID is C<NN_INPROC>.
+ 
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..d03b1bd
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-fix-manpage-spelling.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..d003324
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,5 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+%:
+	dh $@ 
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..9fdbea9
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://metacpan.org/release/NanoMsg-Raw .*/NanoMsg-Raw-([\d.]+)\.tar\.gz
\ No newline at end of file

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libnanomsg-raw-perl.git



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