[Pkg-ofed-commits] [libibverbs] 06/24: Imported Debian patch 1.0.4-1

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


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

ana pushed a commit to branch master
in repository libibverbs.

commit c3db75b347806f1dc04b2b4dbea09c4a6bacf6f7
Merge: 018b56d 5d69a2b
Author: Roland Dreier <rolandd at cisco.com>
Date:   Tue Oct 31 15:04:33 2006 -0800

    Imported Debian patch 1.0.4-1

 ChangeLog                     |  101 +
 Makefile.am                   |    2 +-
 Makefile.in                   |    7 +-
 README                        |   53 +
 aclocal.m4                    |  891 ++++---
 config.h.in                   |    3 +
 config/ltmain.sh              |  911 +++++--
 configure                     | 5541 +++++++++++++++++------------------------
 configure.in                  |   22 +-
 debian/changelog              |   10 +
 debian/control                |   38 +-
 examples/asyncwatch.c         |    4 +-
 examples/device_list.c        |    2 +-
 examples/devinfo.c            |    2 +-
 examples/rc_pingpong.c        |    2 +-
 examples/srq_pingpong.c       |    2 +-
 examples/uc_pingpong.c        |    2 +-
 examples/ud_pingpong.c        |    2 +-
 include/infiniband/arch.h     |   32 +-
 include/infiniband/driver.h   |    2 +-
 include/infiniband/kern-abi.h |    4 +-
 include/infiniband/opcode.h   |    2 +-
 include/infiniband/verbs.h    |    9 +-
 libibverbs.spec               |   11 +-
 libibverbs.spec.in            |    9 +-
 man/ibv_asyncwatch.1          |    2 +-
 man/ibv_devices.1             |    2 +-
 man/ibv_devinfo.1             |    2 +-
 man/ibv_rc_pingpong.1         |    2 +-
 man/ibv_srq_pingpong.1        |    2 +-
 man/ibv_uc_pingpong.1         |    2 +-
 man/ibv_ud_pingpong.1         |    2 +-
 src/cmd.c                     |   44 +-
 src/device.c                  |    6 +-
 src/ibverbs.h                 |   22 +-
 src/init.c                    |  209 +-
 src/memory.c                  |    2 +-
 src/verbs.c                   |    2 +-
 38 files changed, 4083 insertions(+), 3880 deletions(-)

diff --cc debian/changelog
index 4436e85,0000000..8800a50
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,21 -1,0 +1,31 @@@
++libibverbs (1.0.4-1) unstable; urgency=low
++
++  * New upstream release.
++    - Fix static linking so it has a chance of working.
++    - Fix cut-and-paste error in sparc mb() macro.
++    - Other miscellaneous fixes.
++  * Improve package description.
++
++ -- Roland Dreier <rolandd at cisco.com>  Tue, 31 Oct 2006 15:04:33 -0800
++
 +libibverbs (1.0.3-1) unstable; urgency=low
 +
 +  * Change priority to extra, since libibverbs depends on libsysfs2, which
 +    has priority extra.  (Debian policy section 2.5 states that a package
 +    may not depend on another package of lower priority)
 +  * New upstream release:
 +    - For sparc, only generate membar instruction if compiling for V9
 +      instruction set.  (Closes: #365559)
 +    - Reduce (but not yet eliminate) dependency on libsysfs.
 +    - Deprecate some ib_XXX symbol names and introduce ibv_XXX
 +      replacements for internal consistency.
 +    - Other minor fixes.
 +  * Update to Standards-Version: 3.7.2.
 +
 + -- Roland Dreier <rolandd at cisco.com>  Tue,  2 May 2006 15:33:14 -0700
 +
 +libibverbs (1.0.2-1) unstable; urgency=low
 +
 +  * Initial Release.  (Closes: #325752)
 +
 + -- Roland Dreier <rolandd at cisco.com>  Wed, 15 Feb 2006 11:21:59 -0700
diff --cc debian/control
index eeda0cb,0000000..dc99746
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,63 -1,0 +1,79 @@@
 +Source: libibverbs
 +Priority: extra
 +Maintainer: Roland Dreier <rolandd at cisco.com>
 +Build-Depends: cdbs (>= 0.4.25-1), debhelper (>= 5), autotools-dev, libsysfs-dev
 +Standards-Version: 3.7.2
 +Section: libs
 +
 +Package: libibverbs1
 +Section: libs
 +Architecture: any
 +Depends: ${shlibs:Depends}, ${misc:Depends}, adduser
 +Description: A library for direct userspace use of InfiniBand
 + libibverbs is a library that allows userspace processes to use
 + InfiniBand "verbs" as described in the InfiniBand Architecture
-  Specification.  This includes direct hardware access for fast path
-  operations.
++ Specification.  InfiniBand is a high-throughput, low-latency
++ networking technology.  InfiniBand host channel adapters (HCAs)
++ commonly support direct hardware access from userspace (kernel
++ bypass), and libibverbs supports this when available.
 + .
 + For this library to be useful, a device-specific plug-in module
 + should also be installed.
 + .
 + This package contains the shared library.
++ .
++  Homepage: http://www.openfabrics.org/
 +
 +Package: libibverbs-dev
 +Section: libdevel
 +Architecture: any
 +Depends: ${misc:Depends}, libibverbs1 (= ${Source-Version}), libsysfs-dev
 +Description: Development files for the libibverbs library
 + libibverbs is a library that allows userspace processes to use
 + InfiniBand "verbs" as described in the InfiniBand Architecture
-  Specification.  This includes direct hardware access for fast path
-  operations.
++ Specification.  InfiniBand is a high-throughput, low-latency
++ networking technology.  InfiniBand host channel adapters (HCAs)
++ commonly support direct hardware access from userspace (kernel
++ bypass), and libibverbs supports this when available.
 + .
-  This package is needed to compile programs against libibverbs1.
++ This package is needed to compile programs against libibverbs2.
 + It contains the header files and static libraries (optionally)
 + needed for compiling.
++ .
++  Homepage: http://www.openfabrics.org/
 +
 +Package: libibverbs1-dbg
 +Section: libdevel
 +Priority: extra
 +Architecture: any
 +Depends: ${misc:Depends}, libibverbs1 (= ${Source-Version})
 +Description: Debugging symbols for the libibverbs library
 + libibverbs is a library that allows userspace processes to use
 + InfiniBand "verbs" as described in the InfiniBand Architecture
-  Specification.  This includes direct hardware access for fast path
-  operations.
++ Specification.  InfiniBand is a high-throughput, low-latency
++ networking technology.  InfiniBand host channel adapters (HCAs)
++ commonly support direct hardware access from userspace (kernel
++ bypass), and libibverbs supports this when available.
 + .
 + This package contains the debugging symbols associated with
-  libibverbs1. They will automatically be used by gdb for debugging
++ libibverbs2. They will automatically be used by gdb for debugging
 + libibverbs-related issues.
++ .
++  Homepage: http://www.openfabrics.org/
 +
 +Package: ibverbs-utils
 +Section: net
 +Architecture: any
 +Depends: ${shlibs:Depends}, ${misc:Depends}
 +Description: Examples for the libibverbs library
 + libibverbs is a library that allows userspace processes to use
 + InfiniBand "verbs" as described in the InfiniBand Architecture
-  Specification.  This includes direct hardware access for fast path
-  operations.
++ Specification.  InfiniBand is a high-throughput, low-latency
++ networking technology.  InfiniBand host channel adapters (HCAs)
++ commonly support direct hardware access from userspace (kernel
++ bypass), and libibverbs supports this when available.
 + .
-  This package contains useful libibverbs1 example programs such as
++ This package contains useful libibverbs2 example programs such as
 + ibv_devinfo, which displays information about InfiniBand devices.
++ .
++  Homepage: http://www.openfabrics.org/

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



More information about the Pkg-ofed-commits mailing list