[libnanomsg-raw-perl] 02/04: Remove patches applied upstream.

Harlan Lieberman-Berg H.LiebermanBerg at gmail.com
Mon May 11 17:54:35 UTC 2015


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 19627e8048fc6efdd85c8b962d07eaaf43541698
Author: Harlan Lieberman-Berg <hlieberman at setec.io>
Date:   Mon May 11 13:51:35 2015 -0400

    Remove patches applied upstream.
---
 debian/patches/0001-fix-manpage-spelling.patch | 60 --------------------------
 debian/patches/0002-fix-5.20-errors.patch      | 31 -------------
 debian/patches/series                          |  2 -
 3 files changed, 93 deletions(-)

diff --git a/debian/patches/0001-fix-manpage-spelling.patch b/debian/patches/0001-fix-manpage-spelling.patch
deleted file mode 100644
index 85db6fc..0000000
--- a/debian/patches/0001-fix-manpage-spelling.patch
+++ /dev/null
@@ -1,60 +0,0 @@
-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/0002-fix-5.20-errors.patch b/debian/patches/0002-fix-5.20-errors.patch
deleted file mode 100644
index 2045d43..0000000
--- a/debian/patches/0002-fix-5.20-errors.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Description: Ensure that variable is initialized and stack has enough room.
- This was probably always a bug in the upstream code, but with perl
- versions smaller than 5.20, there was enough room that we didn't trample
- over things.
- .
- Many, many thanks should go to Nicolas Dandrimont <olasd at debian.org>, who
- was the primary author of this patch and helped me debug this problem
- for hours.
-Author: Harlan Lieberman-Berg <H.LiebermanBerg at gmail.com>
-Bug: https://rt.cpan.org/Ticket/Display.html?id=98340
-Forwarded: yes
---- a/Raw.xs
-+++ b/Raw.xs
-@@ -243,7 +243,7 @@
-     int level
-     int option
-   PREINIT:
--    size_t optvallen;
-+    size_t optvallen = sizeof(256);
-     int ret;
-   INIT:
-     RETVAL = newSV(257);
-@@ -465,7 +465,7 @@
-     int i;
-   PPCODE:
-     for (i = 0; i <= av_len(symbol_names); i++)
--      mPUSHs(SvREFCNT_inc(*av_fetch(symbol_names, i, 0)));
-+      mXPUSHs(SvREFCNT_inc(*av_fetch(symbol_names, i, 0)));
- 
- BOOT:
-   symbol_names = newAV();
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index b2a1a31..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,2 +0,0 @@
-0002-fix-5.20-errors.patch
-0001-fix-manpage-spelling.patch

-- 
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