debian/0000755000000000000000000000000012256246330007171 5ustar debian/docs0000644000000000000000000000001212244745315010041 0ustar README.md debian/copyright0000644000000000000000000000464512244745315011141 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: ocaml-estring Source: https://github.com/diml/estring Files: * Copyright: 2008 Jeremie Dimino License: 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. Files: debian/* Copyright: 2013 Dmitrijs Ledkovs License: Apache Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. . On Debian systems, the complete text of the Apache 2.0 can be found in "/usr/share/common-licenses/Apache-2.0". debian/libestring-ocaml-dev.install.in0000644000000000000000000000017412244745315015203 0ustar usr/share/doc @OCamlStdlibDir@/*/*.cmi @OCamlStdlibDir@/*/*.ml* OPT: @OCamlStdlibDir@/*/*.cmx* OPT: @OCamlStdlibDir@/*/*.a debian/changelog0000644000000000000000000000141612256246330011045 0ustar ocaml-estring (20130822-2build1) trusty; urgency=medium * Rebuild for ocaml-4.01. -- Matthias Klose Tue, 24 Dec 2013 08:59:04 +0000 ocaml-estring (20130822-2) unstable; urgency=low * Team upload. * libestring-ocaml-dev now Conflicts/Replaces libbatteries-ocaml-dev (< 2.0) (Closes: #722559). * Fix FTBFS on bytecode architectures: + Add 0001-Require-ocamlbuild-in-setup.ml.patch, require "ocamlbuild" in setup.ml. * Add Vcs-{Git,Browser} fields in debian/control. * Require oasis (>= 0.3). -- Mehdi Dogguy Mon, 25 Nov 2013 23:21:50 +0100 ocaml-estring (20130822-1) unstable; urgency=low * Initial release (Closes: #720547) -- Dmitrijs Ledkovs Thu, 22 Aug 2013 23:30:07 +0100 debian/clean0000644000000000000000000000001612244745315010177 0ustar setup-dev.exe debian/compat0000644000000000000000000000000212244745315010373 0ustar 9 debian/libestring-ocaml.install.in0000644000000000000000000000006412244745315014425 0ustar @OCamlStdlibDir@/*/META @OCamlStdlibDir@/*/*.cm[ao] debian/patches/0000755000000000000000000000000012244746666010636 5ustar debian/patches/0001-Require-ocamlbuild-in-setup.ml.patch0000644000000000000000000000102212244746666020126 0ustar From: Mehdi Dogguy Date: Mon, 25 Nov 2013 22:48:08 +0100 Subject: Require ocamlbuild in setup.ml Eventually, this should be fixed in oasis and more specifically in oasis.dynrun's META file to require ocamlbuild. --- setup.ml | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.ml b/setup.ml index 9356f63..7653658 100644 --- a/setup.ml +++ b/setup.ml @@ -7,6 +7,7 @@ (* OASIS_START *) #use "topfind";; +#require "ocamlbuild";; #require "oasis.dynrun";; open OASISDynRun;; (* OASIS_STOP *) -- debian/patches/series0000644000000000000000000000005212244746666012050 0ustar 0001-Require-ocamlbuild-in-setup.ml.patch debian/control0000644000000000000000000000300212244747601010573 0ustar Source: ocaml-estring Section: ocaml Priority: optional Maintainer: Debian OCaml Maintainers Uploaders: Dmitrijs Ledkovs Build-Depends: debhelper (>= 9), dh-ocaml, libfindlib-ocaml-dev, liboasis-ocaml-dev (>= 0.3), ocaml-findlib, ocaml-nox Standards-Version: 3.9.4 Homepage: https://forge.ocamlcore.org/projects/estring/ Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ocaml-maint/packages/ocaml-estring.git Vcs-Git: git://git.debian.org/git/pkg-ocaml-maint/packages/ocaml-estring.git Package: libestring-ocaml Architecture: any Depends: ${misc:Depends}, ${ocaml:Depends}, ${shlibs:Depends} Provides: ${ocaml:Provides} Description: Estring: OCaml development platform (runtime) estring, which stands for `extended strings' is a syntax extension allowing to prefix string literals with a specifier to change their meaning. . This package used to be part of the batteries project. . This package contains the shared runtime libraries. Package: libestring-ocaml-dev Architecture: any Depends: ocaml-findlib, ${misc:Depends}, ${ocaml:Depends}, ${shlibs:Depends} Provides: ${ocaml:Provides} Conflicts: libbatteries-ocaml-dev (<< 2.0) Replaces: libbatteries-ocaml-dev (<< 2.0) Description: Estring: OCaml development platform (development) estring, which stands for `extended strings' is a syntax extension allowing to prefix string literals with a specifier to change their meaning. . This package used to be part of the batteries project. debian/rules0000755000000000000000000000156012244747011010252 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 DESTDIR=$(CURDIR)/debian/tmp include /usr/share/ocaml/ocamlvars.mk export OCAMLFIND_DESTDIR=$(DESTDIR)/$(OCAML_STDLIB_DIR) %: dh $@ --with ocaml .PHONY: override_dh_auto_configure override_dh_auto_configure: ocaml setup.ml -configure --prefix /usr --destdir '$(DESTDIR)' --docdir /usr/share/doc/libestring-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 .PHONY: override_dh_auto_clean override_dh_auto_clean: -ocaml setup.ml -distclean debian/source/0000755000000000000000000000000012244745315010475 5ustar debian/source/format0000644000000000000000000000001412244745315011703 0ustar 3.0 (quilt) debian/libsqlexpr-ocaml-dev.ocamldoc0000644000000000000000000000004012244745315014724 0ustar -d estring --doc-base-generate