[arch-commits] Commit in zeromq/repos (6 files)

Kyle Keen kkeen at nymeria.archlinux.org
Tue Dec 17 01:13:09 UTC 2013


    Date: Tuesday, December 17, 2013 @ 02:13:09
  Author: kkeen
Revision: 102639

archrelease: copy trunk to community-i686, community-x86_64

Added:
  zeromq/repos/community-i686/PKGBUILD
    (from rev 102638, zeromq/trunk/PKGBUILD)
  zeromq/repos/community-x86_64/PKGBUILD
    (from rev 102638, zeromq/trunk/PKGBUILD)
Deleted:
  zeromq/repos/community-i686/LIBZMQ-569.patch
  zeromq/repos/community-i686/PKGBUILD
  zeromq/repos/community-x86_64/LIBZMQ-569.patch
  zeromq/repos/community-x86_64/PKGBUILD

-----------------------------------+
 /PKGBUILD                         |   62 ++++++++++++++++++++++++++++++++++++
 community-i686/LIBZMQ-569.patch   |   30 -----------------
 community-i686/PKGBUILD           |   38 ----------------------
 community-x86_64/LIBZMQ-569.patch |   30 -----------------
 community-x86_64/PKGBUILD         |   38 ----------------------
 5 files changed, 62 insertions(+), 136 deletions(-)

Deleted: community-i686/LIBZMQ-569.patch
===================================================================
--- community-i686/LIBZMQ-569.patch	2013-12-17 01:12:46 UTC (rev 102638)
+++ community-i686/LIBZMQ-569.patch	2013-12-17 01:13:09 UTC (rev 102639)
@@ -1,30 +0,0 @@
-From 7ecab54ac3b7a6103c46892990217acafb039eed Mon Sep 17 00:00:00 2001
-From: Martin Hurton <hurtonm at gmail.com>
-Date: Fri, 21 Jun 2013 16:23:38 +0200
-Subject: [PATCH] Load identity message to decoder at start
-
----
- src/stream_engine.cpp | 7 +++++++
- 1 file changed, 7 insertions(+)
-
-diff --git a/src/stream_engine.cpp b/src/stream_engine.cpp
-index 0d87581..2c07889 100644
---- a/src/stream_engine.cpp
-+++ b/src/stream_engine.cpp
-@@ -480,6 +480,13 @@ bool zmq::stream_engine_t::handshake ()
-         //  header data away.
-         const size_t header_size = options.identity_size + 1 >= 255 ? 10 : 2;
-         unsigned char tmp [10], *bufferp = tmp;
-+
-+        //  Prepare the identity message and load it into encoder.
-+        //  Then consume bytes we have already sent to the peer.
-+        const int rc = tx_msg.init_size (options.identity_size);
-+        zmq_assert (rc == 0);
-+        memcpy (tx_msg.data (), options.identity, options.identity_size);
-+        encoder->load_msg (&tx_msg);
-         size_t buffer_size = encoder->encode (&bufferp, header_size);
-         zmq_assert (buffer_size == header_size);
- 
--- 
-1.8.4
-

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-12-17 01:12:46 UTC (rev 102638)
+++ community-i686/PKGBUILD	2013-12-17 01:13:09 UTC (rev 102639)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-pkgname=zeromq
-pkgver=4.0.1
-pkgrel=5
-pkgdesc="Fast messaging system built on sockets, C and C++ bindings.  aka 0MQ, ZMQ."
-arch=('i686' 'x86_64')
-url="http://www.zeromq.org"
-license=('LGPL')
-depends=('gcc-libs' 'util-linux' 'libsodium')
-makedepends=('python2')
-options=('staticlibs')
-source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz
-        https://raw.github.com/zeromq/cppzmq/master/zmq.hpp
-        LIBZMQ-569.patch)
-md5sums=('e738c310d135e20fa48c5b348da18e22'
-         '388ddb07fdd88b040769e8f4c9b397fa'
-         '2ef4f92027ec2b88e8eec86b2cccf2e4')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  patch -p1 -i "$srcdir/LIBZMQ-569.patch"
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure prefix=/usr --with-pgm --with-libsodium
-  sed -i 's/python$/&2/' foreign/openpgm/build-staging/openpgm/pgm/{Makefile,version_generator.py}
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir/zmq.hpp" "$pkgdir/usr/include/zmq.hpp"
-}
-
-

Copied: zeromq/repos/community-i686/PKGBUILD (from rev 102638, zeromq/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-12-17 01:13:09 UTC (rev 102639)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+pkgname=zeromq
+pkgver=4.0.3
+pkgrel=1
+pkgdesc="Fast messaging system built on sockets, C and C++ bindings.  aka 0MQ, ZMQ."
+arch=('i686' 'x86_64')
+url="http://www.zeromq.org"
+license=('LGPL')
+depends=('gcc-libs' 'util-linux' 'libsodium')
+makedepends=('python2')
+options=('staticlibs')
+source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz
+        https://raw.github.com/zeromq/cppzmq/master/zmq.hpp)
+md5sums=('8348341a0ea577ff311630da0d624d45'
+         '388ddb07fdd88b040769e8f4c9b397fa')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure prefix=/usr --with-pgm --with-libsodium
+  sed -i 's/python$/&2/' foreign/openpgm/build-staging/openpgm/pgm/{Makefile,version_generator.py}
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/zmq.hpp" "$pkgdir/usr/include/zmq.hpp"
+}
+
+

Deleted: community-x86_64/LIBZMQ-569.patch
===================================================================
--- community-x86_64/LIBZMQ-569.patch	2013-12-17 01:12:46 UTC (rev 102638)
+++ community-x86_64/LIBZMQ-569.patch	2013-12-17 01:13:09 UTC (rev 102639)
@@ -1,30 +0,0 @@
-From 7ecab54ac3b7a6103c46892990217acafb039eed Mon Sep 17 00:00:00 2001
-From: Martin Hurton <hurtonm at gmail.com>
-Date: Fri, 21 Jun 2013 16:23:38 +0200
-Subject: [PATCH] Load identity message to decoder at start
-
----
- src/stream_engine.cpp | 7 +++++++
- 1 file changed, 7 insertions(+)
-
-diff --git a/src/stream_engine.cpp b/src/stream_engine.cpp
-index 0d87581..2c07889 100644
---- a/src/stream_engine.cpp
-+++ b/src/stream_engine.cpp
-@@ -480,6 +480,13 @@ bool zmq::stream_engine_t::handshake ()
-         //  header data away.
-         const size_t header_size = options.identity_size + 1 >= 255 ? 10 : 2;
-         unsigned char tmp [10], *bufferp = tmp;
-+
-+        //  Prepare the identity message and load it into encoder.
-+        //  Then consume bytes we have already sent to the peer.
-+        const int rc = tx_msg.init_size (options.identity_size);
-+        zmq_assert (rc == 0);
-+        memcpy (tx_msg.data (), options.identity, options.identity_size);
-+        encoder->load_msg (&tx_msg);
-         size_t buffer_size = encoder->encode (&bufferp, header_size);
-         zmq_assert (buffer_size == header_size);
- 
--- 
-1.8.4
-

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-12-17 01:12:46 UTC (rev 102638)
+++ community-x86_64/PKGBUILD	2013-12-17 01:13:09 UTC (rev 102639)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-pkgname=zeromq
-pkgver=4.0.1
-pkgrel=5
-pkgdesc="Fast messaging system built on sockets, C and C++ bindings.  aka 0MQ, ZMQ."
-arch=('i686' 'x86_64')
-url="http://www.zeromq.org"
-license=('LGPL')
-depends=('gcc-libs' 'util-linux' 'libsodium')
-makedepends=('python2')
-options=('staticlibs')
-source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz
-        https://raw.github.com/zeromq/cppzmq/master/zmq.hpp
-        LIBZMQ-569.patch)
-md5sums=('e738c310d135e20fa48c5b348da18e22'
-         '388ddb07fdd88b040769e8f4c9b397fa'
-         '2ef4f92027ec2b88e8eec86b2cccf2e4')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  patch -p1 -i "$srcdir/LIBZMQ-569.patch"
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure prefix=/usr --with-pgm --with-libsodium
-  sed -i 's/python$/&2/' foreign/openpgm/build-staging/openpgm/pgm/{Makefile,version_generator.py}
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir/zmq.hpp" "$pkgdir/usr/include/zmq.hpp"
-}
-
-

Copied: zeromq/repos/community-x86_64/PKGBUILD (from rev 102638, zeromq/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-12-17 01:13:09 UTC (rev 102639)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+pkgname=zeromq
+pkgver=4.0.3
+pkgrel=1
+pkgdesc="Fast messaging system built on sockets, C and C++ bindings.  aka 0MQ, ZMQ."
+arch=('i686' 'x86_64')
+url="http://www.zeromq.org"
+license=('LGPL')
+depends=('gcc-libs' 'util-linux' 'libsodium')
+makedepends=('python2')
+options=('staticlibs')
+source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz
+        https://raw.github.com/zeromq/cppzmq/master/zmq.hpp)
+md5sums=('8348341a0ea577ff311630da0d624d45'
+         '388ddb07fdd88b040769e8f4c9b397fa')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure prefix=/usr --with-pgm --with-libsodium
+  sed -i 's/python$/&2/' foreign/openpgm/build-staging/openpgm/pgm/{Makefile,version_generator.py}
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/zmq.hpp" "$pkgdir/usr/include/zmq.hpp"
+}
+
+




More information about the arch-commits mailing list