debian/0000755000000000000000000000000012256130315007164 5ustar debian/copyright0000644000000000000000000000276712175211532011134 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: ocaml-expect Upstream-Contact: Sylvain Le Gall Source: http://forge.ocamlcore.org/projects/ocaml-expect/ Files: * Copyright: 2010 OCamlCore SARL License: LGPL-2.1 with OCaml linking exception 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 upstream author, 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. . 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: 2010 Sylvain Le Gall License: GPL-3+ The Debian packaging is copyright Sylvain Le Gall, and licensed under the GNU General Public License, see `/usr/share/common-licenses/GPL-3' for the full text. debian/changelog0000644000000000000000000000163012256130315011036 0ustar ocaml-expect (0.0.3-1build1) trusty; urgency=medium * Rebuild for ocaml-4.01. -- Matthias Klose Mon, 23 Dec 2013 21:53:17 +0000 ocaml-expect (0.0.3-1) unstable; urgency=low * Team upload * Upload to unstable -- Stéphane Glondu Sat, 07 Dec 2013 11:58:40 +0100 ocaml-expect (0.0.3-1~exp1) experimental; urgency=low [ Sylvain Le Gall ] * Remove Sylvain Le Gall from uploaders [ Lifeng Sun ] * New upstream release. * debian/control: - Add myself to Uploaders. - Bump Standards-Version to 3.9.4. - Canonical VCS-* fields. * debian/copyright: switch to dep5 format. * Bump debhelper compat. * Add watch file. -- Lifeng Sun Sat, 27 Jul 2013 18:56:21 +0800 ocaml-expect (0.0.2-1) unstable; urgency=low * Initial release. (Closes: #603829) -- Sylvain Le Gall Fri, 19 Nov 2010 17:34:11 +0100 debian/libexpect-ocaml-dev.install.in0000644000000000000000000000030612175211532015005 0ustar @OCamlStdlibDir@/expect/*.cmi @OCamlStdlibDir@/expect/*.ml* OPT: @OCamlStdlibDir@/expect/*.cmx OPT: @OCamlStdlibDir@/expect/*.cmxa OPT: @OCamlStdlibDir@/expect/*.a usr/share/doc/libexpect-ocaml-dev debian/libexpect-ocaml.install.in0000644000000000000000000000014212175211532014227 0ustar @OCamlStdlibDir@/expect/META @OCamlStdlibDir@/expect/*.cm[ao] DYN: @OCamlStdlibDir@/expect/*.cmxs debian/libexpect-ocaml-dev.doc-base.10000644000000000000000000000036212175211532014550 0ustar Document: ocaml-expect-api-expect Title: API reference for Expect Author: Sylvain Le Gall Section: Programming/OCaml Format: html Index: /usr/share/doc/libexpect-ocaml-dev/expect/index.html Files: /usr/share/doc/libexpect-ocaml-dev/expect/* debian/compat0000644000000000000000000000000212175211532010363 0ustar 9 debian/control0000644000000000000000000000351412175211765010603 0ustar Source: ocaml-expect Section: ocaml Priority: optional Maintainer: Debian OCaml Maintainers Uploaders: Lifeng Sun Build-Depends: ocaml-nox (>= 4.00.1), ocaml-findlib (>= 1.4), ocaml-base-nox, libpcre-ocaml-dev, libounit-ocaml-dev, libextlib-ocaml-dev, dh-ocaml (>= 0.9~), debhelper (>= 9) Standards-Version: 3.9.4 Homepage: http://forge.ocamlcore.org/projects/ocaml-expect/ Vcs-Git: git://anonscm.debian.org/pkg-ocaml-maint/packages/ocaml-expect.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ocaml-maint/packages/ocaml-expect.git Package: libexpect-ocaml-dev Architecture: any Depends: ${ocaml:Depends}, ${misc:Depends} Provides: ${ocaml:Provides} Recommends: ocaml-findlib Description: Expect-like framework for OCaml - development files This is a simple implementation of `expect` to help building unitary testing of interactive program. . It helps to receive question and send answers from an interactive process. You can match the question using a regular expression (Str). You can also use a timeout to ensure that the process answer in time. . See the [Expect manual](http://expect.nist.gov/) for more information and example. Package: libexpect-ocaml Architecture: any Depends: ${ocaml:Depends}, ${misc:Depends}, ${shlibs:Depends} Provides: ${ocaml:Provides} Description: Expect-like framework for OCaml This is a simple implementation of `expect` to help building unitary testing of interactive program. . It helps to receive question and send answers from an interactive process. You can match the question using a regular expression (Str). You can also use a timeout to ensure that the process answer in time. . See the [Expect manual](http://expect.nist.gov/) for more information and example. . This package contains the shared runtime libraries. debian/rules0000755000000000000000000000164212175211532010250 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 OCAMLFIND_DESTDIR=$(DESTDIR)/$(OCAML_STDLIB_DIR) export OCAMLFIND_DESTDIR %: dh $@ --with ocaml .PHONY: override_dh_auto_configure override_dh_auto_configure: ocaml setup.ml -configure --prefix /usr --destdir '$(DESTDIR)' --docdir '/usr/share/doc/libexpect-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 '$(DESTDIR)/usr/bin' 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/0000755000000000000000000000000012175211532010465 5ustar debian/source/format0000644000000000000000000000001412175211532011673 0ustar 3.0 (quilt) debian/gbp.conf0000644000000000000000000000024212175211717010607 0ustar [DEFAULT] pristine-tar = True cleaner = debuild clean && dh_quilt_unpatch && dh_clean upstream-branch = experimental/upstream debian-branch = experimental/master debian/watch0000644000000000000000000000013412175211532010214 0ustar version=3 https://forge.ocamlcore.org/frs/?group_id=177 .*/ocaml-expect-([0-9\.]*)\.tar\.gz