summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/amqp-tools.docs3
-rw-r--r--debian/amqp-tools.install3
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control29
-rw-r--r--debian/copyright15
-rw-r--r--debian/librabbitmq-dev.docs3
-rw-r--r--debian/librabbitmq-dev.install4
-rw-r--r--debian/librabbitmq.docs3
-rw-r--r--debian/librabbitmq.install1
-rwxr-xr-xdebian/rules24
11 files changed, 0 insertions, 91 deletions
diff --git a/debian/amqp-tools.docs b/debian/amqp-tools.docs
deleted file mode 100644
index c9f23af..0000000
--- a/debian/amqp-tools.docs
+++ /dev/null
@@ -1,3 +0,0 @@
-COPYING
-LICENSE-MPL-RabbitMQ
-LICENSE-GPL-2.0
diff --git a/debian/amqp-tools.install b/debian/amqp-tools.install
deleted file mode 100644
index 03e1052..0000000
--- a/debian/amqp-tools.install
+++ /dev/null
@@ -1,3 +0,0 @@
-debian/tmp/usr/bin/* usr/bin
-debian/tmp/usr/share/man/man1/* usr/share/man/man1
-debian/tmp/usr/share/man/man7/* usr/share/man/man7
diff --git a/debian/changelog b/debian/changelog
deleted file mode 100644
index b41f67e..0000000
--- a/debian/changelog
+++ /dev/null
@@ -1,5 +0,0 @@
-librabbitmq (1.0-1) unstable; urgency=low
-
- * Initial release
-
- -- Tony Garnock-Jones <tonyg@lshift.net> Tue, 14 Jul 2009 04:42:37 +0100
diff --git a/debian/compat b/debian/compat
deleted file mode 100644
index 7ed6ff8..0000000
--- a/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-5
diff --git a/debian/control b/debian/control
deleted file mode 100644
index 54c2c06..0000000
--- a/debian/control
+++ /dev/null
@@ -1,29 +0,0 @@
-Source: librabbitmq
-Section: libs
-Priority: extra
-Maintainer: Tony Garnock-Jones <tonyg@lshift.net>
-Build-Depends: debhelper (>= 7), autoconf, automake, libtool, python (>= 2.5), python-simplejson, libpopt-dev, xmlto
-Standards-Version: 3.8.1
-Homepage: http://www.rabbitmq.com/
-Vcs-Browser: http://hg.rabbitmq.com/rabbitmq-c
-
-Package: librabbitmq
-Architecture: any
-Section: libs
-Priority: extra
-Depends:
-Description: An AMQP client library written in C
-
-Package: librabbitmq-dev
-Architecture: any
-Section: libdevel
-Priority: extra
-Depends: librabbitmq (= ${binary:Version}), libc-dev
-Description: developer's libraries and docs for librabbitmq
-
-Package: amqp-tools
-Architecture: any
-Section: net
-Priority: extra
-Depends: librabbitmq (= ${binary:Version}), ${shlibs:Depends}
-Description: Command-line utilities for interacting with AMQP servers
diff --git a/debian/copyright b/debian/copyright
deleted file mode 100644
index adf8a2a..0000000
--- a/debian/copyright
+++ /dev/null
@@ -1,15 +0,0 @@
-This package was debianized by Tony Garnock-Jones <tonyg@rabbitmq.com> on
-Tue, 14 Jul 2009 04:42:37 +0100.
-
-Upstream Author: Tony Garnock-Jones <tonyg@lshift.net>
-
-Copyright: 2009 Tony Garnock-Jones, 2009 LShift Ltd.
-
-License: This package, librabbitmq, the RabbitMQ C client, is licensed
-under the MPL and may also be used under the terms of the GPL. For the
-MPL, please see LICENSE-MPL-RabbitMQ. For the GPL, please see
-LICENSE-GPL-2.0. Please see also the license block near the top of
-each source file in the package.
-
-If you have any questions regarding licensing, please contact us at
-info@rabbitmq.com.
diff --git a/debian/librabbitmq-dev.docs b/debian/librabbitmq-dev.docs
deleted file mode 100644
index c9f23af..0000000
--- a/debian/librabbitmq-dev.docs
+++ /dev/null
@@ -1,3 +0,0 @@
-COPYING
-LICENSE-MPL-RabbitMQ
-LICENSE-GPL-2.0
diff --git a/debian/librabbitmq-dev.install b/debian/librabbitmq-dev.install
deleted file mode 100644
index b4f0bfd..0000000
--- a/debian/librabbitmq-dev.install
+++ /dev/null
@@ -1,4 +0,0 @@
-debian/tmp/usr/include/*.h usr/include
-debian/tmp/usr/lib/*.a usr/lib
-debian/tmp/usr/lib/*.la usr/lib
-debian/tmp/usr/lib/*.so usr/lib
diff --git a/debian/librabbitmq.docs b/debian/librabbitmq.docs
deleted file mode 100644
index c9f23af..0000000
--- a/debian/librabbitmq.docs
+++ /dev/null
@@ -1,3 +0,0 @@
-COPYING
-LICENSE-MPL-RabbitMQ
-LICENSE-GPL-2.0
diff --git a/debian/librabbitmq.install b/debian/librabbitmq.install
deleted file mode 100644
index 84bc663..0000000
--- a/debian/librabbitmq.install
+++ /dev/null
@@ -1 +0,0 @@
-debian/tmp/usr/lib/*.so.* usr/lib
diff --git a/debian/rules b/debian/rules
deleted file mode 100755
index 10327f2..0000000
--- a/debian/rules
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/make -f
-
-build: build-stamp
-build-stamp:
- dh build
- touch build-stamp
-
-clean:
- dh clean
- rm -f build-stamp
- rm -f install-stamp
-
-install: build install-stamp
-install-stamp:
- dh install
- touch install-stamp
-
-binary-arch: install
- dh binary-arch
-
-binary-indep: install
- dh binary-indep
-
-binary: binary-arch binary-indep