debian/0000755000000000000000000000000012247122672007173 5ustar debian/watch0000644000000000000000000000021312247122672010220 0ustar version=3 opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/zmqpp-$1.tar.gz/ \ https://github.com/benjamg/zmqpp/tags .*/v?(\d\S*)\.tar\.gz debian/patches/0000755000000000000000000000000012247122672010622 5ustar debian/patches/mkdir_before_install.diff0000644000000000000000000000176312247122672015641 0ustar Index: zmqpp-3.2.0/Makefile =================================================================== --- zmqpp-3.2.0.orig/Makefile 2013-11-12 18:51:18.226008383 +0100 +++ zmqpp-3.2.0/Makefile 2013-11-12 18:53:47.882004460 +0100 @@ -124,11 +124,13 @@ check: $(LIBRARY_SHARED) $(LIBRARY_ARCHIVE) test install: + mkdir -p $(INCLUDEDIR)/$(LIBRARY_DIR) install -m 644 $(ALL_LIBRARY_INCLUDES) $(INCLUDEDIR)/$(LIBRARY_DIR) + mkdir -p $(LIBDIR) install -m 755 $(BUILD_PATH)/$(LIBRARY_SHARED).$(VERSION_MAJOR) $(LIBDIR)/$(LIBRARY_SHARED).$(APP_VERSION) ln -sf $(LIBRARY_SHARED).$(APP_VERSION) $(LIBDIR)/$(LIBRARY_SHARED).$(VERSION_MAJOR) ln -sf $(LIBRARY_SHARED).$(APP_VERSION) $(LIBDIR)/$(LIBRARY_SHARED) - if [ -f $(BUILD_PATH)/$(CLIENT_TARGET) ]; then install -m 755 $(BUILD_PATH)/$(CLIENT_TARGET) $(BINDIR); fi + if [ -f $(BUILD_PATH)/$(CLIENT_TARGET) ]; then mkdir -p $(BINDIR); install -m 755 $(BUILD_PATH)/$(CLIENT_TARGET) $(BINDIR); fi $(LDCONFIG) @echo "use make installcheck to test the install" debian/patches/series0000644000000000000000000000005312247122672012035 0ustar mkdir_before_install.diff fix_1256886.diff debian/patches/fix_1256886.diff0000644000000000000000000000070012247122672013162 0ustar Fix for bug LP: #1256886, prepared by Michal Hruby. Index: zmqpp-3.2.0/src/zmqpp/message.cpp =================================================================== --- zmqpp-3.2.0.orig/src/zmqpp/message.cpp 2013-11-06 18:09:56.000000000 +0100 +++ zmqpp-3.2.0/src/zmqpp/message.cpp 2013-12-02 14:13:06.875944537 +0100 @@ -19,7 +19,10 @@ */ struct zmq_msg_wrapper { - bool sent; + union { + bool sent; + void* padding; + }; zmq_msg_t msg; }; debian/rules0000755000000000000000000000052012247122672010250 0ustar #!/usr/bin/make -f # -*- makefile -*- export DPKG_GENSYMBOLS_CHECK_LEVEL = 4 # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ --fail-missing override_dh_auto_build: dh_auto_build -- CXXFLAGS+=-g override_dh_auto_install: dh_auto_install -- PREFIX="/usr" LIBDIR="debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)" debian/source/0000755000000000000000000000000012247122672010473 5ustar debian/source/format0000644000000000000000000000001412247122672011701 0ustar 3.0 (quilt) debian/libzmqpp3.install0000644000000000000000000000003012247122672012475 0ustar usr/lib/*/libzmqpp.so.* debian/control0000644000000000000000000000211112247122672010571 0ustar Source: zmqpp Section: libs Priority: optional Maintainer: Łukasz 'sil2100' Zemczak Build-Depends: debhelper (>= 9), automake, libboost-test-dev, libzmq3-dev (>= 3.2), Standards-Version: 3.9.4 Homepage: https://github.com/benjamg/zmqpp Vcs-Bzr: lp:zmqpp/ubuntu Package: libzmqpp3 Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} Depends: ${shlibs:Depends}, ${misc:Depends} Description: High-level C++ bindings for zeromq3 This C++ binding is a 'high-level' library that hides most of the c-style interface core 0mq provides. Package: libzmqpp-dev Section: libdevel Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} Depends: ${shlibs:Depends}, ${misc:Depends}, libzmqpp3 (= ${binary:Version}), libzmq3-dev (>= 3.2), Description: High-level C++ bindings for zeromq3 - development files This C++ binding is a 'high-level' library that hides most of the c-style interface core 0mq provides. This package provides development files and headers. debian/copyright0000644000000000000000000000402712247122672011131 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: zmqpp Source: https://github.com/benjamg/zmqpp Files: * Copyright: 2011-2013 Ben Gray License: MIT Files: debian/* Copyright: 2013 Łukasz 'sil2100' Zemczak License: GPL-3 License: MIT 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. 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, version 3 of the License. . 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 . . On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-3' debian/libzmqpp-dev.install0000644000000000000000000000005212247122672013172 0ustar usr/lib/*/libzmqpp.so usr/include/zmqpp/* debian/changelog0000644000000000000000000000146212247122672011050 0ustar zmqpp (3.2.0-0ubuntu3) trusty; urgency=low * debian/rules: - Force -g to allow generating -dbg packages * debian/patches/fix_1256886.diff: - Fix memory alignment crash issue (LP: #1256886) -- Łukasz 'sil2100' Zemczak Mon, 02 Dec 2013 14:16:41 +0100 zmqpp (3.2.0-0ubuntu2) trusty; urgency=low * debian/control: - Add the missing libzmq3-dev dependency to the libzmqpp-dev package - Fixed missing dependency on the main library * debian/changelog: - Use the correct GPL-3 license text for packaging -- Łukasz 'sil2100' Zemczak Fri, 15 Nov 2013 18:22:31 +0100 zmqpp (3.2.0-0ubuntu1) trusty; urgency=low * Initial release -- Łukasz 'sil2100' Zemczak Tue, 12 Nov 2013 17:25:07 +0100 debian/compat0000644000000000000000000000000212247122672010371 0ustar 9