aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Dreier <roland@topspin.com>2005-04-28 23:18:36 +0000
committerRoland Dreier <rolandd@cisco.com>2006-11-09 19:57:01 -0800
commite4ebb31fb433a4175f3c9f8d41b32a64e0002288 (patch)
tree26939b04850a72f8cd43981a11c0f81c3c06751d
parent80245d02b8adf70bd2ab48633d3fb9617efd1915 (diff)
downloadlibmthca-e4ebb31fb433a4175f3c9f8d41b32a64e0002288.tar.gz
Set version number to 0.1.0
Also add debian/ directory to build libmthca.
-rw-r--r--AUTHORS2
-rw-r--r--configure.in5
-rw-r--r--debian/changelog6
-rw-r--r--debian/compat1
-rw-r--r--debian/control27
-rw-r--r--debian/copyright16
-rw-r--r--debian/libmthca-dev.install1
-rw-r--r--debian/libmthca1.install1
-rwxr-xr-xdebian/rules9
9 files changed, 65 insertions, 3 deletions
diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000..165aea7
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,2 @@
+Roland Dreier <roland@topspin.com>
+Michael S. Tsirkin <mst@mellanox.co.il>
diff --git a/configure.in b/configure.in
index 162be4b..5625aca 100644
--- a/configure.in
+++ b/configure.in
@@ -1,12 +1,11 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.57)
-AC_INIT(libmthca, 0.9.0, openib-general@openib.org)
+AC_INIT(libmthca, 0.1.0, openib-general@openib.org)
AC_CONFIG_SRCDIR([src/mthca.h])
AC_CONFIG_AUX_DIR(config)
AM_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE(libmthca, 0.9.0)
-AC_DISABLE_STATIC
+AM_INIT_AUTOMAKE(libmthca, 0.1.0)
AM_PROG_LIBTOOL
dnl Checks for programs
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..4cf16a6
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+libmthca (0.1.0-1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Roland Dreier <roland@topspin.com> Thu, 28 Apr 2005 13:16:56 -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..e282a9e
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,27 @@
+Source: libmthca
+Priority: optional
+Maintainer: Roland Dreier <roland@swnocona2.topspincom.com>
+Build-Depends: cdbs (>= 0.4.25-1), debhelper (>= 4.1.0), libibverbs-dev (>= 0.1.0), autotools-dev
+Standards-Version: 3.6.1
+Section: libs
+
+Package: libmthca1
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: A userspace driver for Mellanox HCAs
+ libmthca is a device-specific driver for Mellanox InfiniBand HCAs for
+ the libibverbs library.
+ .
+ This package contains the loadable plug-in.
+
+Package: libmthca-dev
+Section: libdevel
+Architecture: any
+Depends: libmthca1 (= ${Source-Version})
+Description: Development files for the libmthca driver
+ libmthca is a device-specific driver for Mellanox InfiniBand HCAs for
+ the libibverbs library.
+ .
+ This package contains static versions of libmthca that may be linked
+ directly to an application, which may be useful for debugging.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..86fce82
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,16 @@
+Initial Debianization:
+This package was debianized by Roland Dreier <roland@topspin.com> on
+Thu, 28 Apr 2005 13:16:56 -0700.
+
+Source:
+It was downloaded from the OpenIB subversion repository at
+<https://openib.org/svn/gen2/trunk/src/userspace/libmthca>
+
+Authors:
+The complete list of upstream authors is in the file
+/usr/share/doc/mthca/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/libmthca-dev.install b/debian/libmthca-dev.install
new file mode 100644
index 0000000..ce306cb
--- /dev/null
+++ b/debian/libmthca-dev.install
@@ -0,0 +1 @@
+usr/lib/infiniband/mthca.{a,la}
diff --git a/debian/libmthca1.install b/debian/libmthca1.install
new file mode 100644
index 0000000..0c9e27f
--- /dev/null
+++ b/debian/libmthca1.install
@@ -0,0 +1 @@
+usr/lib/infiniband/mthca.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 <roland@topspin.com>
+
+DEB_DH_INSTALL_SOURCEDIR := debian/tmp
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/autotools.mk
+