[Pkg-ofed-commits] [librdmacm] 11/18: Imported Debian patch 1.0.14.1-1

Ana Beatriz Guerrero López ana at moszumanska.debian.org
Wed Jul 2 13:58:24 UTC 2014


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

ana pushed a commit to branch master
in repository librdmacm.

commit 50971770db784f2678912aef9f23f907bccb0535
Merge: 8b9e508 8181742
Author: Roland Dreier <roland at digitalvampire.org>
Date:   Wed Apr 20 10:27:55 2011 -0700

    Imported Debian patch 1.0.14.1-1

 configure                              | 20 ++++++++++----------
 configure.in                           |  4 ++--
 debian/changelog                       | 10 ++++++++++
 debian/control                         |  5 +++--
 debian/patches/link-with-pthread.patch |  1 +
 examples/rping.c                       | 10 +++++-----
 librdmacm.spec                         |  4 ++--
 librdmacm.spec.in                      |  2 +-
 8 files changed, 34 insertions(+), 22 deletions(-)

diff --cc debian/changelog
index d318725,0000000..30a3719
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,49 -1,0 +1,59 @@@
++librdmacm (1.0.14.1-1) unstable; urgency=low
++
++  * New upstream release.
++    - Fix problem with some versions of cxgb3 driver
++  * Update to Standards-Version: 3.9.2 (no changes needed).
++  * Set DM-Upload-Allowed to yes.
++  * Still linking directly with libpthread.  (Closes: #618071)
++
++ -- Roland Dreier <roland at digitalvampire.org>  Wed, 20 Apr 2011 10:27:55 -0700
++
 +librdmacm (1.0.14-1) experimental; urgency=low
 +
 +  * Switch to dpkg-source 3.0 (quilt) format.
 +  * Update to Standards-Version: 3.9.1 (no changes needed).
 +  * New upstream release.
 +    - Add IPv6 support
 +    - Add new higher-level, simpler API
 +    - Add new client/server examples
 +  * Link directly with libpthread.  (Closes: #555380)
 +
 + -- Roland Dreier <rolandd at cisco.com>  Wed, 15 Dec 2010 11:24:19 -0800
 +
 +librdmacm (1.0.10-1) unstable; urgency=low
 +
 +  * Update to Standards-Version: 3.8.3 (no changes needed).
 +  * Move -dbg package to section debug.
 +  * Change build system from cdbs to debhelper 7.
 +  * New upstream release:
 +    - Many small fixes.
 +
 + -- Roland Dreier <rolandd at cisco.com>  Wed, 18 Nov 2009 15:40:14 -0800
 +
 +librdmacm (1.0.8-1) unstable; urgency=low
 +
 +  * New upstream release:
 +    - Report address change and timewait exit events (requires
 +      kernel 2.6.27).
 +    - Minor enhancements to example programs.
 +
 + -- Roland Dreier <rolandd at cisco.com>  Fri, 08 Aug 2008 14:24:16 -0700
 +
 +librdmacm (1.0.7-1) unstable; urgency=low
 +
 +  * New upstream release:
 +    - Set status correctly for rejects.
 +    - Add new function rdma_migrate_id().
 +  * We actually require libibverbs 1.1 (not 1.0) to build.
 +  * Add debian/watch file.
 +  * Use DEB_DH_MAKESHLIBS_ARGS_ALL to pass appropriate -V option to
 +    dh_makeshlibs, since a new symbol rdma_migrate_id() was added in
 +    librdmacm 1.0.7.
 +
 + -- Roland Dreier <rolandd at cisco.com>  Fri, 28 Mar 2008 20:44:44 -0700
 +
 +librdmacm (1.0.6-1) unstable; urgency=low
 +
 +  * Initial Release.  (Closes: #462348)
 +
 + -- Roland Dreier <rolandd at cisco.com>  Tue, 05 Feb 2008 13:49:52 -0800
diff --cc debian/control
index f690022,0000000..e2f1a3c
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,93 -1,0 +1,94 @@@
 +Source: librdmacm
 +Priority: extra
- Maintainer: Roland Dreier <rolandd at cisco.com>
++Maintainer: Roland Dreier <roland at digitalvampire.org>
++DM-Upload-Allowed: yes
 +Build-Depends: autoconf, automake, libtool, debhelper (>= 7.0.50~), dpkg-dev (>= 1.13.19), libibverbs-dev (>= 1.1)
- Standards-Version: 3.9.1
++Standards-Version: 3.9.2
 +Section: libs
 +Homepage: http://www.openfabrics.org/
 +
 +Package: librdmacm1
 +Section: libs
 +Architecture: any
 +Depends: ${shlibs:Depends}, ${misc:Depends}
 +Description: A library for managing RDMA connections
 + librdmacm is a library that allows applications to set up reliable
 + connected and unreliable datagram transfers when using RDMA adapters.
 + It provides a transport-neutral interface in the sense that the same
 + code can be used for both InfiniBand and iWARP adapters.  The
 + interface is based on sockets, but adapted for queue pair (QP) based
 + semantics: communication must use a specific RDMA device, and data
 + transfers are message-based.
 + .
 + librdmacm only provides communication management (connection setup
 + and tear-down) and works in conjunction with the verbs interface
 + provided by libibverbs, which provides the interface used to actually
 + transfer data.
 + .
 + This package contains the shared library.
 +
 +Package: librdmacm-dev
 +Section: libdevel
 +Architecture: any
 +Depends: ${misc:Depends}, librdmacm1 (= ${binary:Version})
 +Description: Development files for the librdmacm library
 + librdmacm is a library that allows applications to set up reliable
 + connected and unreliable datagram transfers when using RDMA adapters.
 + It provides a transport-neutral interface in the sense that the same
 + code can be used for both InfiniBand and iWARP adapters.  The
 + interface is based on sockets, but adapted for queue pair (QP) based
 + semantics: communication must use a specific RDMA device, and data
 + transfers are message-based.
 + .
 + librdmacm only provides communication management (connection setup
 + and tear-down) and works in conjunction with the verbs interface
 + provided by libibverbs, which provides the interface used to actually
 + transfer data.
 + .
 + This package is needed to compile programs against librdmacm1.
 + It contains the header files and static libraries (optionally)
 + needed for compiling.
 +
 +Package: librdmacm1-dbg
 +Section: debug
 +Priority: extra
 +Architecture: any
 +Depends: ${misc:Depends}, librdmacm1 (= ${binary:Version})
 +Description: Debugging symbols for the librdmacm library
 + librdmacm is a library that allows applications to set up reliable
 + connected and unreliable datagram transfers when using RDMA adapters.
 + It provides a transport-neutral interface in the sense that the same
 + code can be used for both InfiniBand and iWARP adapters.  The
 + interface is based on sockets, but adapted for queue pair (QP) based
 + semantics: communication must use a specific RDMA device, and data
 + transfers are message-based.
 + .
 + librdmacm only provides communication management (connection setup
 + and tear-down) and works in conjunction with the verbs interface
 + provided by libibverbs, which provides the interface used to actually
 + transfer data.
 + .
 + This package contains the debugging symbols associated with
 + librdmacm1. They will automatically be used by gdb for debugging
 + librdmacm-related issues.
 +
 +Package: rdmacm-utils
 +Section: net
 +Architecture: any
 +Depends: ${shlibs:Depends}, ${misc:Depends}
 +Description: Examples for the librdmacm library
 + librdmacm is a library that allows applications to set up reliable
 + connected and unreliable datagram transfers when using RDMA adapters.
 + It provides a transport-neutral interface in the sense that the same
 + code can be used for both InfiniBand and iWARP adapters.  The
 + interface is based on sockets, but adapted for queue pair (QP) based
 + semantics: communication must use a specific RDMA device, and data
 + transfers are message-based.
 + .
 + librdmacm only provides communication management (connection setup
 + and tear-down) and works in conjunction with the verbs interface
 + provided by libibverbs, which provides the interface used to actually
 + transfer data.
 + .
 + This package contains useful librdmacm1 example programs such as
 + rping and udaddy.
diff --cc debian/patches/link-with-pthread.patch
index aa42d1d,0000000..2d67a8a
mode 100644,000000..100644
--- a/debian/patches/link-with-pthread.patch
+++ b/debian/patches/link-with-pthread.patch
@@@ -1,24 -1,0 +1,25 @@@
 +Description: Add check for libpthread during configure
 + Add a check for libpthread during librdmacm configure.  This will add
 + libpthread to the list of libraries that librdmacm is linked to.
 + Currently librdmacm gets libpthread implicitly through libibverbs, but
 + this breaks when using a linker that does not implicitly link with such
 + dependencies; eg the new gold linker is such a linker:
 + .
 + <http://wiki.debian.org/qa.debian.org/FTBFS#A2009-11-02Packagesfailingbecausebinutils-gold.2BAC8-indirectlinking>
 +Author: Roland Dreier <rdreier at cisco.com>
 +Bug-Debian: http://bugs.debian.org/555380
 +Forwarded: http://article.gmane.org/gmane.linux.drivers.rdma/6954
++Applied-Upstream: http://git.openfabrics.org/git?p=~shefty/librdmacm.git;a=commitdiff;h=384bfc1fb1bcb292904376efc13a1db84971ee6c
 +Index: librdmacm-1.0.14/configure.in
 +===================================================================
 +--- librdmacm-1.0.14.orig/configure.in	2010-12-15 11:38:46.174436000 -0800
 ++++ librdmacm-1.0.14/configure.in	2010-12-15 11:39:01.193264000 -0800
 +@@ -45,6 +45,8 @@
 + AC_CHECK_SIZEOF(long)
 + 
 + dnl Checks for libraries
 ++AC_CHECK_LIB(pthread, pthread_mutex_init, [],
 ++    AC_MSG_ERROR([pthread_mutex_init() not found.  librdmacm requires libpthread.]))
 + if test "$disable_libcheck" != "yes"; then
 + AC_CHECK_LIB(ibverbs, ibv_get_device_list, [],
 +     AC_MSG_ERROR([ibv_get_device_list() not found.  librdmacm requires libibverbs.]))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ofed/librdmacm.git



More information about the Pkg-ofed-commits mailing list