--- ocaml-duppy-0.2.0.orig/debian/changelog +++ ocaml-duppy-0.2.0/debian/changelog @@ -0,0 +1,57 @@ +ocaml-duppy (0.2.0-2) unstable; urgency=low + + * Tighten build-dependency on ocaml-pcre. + + -- Samuel Mimram Fri, 27 Feb 2009 09:36:10 +0100 + +ocaml-duppy (0.2.0-1) unstable; urgency=low + + * New Upstream Version. + * Switch packaging to git. + * Use dh-ocaml's predefined variables. + * Update compat to 7. + + -- Samuel Mimram Wed, 25 Feb 2009 18:08:09 +0100 + +ocaml-duppy (0.1.2-1) unstable; urgency=low + + * New upstream release + * Updated standards to 3.8.0 + * Changed maintainer to Debian OCaml Maintainers + * Added libpcre-ocaml-dev to binary dependencies + + -- Romain Beauxis Wed, 25 Jun 2008 15:25:37 +0200 + +ocaml-duppy (0.1.1-1) unstable; urgency=low + + * New upstream release, now installs .cmx file + * Changed maintainer to Debian OCaml Maintainers + + -- Romain Beauxis Tue, 15 Apr 2008 17:40:51 +0100 + +ocaml-duppy (0.1.0-4) unstable; urgency=low + + * Really fix dh_install call + + -- Romain Beauxis Sun, 06 Apr 2008 15:17:43 +0100 + +ocaml-duppy (0.1.0-3) unstable; urgency=low + + * Fixed FTBFS on non native archs due to missing installed files. + + -- Romain Beauxis Thu, 03 Apr 2008 11:03:03 +0100 + +ocaml-duppy (0.1.0-2) unstable; urgency=low + + * Fixed debian/copyright + * Fixed typos in debian/control + + -- Romain Beauxis Thu, 03 Apr 2008 10:09:44 +0100 + +ocaml-duppy (0.1.0-1) unstable; urgency=low + + * Initial release and upload to unstable + Closes: #471053 + + -- Romain Beauxis Sun, 23 Mar 2008 12:57:20 +0100 + --- ocaml-duppy-0.2.0.orig/debian/compat +++ ocaml-duppy-0.2.0/debian/compat @@ -0,0 +1 @@ +7 --- ocaml-duppy-0.2.0.orig/debian/control +++ ocaml-duppy-0.2.0/debian/control @@ -0,0 +1,22 @@ +Source: ocaml-duppy +Section: devel +Priority: optional +Maintainer: Debian OCaml Maintainers +Uploaders: Samuel Mimram , Romain Beauxis +Build-Depends: cdbs (>= 0.4.23-1.1), ocaml-nox (>= 3.11), debhelper (>= 7), dh-ocaml, ocaml-findlib (>= 1.2.4), libpcre-ocaml-dev (>= 5.15.1) +Standards-Version: 3.8.0 +Homepage: http://savonet.sourceforge.net/ +Vcs-Git: git://git.debian.org/git/pkg-ocaml-maint/packages/ocaml-duppy.git +Vcs-Browser: http://git.debian.org/?p=pkg-ocaml-maint/packages/ocaml-duppy.git + +Package: libduppy-ocaml-dev +Architecture: any +Section: libdevel +Depends: ocaml-nox-${F:OCamlABI}, ocaml-findlib, libpcre-ocaml-dev, ${misc:Depends} +Description: Advanced scheduler for OCaml + Duppy is an event scheduler written for OCaml. It allows the user + to execute tasks according to some events on unix sockets, or + a given delay. + . + Several threaded queues can proceed tasks in parallel. Tasks are + processed according to an abstract notion of priority. --- ocaml-duppy-0.2.0.orig/debian/control.in +++ ocaml-duppy-0.2.0/debian/control.in @@ -0,0 +1,22 @@ +Source: ocaml-duppy +Section: devel +Priority: optional +Maintainer: Debian OCaml Maintainers +Uploaders: Samuel Mimram , Romain Beauxis +Build-Depends: @cdbs@, debhelper (>= 7), dh-ocaml, ocaml-findlib (>= 1.2.4), libpcre-ocaml-dev (>= 5.15.1) +Standards-Version: 3.8.0 +Homepage: http://savonet.sourceforge.net/ +Vcs-Git: git://git.debian.org/git/pkg-ocaml-maint/packages/ocaml-duppy.git +Vcs-Browser: http://git.debian.org/?p=pkg-ocaml-maint/packages/ocaml-duppy.git + +Package: libduppy-ocaml-dev +Architecture: any +Section: libdevel +Depends: ocaml-nox-${F:OCamlABI}, ocaml-findlib, libpcre-ocaml-dev, ${misc:Depends} +Description: Advanced scheduler for OCaml + Duppy is an event scheduler written for OCaml. It allows the user + to execute tasks according to some events on unix sockets, or + a given delay. + . + Several threaded queues can proceed tasks in parallel. Tasks are + processed according to an abstract notion of priority. --- ocaml-duppy-0.2.0.orig/debian/copyright +++ ocaml-duppy-0.2.0/debian/copyright @@ -0,0 +1,22 @@ +This package was debianized by Romain Beauxis . + +It was downloaded from + +Upstream Author: The Savonet Team + +Copyright: Copyright (C) 2008 The Savonet Team + +License: + + License for this package is the GNU General Public + License. + + You should have received a copy of the GNU 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 General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2008, Romain Beauxis and +is licensed under the GPL. --- ocaml-duppy-0.2.0.orig/debian/gbp.conf +++ ocaml-duppy-0.2.0/debian/gbp.conf @@ -0,0 +1,2 @@ +[DEFAULT] +pristine-tar = True --- ocaml-duppy-0.2.0.orig/debian/libduppy-ocaml-dev.docs +++ ocaml-duppy-0.2.0/debian/libduppy-ocaml-dev.docs @@ -0,0 +1,2 @@ +README +doc/html --- ocaml-duppy-0.2.0.orig/debian/libduppy-ocaml-dev.install.in +++ ocaml-duppy-0.2.0/debian/libduppy-ocaml-dev.install.in @@ -0,0 +1 @@ +@OCamlStdlibDir@/duppy/* --- ocaml-duppy-0.2.0.orig/debian/rules +++ ocaml-duppy-0.2.0/debian/rules @@ -0,0 +1,17 @@ +#!/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_ARGS := --list-missing + +build/libduppy-ocaml-dev:: + mkdir -p $(DESTDIR) + make doc --- ocaml-duppy-0.2.0.orig/debian/watch +++ ocaml-duppy-0.2.0/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/savonet/ocaml-duppy-(.+)\.tar\.gz