debian/0000755000000000000000000000000012247436375007203 5ustar debian/control0000644000000000000000000000350012174552314010573 0ustar Source: ocaml-text Priority: optional Maintainer: Debian OCaml Maintainers Uploaders: Stéphane Glondu Build-Depends: debhelper (>= 8), dh-ocaml (>= 0.9.6~), ocaml-findlib (>= 1.4), camlp4, libpcre-ocaml-dev (>= 6.2.2), ocaml-nox (>= 4) Standards-Version: 3.9.4 Section: ocaml Homepage: http://ocaml-text.forge.ocamlcore.org/ Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ocaml-maint/packages/ocaml-text.git Vcs-Git: git://anonscm.debian.org/pkg-ocaml-maint/packages/ocaml-text.git Package: libtext-ocaml-dev Architecture: any Depends: ${ocaml:Depends}, ${shlibs:Depends}, ${misc:Depends} Provides: ${ocaml:Provides} Recommends: ocaml-findlib Description: library for dealing with sequences of Unicode characters OCaml-Text is an OCaml library for dealing with "text", i.e. sequences of Unicode characters, in a convenient way. It supports: * encoding/decoding of text; * functions for manipulation of UTF-8 encoded strings, such as validation and most of the functions from "List" and "String" modules of the OCaml standard library, adapted for UTF-8 strings; * locale-specific text functions (compare, upper, is_alpha, ...). . It is composed of two modules: * "Encoding" for encoding/decoding text * "Text" for text manipulation . This package contains all the development stuff you need to use the OCaml-Text library in your programs. Package: libtext-ocaml Architecture: any Depends: ${ocaml:Depends}, ${shlibs:Depends}, ${misc:Depends} Provides: ${ocaml:Provides} Description: runtime libraries of OCaml-Text OCaml-Text is an OCaml library for dealing with "text", i.e. sequences of Unicode characters, in a convenient way. . This package contains runtime libraries (shared stub library, bytecode plugin and native code plugin if available). debian/README.source0000644000000000000000000000065212174552235011356 0ustar ocaml-text for Debian --------------------- 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. Have a look at the `redo-patches' target of debian/rules for more details. -- Stephane Glondu Sat, 09 May 2009 11:47:11 +0200 debian/source/0000755000000000000000000000000012174552235010474 5ustar debian/source/format0000644000000000000000000000001412174552235011702 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000363412174552235011135 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Packaged-By: Stéphane Glondu Packaged-Date: Sat, 09 May 2009 11:47:11 +0200 Source: http://ocaml-text.forge.ocamlcore.org/ Upstream-Contact: Jérémie Dimino Files: * Copyright: 2008-2009, Jérémie Dimino License: BSD-C3 Files: debian/* Copyright: 2009-2013, Stéphane Glondu License: BSD-C3 License: BSD-C3 All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Jeremie Dimino nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/watch0000644000000000000000000000025312174552235010225 0ustar version=3 http://forge.ocamlcore.org/frs/?group_id=100 .*/ocaml-text-(.*)\.tar\.gz # Upstream darcs repository: # http://darcs.ocamlcore.org/repos/ocaml-text/ocaml-text debian/compat0000644000000000000000000000000212174552235010372 0ustar 8 debian/rules0000755000000000000000000000230612174552235010255 0ustar #!/usr/bin/make -f # -*- makefile -*- include /usr/share/ocaml/ocamlvars.mk DESTDIR=$(CURDIR)/debian/tmp export OCAMLFIND_DESTDIR=$(DESTDIR)/$(OCAML_STDLIB_DIR) export OCAMLFIND_LDCONF=ignore # Needed for running tests on bytecode architectures export CAML_LD_LIBRARY_PATH=$(CURDIR)/_build/src %: dh $@ --with ocaml .PHONY: override_dh_auto_configure override_dh_auto_configure: ocaml setup.ml -configure --prefix /usr --destdir '$(DESTDIR)' --enable-pcre --docdir /usr/share/doc/libtext-ocaml-dev .PHONY: override_dh_auto_build override_dh_auto_build: ocaml setup.ml -build ifeq ($(OCAML_NATDYNLINK),yes) cd _build && for u in text text-pcre text-bigarray; do ocamlopt -shared -I src -o src/$$u.cmxs src/$$u.cmxa; done cd _build && for u in text-pcre-syntax; do ocamlopt -shared -I syntax -o syntax/$$u.cmxs syntax/$$u.cmxa; done endif 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 .PHONY: override_dh_auto_clean override_dh_auto_clean: ocaml setup.ml -distclean debian/gbp.conf0000644000000000000000000000003612174552235010612 0ustar [DEFAULT] pristine-tar = True debian/libtext-ocaml-dev.doc-base0000644000000000000000000000045712174552235014121 0ustar Document: ocaml-text Title: OCaml-Text API documentation Author: Jérémie Dimino Abstract: OCaml-Text ocamldoc-generated API documentation Section: Programming/OCaml Format: HTML Index: /usr/share/doc/libtext-ocaml-dev/api/index.html Files: /usr/share/doc/libtext-ocaml-dev/api/* debian/libtext-ocaml-dev.install.in0000644000000000000000000000042212174552235014507 0ustar /usr/share/doc/libtext-ocaml-dev @OCamlStdlibDir@/text/text-pcre-syntax.cma @OCamlStdlibDir@/text/*.mli @OCamlStdlibDir@/text/*.cmi @OCamlStdlibDir@/text/*.a OPT: @OCamlStdlibDir@/text/*.cmxa OPT: @OCamlStdlibDir@/text/*.cmx DYN: @OCamlStdlibDir@/text/text-pcre-syntax.cmxs debian/changelog0000644000000000000000000000420612247436267011057 0ustar ocaml-text (0.6-3) unstable; urgency=low * Upload to unstable -- Stéphane Glondu Tue, 03 Dec 2013 21:19:03 +0100 ocaml-text (0.6-2) experimental; urgency=low * Compile with OCaml >= 4 * Update Vcs-* -- Stéphane Glondu Fri, 26 Jul 2013 21:58:18 +0200 ocaml-text (0.6-1) unstable; urgency=low * New upstream release * Use format version 1.0 in debian/copyright * Bump Standards-Version to 3.9.4 -- Stéphane Glondu Thu, 09 May 2013 12:03:18 +0200 ocaml-text (0.5-1) unstable; urgency=low * New upstream release * Bump Standards-Version to 3.9.2 (no changes) -- Stéphane Glondu Thu, 22 Sep 2011 22:18:16 +0200 ocaml-text (0.4-2) unstable; urgency=low * Upload to unstable * Bump debhelper compat level to 8 * Bump versioned dependency to libpcre-ocaml-dev to ease pcre-ocaml transition -- Stéphane Glondu Mon, 21 Feb 2011 02:06:11 +0100 ocaml-text (0.4-1) experimental; urgency=low * New upstream release * Bump Standards-Version to 3.9.1 (no changes) -- Stéphane Glondu Sat, 01 Jan 2011 19:25:52 +0100 ocaml-text (0.3-1) unstable; urgency=low * New upstream release - remove patch (merged upstream) - add camlp4, libpcre-ocaml-dev to Build-Depends * Switch source format to 3.0 (quilt) * Bump Standards-Version to 3.8.4 (no changes) * Update watch file -- Stéphane Glondu Tue, 02 Mar 2010 23:33:09 +0100 ocaml-text (0.2-3) unstable; urgency=low * Switch packaging to dh-ocaml 0.9 * debian/control: - add myself to Uploaders, remove DMUA - update Standards-Version to 3.8.3 (no changes) -- Stéphane Glondu Wed, 14 Oct 2009 00:05:45 +0200 ocaml-text (0.2-2) unstable; urgency=low * Add dependency to libtext-ocaml in libtext-ocaml-dev (Closes: #534112) * Update Standards-Version to 3.8.2 -- Stephane Glondu Sun, 21 Jun 2009 21:27:46 +0200 ocaml-text (0.2-1) unstable; urgency=low * Initial release (Closes: #527906) -- Stephane Glondu Sat, 09 May 2009 11:47:11 +0200 debian/libtext-ocaml.install.in0000644000000000000000000000047012174552235013736 0ustar @OCamlStdlibDir@/text/META @OCamlStdlibDir@/text/text.cma @OCamlStdlibDir@/text/text-pcre.cma @OCamlStdlibDir@/text/text-bigarray.cma @OCamlStdlibDir@/text/*.so @OCamlDllDir@ DYN: @OCamlStdlibDir@/text/text.cmxs DYN: @OCamlStdlibDir@/text/text-pcre.cmxs DYN: @OCamlStdlibDir@/text/text-bigarray.cmxs