ocaml-bjack (0.1.3-1) debian-dir only changes

Summary

 debian/changelog                     |   67 +++++++++++++++++++++++++++++++++++
 debian/clean                         |    5 ++
 debian/compat                        |    1 
 debian/control                       |   55 ++++++++++++++++++++++++++++
 debian/control.in                    |   55 ++++++++++++++++++++++++++++
 debian/copyright                     |   42 +++++++++++++++++++++
 debian/gbp.conf                      |    2 +
 debian/libbjack-ocaml-dev.docs       |    1 
 debian/libbjack-ocaml-dev.install.in |    4 ++
 debian/libbjack-ocaml-dev.ocamldoc   |    2 +
 debian/libbjack-ocaml.install.in     |    1 
 debian/rules                         |   18 +++++++++
 debian/watch                         |    2 +
 13 files changed, 255 insertions(+)

    
download this patch

Patch contents

--- ocaml-bjack-0.1.3.orig/debian/control
+++ ocaml-bjack-0.1.3/debian/control
@@ -0,0 +1,55 @@
+Source: ocaml-bjack
+Section: devel
+Priority: optional
+Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
+Uploaders:
+ Samuel Mimram <smimram@debian.org>,
+ Romain Beauxis <toots@rastageeks.org>,
+ Mehdi Dogguy <mehdi@debian.org>
+Build-Depends:
+ cdbs (>= 0.4.53), debhelper (>= 7.0.1), ocaml-nox, dh-ocaml (>= 0.9),
+ libjack-dev,
+ libsamplerate0-dev,
+ ocaml-findlib,
+ pkg-config,
+Standards-Version: 3.8.3
+Homepage: http://savonet.sourceforge.net/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-ocaml-maint/trunk/packages/ocaml-bjack/trunk
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml-bjack/trunk/
+
+Package: libbjack-ocaml
+Architecture: any
+Section: libs
+Depends:
+ ${ocaml:Depends},
+ ${shlibs:Depends},
+ ${misc:Depends}
+Provides:
+ ${ocaml:Provides}
+Description: OCaml blocking interface to jack audio connection kit
+ ocaml-bjack is a blocking interface to jack audio connection kit.
+ Using it, you can create a jack device and read/write from it
+ much like with ALSA or OSS.
+ .
+ This package contains only the shared runtime stub libraries.
+
+Package: libbjack-ocaml-dev
+Architecture: any
+Section: ocaml
+Depends:
+ ${ocaml:Depends},
+ ${shlibs:Depends},
+ libjack-dev,
+ libsamplerate0-dev,
+ libbjack-ocaml (= ${binary:Version}),
+ ocaml-findlib,
+ ${misc:Depends}
+Provides:
+ ${ocaml:Provides}
+Description: OCaml blocking interface to jack audio connection kit
+ ocaml-bjack is a blocking interface to jack audio connection kit.
+ Using it, you can create a jack device and read/write from it
+ much like with ALSA or OSS. 
+ .
+ This package contains all the development stuff you need to develop
+ OCaml programs which use ocaml-bjack.
--- ocaml-bjack-0.1.3.orig/debian/clean
+++ ocaml-bjack-0.1.3/debian/clean
@@ -0,0 +1,5 @@
+Makefile
+config.log
+config.status
+src/META
+src/Makefile
--- ocaml-bjack-0.1.3.orig/debian/libbjack-ocaml-dev.install.in
+++ ocaml-bjack-0.1.3/debian/libbjack-ocaml-dev.install.in
@@ -0,0 +1,4 @@
+@OCamlStdlibDir@/bjack/META
+@OCamlStdlibDir@/bjack/*.a
+@OCamlStdlibDir@/bjack/*.cm*
+@OCamlStdlibDir@/bjack/bjack.mli
--- ocaml-bjack-0.1.3.orig/debian/rules
+++ ocaml-bjack-0.1.3/debian/rules
@@ -0,0 +1,18 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/rules/ocaml.mk
+
+# In order to regenerate 'debian/control' :
+#   DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean
+# Then check manually if everything's ok
+
+DESTDIR = $(CURDIR)/debian/tmp/$(OCAML_STDLIB_DIR)
+DEB_MAKE_INSTALL_TARGET := install OCAMLFIND_DESTDIR=$(DESTDIR) OCAMLFIND_LDCONF=ignore
+DEB_DH_INSTALL_SOURCEDIR := debian/tmp
+DEB_DH_INSTALL_ARGS :=  --list-missing
+
+build/libbjack-ocaml-dev::
+	mkdir -p $(DESTDIR)
+	dh_ocamldoc
--- ocaml-bjack-0.1.3.orig/debian/watch
+++ ocaml-bjack-0.1.3/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/savonet/ocaml-bjack-(.+)\.tar\.gz
--- ocaml-bjack-0.1.3.orig/debian/libbjack-ocaml.install.in
+++ ocaml-bjack-0.1.3/debian/libbjack-ocaml.install.in
@@ -0,0 +1 @@
+@OCamlStdlibDir@/bjack/dllbjack_stubs.so    @OCamlDllDir@
--- ocaml-bjack-0.1.3.orig/debian/changelog
+++ ocaml-bjack-0.1.3/debian/changelog
@@ -0,0 +1,67 @@
+ocaml-bjack (0.1.3-1) unstable; urgency=low
+
+  [ Mehdi Dogguy ]
+  * Bumped standard-versions to 3.8.3
+  * Remove generated files using debian/clean
+  * Use new features of dh-ocaml (>= 0.9~)
+    - Use dh_ocamldoc instead of ocamldoc-api-ref-config (Closes: #549719)
+
+  [ Romain Beauxis ]
+  * New upstream release
+
+ -- Romain Beauxis <toots@rastageeks.org>  Mon, 12 Oct 2009 00:18:41 -0500
+
+ocaml-bjack (0.1.2-2) unstable; urgency=low
+
+  * Fix ocaml's standard library path, fixes FTBFS.
+  * Install bjack.mli
+  * Register documentation with docbase
+  * Bumped standard-versions to 3.8.2
+  * Fix copyright-refers-to-versionless-license-file
+  * Move libbjack-ocaml-dev to ocaml section
+  * Fix copyright-with-old-dh-make-debian-copyright
+  * Add myself to uploaders
+
+ -- Mehdi Dogguy <dogguy@pps.jussieu.fr>  Mon, 29 Jun 2009 23:53:57 +0200
+
+ocaml-bjack (0.1.2-1) unstable; urgency=low
+
+  * New Upstream Version.
+  * Switch packaging to git.
+  * Update compat to 7.
+
+ -- Samuel Mimram <smimram@debian.org>  Wed, 25 Feb 2009 09:54:37 +0100
+
+ocaml-bjack (0.1.1-2) experimental; urgency=low
+
+  * Upload to experimental to build against ocaml 3.11.
+  * Versioned ocaml-related build-deps.
+  * Added build-dep on dh-ocaml.
+
+ -- Romain Beauxis <toots@rastageeks.org>  Sat, 13 Dec 2008 23:12:27 +0100
+
+ocaml-bjack (0.1.1-1) unstable; urgency=low
+
+  * New upstream release, fixes typo in caml_bjack_open_byte(s) 
+
+ -- Romain Beauxis <toots@rastageeks.org>  Mon, 23 Jun 2008 10:57:06 +0200
+
+ocaml-bjack (0.1.0-3) unstable; urgency=low
+
+  * Added needed libsamplerate0-dev to dependencies 
+    for libbjack-ocaml-dev
+  * Bumped standard-versions to 3.8.0
+
+ -- Romain Beauxis <toots@rastageeks.org>  Sun, 22 Jun 2008 13:18:52 +0200
+
+ocaml-bjack (0.1.0-2) unstable; urgency=low
+
+  * Updated copyright notice 
+
+ -- Romain Beauxis <toots@rastageeks.org>  Sat, 07 Jun 2008 18:12:42 +0200
+
+ocaml-bjack (0.1.0-1) unstable; urgency=low
+
+  * Initial upload to unstable (Closes: #480438)
+
+ -- Romain Beauxis <toots@rastageeks.org>  Sat, 07 Jun 2008 18:12:39 +0200
--- ocaml-bjack-0.1.3.orig/debian/libbjack-ocaml-dev.docs
+++ ocaml-bjack-0.1.3/debian/libbjack-ocaml-dev.docs
@@ -0,0 +1 @@
+README
--- ocaml-bjack-0.1.3.orig/debian/compat
+++ ocaml-bjack-0.1.3/debian/compat
@@ -0,0 +1 @@
+7
--- ocaml-bjack-0.1.3.orig/debian/control.in
+++ ocaml-bjack-0.1.3/debian/control.in
@@ -0,0 +1,55 @@
+Source: ocaml-bjack
+Section: devel
+Priority: optional
+Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
+Uploaders:
+ Samuel Mimram <smimram@debian.org>,
+ Romain Beauxis <toots@rastageeks.org>,
+ Mehdi Dogguy <mehdi@debian.org>
+Build-Depends:
+ @cdbs@,
+ libjack-dev,
+ libsamplerate0-dev,
+ ocaml-findlib,
+ pkg-config,
+Standards-Version: 3.8.3
+Homepage: http://savonet.sourceforge.net/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-ocaml-maint/trunk/packages/ocaml-bjack/trunk
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml-bjack/trunk/
+
+Package: libbjack-ocaml
+Architecture: any
+Section: libs
+Depends:
+ ${ocaml:Depends},
+ ${shlibs:Depends},
+ ${misc:Depends}
+Provides:
+ ${ocaml:Provides}
+Description: OCaml blocking interface to jack audio connection kit
+ ocaml-bjack is a blocking interface to jack audio connection kit.
+ Using it, you can create a jack device and read/write from it
+ much like with ALSA or OSS.
+ .
+ This package contains only the shared runtime stub libraries.
+
+Package: libbjack-ocaml-dev
+Architecture: any
+Section: ocaml
+Depends:
+ ${ocaml:Depends},
+ ${shlibs:Depends},
+ libjack-dev,
+ libsamplerate0-dev,
+ libbjack-ocaml (= ${binary:Version}),
+ ocaml-findlib,
+ ${misc:Depends}
+Provides:
+ ${ocaml:Provides}
+Description: OCaml blocking interface to jack audio connection kit
+ ocaml-bjack is a blocking interface to jack audio connection kit.
+ Using it, you can create a jack device and read/write from it
+ much like with ALSA or OSS. 
+ .
+ This package contains all the development stuff you need to develop
+ OCaml programs which use ocaml-bjack.
--- ocaml-bjack-0.1.3.orig/debian/libbjack-ocaml-dev.ocamldoc
+++ ocaml-bjack-0.1.3/debian/libbjack-ocaml-dev.ocamldoc
@@ -0,0 +1,2 @@
+# dh_ocamldoc file
+-d doc/html
--- ocaml-bjack-0.1.3.orig/debian/copyright
+++ ocaml-bjack-0.1.3/debian/copyright
@@ -0,0 +1,42 @@
+This package was debianized by Romain Beauxis <toots@rastageeks.org> on
+Sat, 10 May 2008 02:55:21 +0200.
+
+It was downloaded from <http://savonet.sourceforge.net/>
+
+Upstream Author: The Savonet Team <savonet-users@lists.sourceforge.net>
+
+Copyright: Copyright © 2007-2008 Romain Beauxis
+  Part of the code in jack_wrapper.{c,h} was taken from 
+  bio2jack, written by Chris Morgan
+  The copyright for this code is:
+    2004 Chris Morgan <cmorgan@alum.wpi.edu>
+
+License:
+
+  License for this package is the GNU Lesser General Public
+  License, with the aditional exception (the GNU Library General Public License 
+  is the former name for the GNU Lesser General Public License):
+
+<----
+As a special exception to the GNU Library General Public License, you may
+link, statically or dynamically, a "work that uses the Library" with a publicly
+distributed version of the Library to produce an executable file containing
+portions of the Library, and distribute that executable file under terms of
+your choice, without any of the additional requirements listed in clause 6
+of the GNU Library General Public License.
+By "a publicly distributed version of the Library", we mean either the unmodified
+Library as distributed by INRIA, or a modified version of the Library that is
+distributed under the conditions defined in clause 3 of the GNU Library General
+Public License. This exception does not however invalidate any other reasons why
+the executable file might be covered by the GNU Library General Public License.
+<----
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this package; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+On Debian systems, the complete text of the GNU Lesser General
+Public License can be found in `/usr/share/common-licenses/LGPL-2'.
+
+The Debian packaging is © 2008, Romain Beauxis <toots@rastageeks.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL-2'.
--- ocaml-bjack-0.1.3.orig/debian/gbp.conf
+++ ocaml-bjack-0.1.3/debian/gbp.conf
@@ -0,0 +1,2 @@
+[DEFAULT]
+pristine-tar = True