From c91ae04870b226aea52b3d1080e93f44094c57c9 Mon Sep 17 00:00:00 2001 From: Roland Dreier Date: Thu, 28 Apr 2005 23:18:36 +0000 Subject: [PATCH] Set version number to 0.1.0 Also add debian/ directories to build libibverbs. --- configure.in | 4 +-- debian/changelog | 6 +++++ debian/compat | 1 + debian/control | 47 +++++++++++++++++++++++++++++++++ debian/copyright | 16 +++++++++++ debian/ibverbs-examples.install | 1 + debian/libibverbs-dev.install | 2 ++ debian/libibverbs1.install | 1 + debian/rules | 9 +++++++ 9 files changed, 85 insertions(+), 2 deletions(-) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/ibverbs-examples.install create mode 100644 debian/libibverbs-dev.install create mode 100644 debian/libibverbs1.install create mode 100755 debian/rules diff --git a/configure.in b/configure.in index 5ff6036..6c135fb 100644 --- a/configure.in +++ b/configure.in @@ -1,11 +1,11 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) -AC_INIT(libibverbs, 0.9.0, openib-general@openib.org) +AC_INIT(libibverbs, 0.1.0, openib-general@openib.org) AC_CONFIG_SRCDIR([src/ibverbs.h]) AC_CONFIG_AUX_DIR(config) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(libibverbs, 0.9.0) +AM_INIT_AUTOMAKE(libibverbs, 0.1.0) AM_PROG_LIBTOOL diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..27da54c --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +libibverbs (0.1.0-1) unstable; urgency=low + + * Initial Release. + + -- Roland Dreier Mon, 25 Apr 2005 10:21:08 -0700 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..766a8ac --- /dev/null +++ b/debian/control @@ -0,0 +1,47 @@ +Source: libibverbs +Priority: optional +Maintainer: Roland Dreier +Build-Depends: cdbs (>= 0.4.25-1), debhelper (>= 4.1.0), autotools-dev +Standards-Version: 3.6.1 +Section: libs + +Package: libibverbs1 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +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. + . + For this library to be useful, a device-specific plug-in module + should also be installed. + . + This package contains the shared library. + +Package: libibverbs-dev +Section: libdevel +Architecture: any +Depends: libibverbs1 (= ${Source-Version}) +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. + . + This package is needed to compile programs against libibverbs1. + It contains the header files and static libraries (optionally) + needed for compiling. + +Package: ibverbs-examples +Section: net +Architecture: any +Depends: libibverbs1 (= ${Source-Version}) +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. + . + This package contains example programs that use libibverbs1. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..8a0b580 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,16 @@ +Initial Debianization: +This package was debianized by Roland Dreier on +Mon, 25 Apr 2005 10:21:08 -0700. + +Source: +It was downloaded from the OpenIB subversion repository at + + +Authors: +The complete list of upstream authors is in the file +/usr/share/doc/libibverbs/AUTHORS. + +Copyright: +libibverbs is licensed under a choice of the GPL and the OpenIB BSD +license. You should have a copy of the GPL in the file +/usr/share/common-licenses/GPL on your Debian system. diff --git a/debian/ibverbs-examples.install b/debian/ibverbs-examples.install new file mode 100644 index 0000000..e772481 --- /dev/null +++ b/debian/ibverbs-examples.install @@ -0,0 +1 @@ +usr/bin diff --git a/debian/libibverbs-dev.install b/debian/libibverbs-dev.install new file mode 100644 index 0000000..c73eab6 --- /dev/null +++ b/debian/libibverbs-dev.install @@ -0,0 +1,2 @@ +usr/include +usr/lib/libibverbs*.{a,la,so} diff --git a/debian/libibverbs1.install b/debian/libibverbs1.install new file mode 100644 index 0000000..0f3523d --- /dev/null +++ b/debian/libibverbs1.install @@ -0,0 +1 @@ +usr/lib/libibverbs*.so.* diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..04a24e9 --- /dev/null +++ b/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2005 Roland Dreier + +DEB_DH_INSTALL_SOURCEDIR := debian/tmp + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk + -- 2.46.0