debian/0000755000000000000000000000000012247303542007170 5ustar debian/control0000644000000000000000000000232312174132327010573 0ustar Source: ocaml-res Section: ocaml Priority: extra Maintainer: Debian OCaml Maintainers Uploaders: Lifeng Sun Build-Depends: debhelper (>= 9), dh-ocaml (>= 0.9), ocaml-nox (>= 4), ocaml-findlib (>= 1.4) Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ocaml-maint/packages/ocaml-res.git Vcs-Git: git://anonscm.debian.org/pkg-ocaml-maint/packages/ocaml-res.git Homepage: https://bitbucket.org/mmottl/res Package: libres-ocaml-dev Architecture: any Depends: ${ocaml:Depends}, ${shlibs:Depends}, ${misc:Depends} Provides: ${ocaml:Provides} Recommends: ocaml-findlib Description: OCaml library for automatically resizing contiguous data structure This OCaml library consists of a set of modules which implement automatically resizing (i.e. reallocating) data structures that consume a contiguous part of memory. . This allows appending and removing of elements to/from arrays (both boxed and unboxed), strings (i.e. buffers), bit strings and weak arrays while still maintaining fast constant-time access to elements. . There are also functors that allow the generation of similar modules which use different reallocation strategies. debian/TODO0000644000000000000000000000014512174027071007657 0ustar - fix the Makefile in the examples so that they build the examples out of the box (or remove them) debian/README.source0000644000000000000000000000112312174027071011343 0ustar ocaml-res Debian source package =============================== Patching upstream sources ------------------------- This source package uses quilt to apply and remove its patches. Please refer to `/usr/share/doc/quilt/README.source' for information about how to use quilt for source packages. The quilt series is generated from the Git repository, using dom-{apply,save}-patches, from the dh-ocaml (>= 0.4.2) package. Please refer to the appendix about Git in the Debian OCaml Packaging Policy (from the same package). -- Stephane Glondu , Wed, 01 Jul 2009 15:14:06 +0200 debian/source/0000755000000000000000000000000012174027071010467 5ustar debian/source/format0000644000000000000000000000001312174027071011674 0ustar 3.0 (quilt)debian/docs0000644000000000000000000000002212174027071010034 0ustar README.md TODO.md debian/copyright0000644000000000000000000000317112174027071011124 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: res Upstream-Contact: Markus Mottl Source: https://bitbucket.org/mmottl/res Files: * Copyright: 1999-2008 Markus Mottl License: LGPL-2.1 | other As a special exception to the GNU Lesser 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 Lesser General Public License. By "a publicly distributed version of the Library", we mean either the unmodified Library as distributed by the authors, or a modified version of the Library that is distributed under the conditions defined in clause 3 of the GNU Lesser General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU Lesser General Public License. . The Library is distributed under the terms of the GNU Lesser General Public License version 2.1, with the special exception to it reported above. . The full text of the GNU Lessere General Public License version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. Files: debian/* Copyright: 2008 Stefano Zacchiroli License: GPL-3+ The Debian packaging is copyright Stefano Zacchiroli, and licensed under the GNU General Public License, see `/usr/share/common-licenses/GPL-3' for the full text. debian/libres-ocaml-dev.ocamldoc0000644000000000000000000000007512174027071014021 0ustar # This file must not be empty to be represented in .diff.gz! debian/watch0000644000000000000000000000012612174027071010217 0ustar version=3 https://bitbucket.org/mmottl/res/downloads .*/res/downloads/res-(.*).tar.gz debian/compat0000644000000000000000000000000212174027071010365 0ustar 9 debian/rules0000755000000000000000000000157712174027071010261 0ustar #!/usr/bin/make -f DESTDIR=$(CURDIR)/debian/libres-ocaml-dev include /usr/share/ocaml/ocamlvars.mk export OCAMLFIND_DESTDIR=$(DESTDIR)/$(OCAML_STDLIB_DIR) export OCAMLFIND_LDCONF=ignore %: dh $@ --with ocaml .PHONY: override_dh_auto_configure override_dh_auto_configure: ocaml setup.ml -configure --prefix /usr --destdir '$(DESTDIR)' --docdir '/usr/share/doc/libres-ocaml-dev' .PHONY: override_dh_auto_build override_dh_auto_build: ocaml setup.ml -build ocaml setup.ml -doc .PHONY: override_dh_auto_test override_dh_auto_test: ocaml setup.ml -test .PHONY: override_dh_auto_install override_dh_auto_install: mkdir -p '$(OCAMLFIND_DESTDIR)' ocaml setup.ml -install .PHONY: override_dh_install override_dh_install: dh_install --fail-missing rm -rf "$(DESTDIR)/usr/share/doc/libres-ocaml-dev/api" .PHONY: override_dh_auto_clean override_dh_auto_clean: ocaml setup.ml -distclean debian/gbp.conf0000644000000000000000000000003612174027071010605 0ustar [DEFAULT] pristine-tar = True debian/changelog0000644000000000000000000000555212247303323011046 0ustar ocaml-res (4.0.3-3) unstable; urgency=low * Team upload * Upload to unstable -- Stéphane Glondu Tue, 03 Dec 2013 08:22:59 +0100 ocaml-res (4.0.3-2) experimental; urgency=low * Team upload * Build-Depend on experimental ocaml-findlib so that ocamlopt works properly on new native architectures -- Stéphane Glondu Thu, 25 Jul 2013 07:28:51 +0200 ocaml-res (4.0.3-1) experimental; urgency=low * Team upload * New upstream release * Compile with OCaml >= 4 -- Stéphane Glondu Wed, 24 Jul 2013 21:44:13 +0200 ocaml-res (4.0.2-1) unstable; urgency=low [ Stefano Zacchiroli ] * remove myself from Uploaders [ Lifeng Sun ] * New upstream release. * Switch to debhelper and bump debhelper compat. * debian/control: - canonical VCS-* fields. - add myself to Uploaders. - update upstream homepage. - bump Standards-Version to 3.9.4. * debian/copyright: switch to dep5 format. * Fix watch file. * Remove patch 0001-Fix-build-on-non-native-archs.patch: fixed by the new upstream build system. [ Stéphane Glondu ] * Remove myself from Uploaders -- Lifeng Sun Mon, 10 Jun 2013 15:37:49 +0800 ocaml-res (3.2.0-2) unstable; urgency=low * Switch packaging to dh-ocaml 0.9 * Switch packaging to source format 3.0 (quilt) * debian/control: - update my e-mail address and remove DMUA - update Standards-Version to 3.8.3 (no changes) -- Stéphane Glondu Sat, 31 Oct 2009 01:58:31 +0100 ocaml-res (3.2.0-1) unstable; urgency=low * New Upstream Version * Use quilt to handle patches; add README.source * Update Standards-Version to 3.8.2 * Move to section ocaml * Add versioned dependency to ocaml-findlib to ease OCaml 3.11.1 transition -- Stephane Glondu Wed, 01 Jul 2009 15:28:00 +0200 ocaml-res (3.1.1-2) unstable; urgency=low * Update upstream patch to make it work on bytecode archs -- Stephane Glondu Mon, 16 Mar 2009 08:42:21 +0100 ocaml-res (3.1.1-1) unstable; urgency=low [ Mehdi Dogguy ] * Fix watch file. [ Stephane Glondu ] * New Upstream Version * Add dh-ocaml to Build-Depends, use ocaml.mk as a "rules" file * Update Standards-Version to 3.8.1 * Add myself to Uploaders and DMUA * Add gbp.conf * Change section to libdevel as complained by Lintian * Don't use GPL symlink in copyright file -- Stephane Glondu Sun, 15 Mar 2009 13:36:42 +0100 ocaml-res (2.2.5-2) unstable; urgency=low * uploading to unstable * add debian/TODO with an item about better Makefile for examples -- Stefano Zacchiroli Fri, 09 May 2008 13:50:08 +0200 ocaml-res (2.2.5-1) experimental; urgency=low * Initial release (Closes: #479238) -- Stefano Zacchiroli Sat, 03 May 2008 21:57:47 +0200 debian/examples0000644000000000000000000000001312174027071010722 0ustar examples/*