debian/0000755000000000000000000000000012247306475007200 5ustar debian/libounit-ocaml-dev.docs0000644000000000000000000000001312151437302013522 0ustar README.txt debian/control0000644000000000000000000000227112247306320010572 0ustar Source: ounit Section: ocaml Priority: optional Maintainer: Debian OCaml Maintainers Uploaders: Stéphane Glondu , Hendrik Tews , Lifeng Sun Build-Depends: debhelper (>= 9), ocaml-nox (>= 4.00.1), ocaml-best-compilers, ocaml-findlib (>= 1.3.2), dh-ocaml (>= 0.9.1), camlp4 Standards-Version: 3.9.4 Homepage: http://ounit.forge.ocamlcore.org Vcs-Git: git://anonscm.debian.org/pkg-ocaml-maint/packages/ounit.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ocaml-maint/packages/ounit.git Package: libounit-ocaml-dev Architecture: any Depends: ${ocaml:Depends}, ${shlibs:Depends}, ${misc:Depends} Provides: ${ocaml:Provides} Suggests: ocaml-findlib Description: Unit testing framework for OCaml OUnit is a unit testing framework for OCaml, imspired by the JUnit tool for JAva and the HUnit tool for Haskell. . OUnit is designed to provide a convenient way for you to write tests for your OCaml code. Tests can be aggregated into test suites, making it easy to both write tests close to the code being examined and execute a comprehensive aggregate set of tests -- or any subset of it. debian/README.Debian0000644000000000000000000000076312151437302011233 0ustar ounit for Debian ---------------- To build a module using OUnit, use a command like this: ocamlfind ocamlc -package oUnit -c -o foo.cmo foo.ml To link an application that uses OUnit: ocamlfind ocamlc -package oUnit unix.cma oUnit.cma -o app file.cmo For native code, the commands are: ocamlfind ocamlopt -package oUnit -c -o foo.cmx foo.ml and: ocamlfind ocamlopt -package oUnit unix.cmxa oUnit.cmxa -o app file.cmx -- John Goerzen , Thu, 11 Mar 2004 19:28:36 -0600 debian/source/0000755000000000000000000000000012151437302010464 5ustar debian/source/format0000644000000000000000000000001412151437302011672 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000276412151437302011130 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Contact: Sylvain Le Gall , Maas-Maarten Zeeman Files: * Copyright: 2002, 2003, Maas-Maarten Zeeman 2010, OCamlCore SARL License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this document and the OUnit software ("the Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . The Software is provided ``as is'', without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall Maas-Maarten Zeeman be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the Software or the use or other dealings in the software. Files: debian/* Copyright: (C) 2006-2010 Sylvain Le Gall License: GPL-2+ On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. debian/watch0000644000000000000000000000012512151437302010213 0ustar version=3 https://forge.ocamlcore.org/frs/?group_id=162 .*/ounit-([0-9\.]*)\.tar\.gz debian/libounit-ocaml-dev.examples0000644000000000000000000000001312151437302014410 0ustar examples/* debian/libounit-ocaml-dev.install.in0000644000000000000000000000053512151437302014656 0ustar usr/share/doc/ounit/* /usr/share/doc/libounit-ocaml-dev/html/api @OCamlStdlibDir@/oUnit/*.cma @OCamlStdlibDir@/oUnit/*.cmi @OCamlStdlibDir@/oUnit/META @OCamlStdlibDir@/oUnit/*.mli OPT: debian/tmp/usr/lib/ocaml/oUnit/*.a DYN: debian/tmp/usr/lib/ocaml/oUnit/*.cmxs OPT: debian/tmp/usr/lib/ocaml/oUnit/*.cmx OPT: debian/tmp/usr/lib/ocaml/oUnit/*.cmxa debian/compat0000644000000000000000000000000212151437302010362 0ustar 9 debian/libounit-ocaml-dev.dirs.in0000644000000000000000000000002112151437302014137 0ustar @OCamlStdlibDir@ debian/rules0000755000000000000000000000323112151437302010243 0ustar #!/usr/bin/make -f # debian/rules for ounit package # Copyright (C) 2006-2010 Sylvain Le Gall # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, # MA 02110-1301, USA. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 #export DH_OPTIONS=-v DESTDIR=$(CURDIR)/debian/tmp include /usr/share/ocaml/ocamlvars.mk OCAMLFIND_DESTDIR=$(DESTDIR)/$(OCAML_STDLIB_DIR) export OCAMLFIND_DESTDIR OCAMLFIND_LDCONF=ignore export OCAMLFIND_LDCONF %: dh $@ --with ocaml .PHONY: override_dh_auto_configure override_dh_auto_configure: ocaml setup.ml -configure --prefix /usr --destdir '$(DESTDIR)' .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/gbp.conf0000644000000000000000000000003612247306276010615 0ustar [DEFAULT] pristine-tar = True debian/changelog0000644000000000000000000001645012247306373011055 0ustar ounit (1.1.2-3) unstable; urgency=low * Upload to unstable -- Stéphane Glondu Tue, 03 Dec 2013 08:49:15 +0100 ounit (1.1.2-3~exp1) experimental; urgency=low [ Hendrik Tews ] * silent lintian canonical vcs info [ Lifeng Sun ] * Upload to experimental. * libounit-ocaml-dev: depends on ocaml-findlib. * Add myself to Uploaders. -- Lifeng Sun Wed, 24 Jul 2013 20:17:53 +0800 ounit (1.1.2-2) unstable; urgency=low * build depend on ocaml-best-compilers for native compilation * fix FTBFS error on armel -- Hendrik Tews Wed, 29 May 2013 14:51:13 +0200 ounit (1.1.2-1) unstable; urgency=low [ Sylvain Le Gall ] * Remove Sylvain Le Gall from uploaders [ Hendrik Tews ] * New upstream release * install cmx files * remove debian-changes-1.1.0-1 patch and strange changes in _tags * add myself to uploaders * bump standards version * bump debhelper compat level -- Hendrik Tews Wed, 22 May 2013 12:15:56 +0200 ounit (1.1.1-1) unstable; urgency=low * New upstream release * Switch debian/copyright to format 1.0 -- Stéphane Glondu Thu, 01 Mar 2012 10:07:44 +0100 ounit (1.1.0-3) unstable; urgency=low * Upload to unstable -- Sylvain Le Gall Fri, 18 Feb 2011 18:17:09 +0100 ounit (1.1.0-2) experimental; urgency=low * Fix "FTBFS: sh: camlp4: not found", add camlp4 to build depends (Closes: #610040) -- Sylvain Le Gall Sat, 15 Jan 2011 14:40:03 +0100 ounit (1.1.0-1) experimental; urgency=low * New upstream release: * Applied patch from Michael Ekstrand concerning stack trace (Closes: #528603) * Update META version field (Closes: #607872) * Update homepage * Rebuild debian/rules using dh and oasis * Upgrade Standards-Version to 3.9.1 (no change) * Use DEP-5 for debian/copyright -- Sylvain Le Gall Fri, 07 Jan 2011 16:30:09 +0000 ounit (1.0.3-5) unstable; urgency=low * Add build-depends on docbook-xml (Closes: #561204) -- Sylvain Le Gall Tue, 15 Dec 2009 20:54:21 +0000 ounit (1.0.3-4) unstable; urgency=low * Add Provides field for dh-ocaml * Use quilt to apply patch valid-docbook -- Sylvain Le Gall Mon, 14 Dec 2009 23:37:32 +0000 ounit (1.0.3-3) unstable; urgency=low [ Sylvain Le Gall ] * Switch packaging to git [ Stéphane Glondu ] * Remove unused dpatch stuff * debian/control: - add myself to Uploaders - move to section ocaml - update Standards-Version to 3.8.3 -- Stéphane Glondu Tue, 03 Nov 2009 21:38:03 +0100 ounit (1.0.3-2) unstable; urgency=low * Update Standards-Version to 3.8.0: * Add Homepage field * Add README.source * Add build-dependency on dh-ocaml, use rules/ocaml.ml * Upgrade to debhelper 7, use debian/clean -- Sylvain Le Gall Sat, 28 Feb 2009 19:39:57 +0100 ounit (1.0.3-1) unstable; urgency=low * New upstream version * Remove 01_destdir patch, use OCAMLFIND_DESTDIR to define the location of destination file -- Sylvain Le Gall Tue, 05 Aug 2008 20:42:48 +0000 ounit (1.0.2-8) unstable; urgency=low [ Sylvain Le Gall ] * Use ocaml 3.10.0-9 for generating .ocamldoc-apiref automatically (Closes: #484495) * Correct OUnit manual section (now Programming/OCaml) * Upgrade Standards-Version to 3.7.3 (no change) [ Stefano Zacchiroli ] * fix vcs-svn field to point just above the debian/ dir -- Sylvain Le Gall Wed, 04 Jun 2008 17:21:40 +0200 ounit (1.0.2-7) unstable; urgency=low * Build for ocaml 3.10.0 * Use standard .doc-base.ocamldoc-apiref -- Sylvain Le Gall Tue, 04 Sep 2007 00:26:46 +0200 ounit (1.0.2-6) experimental; urgency=low * Upgrade debian/watch version to 3, * Remove generated files from debian/*.in, * Change email address to gildor@debian.org everywhere * Rebuild for ocaml 3.10.0 -- Sylvain Le Gall Sat, 07 Jul 2007 23:26:26 +0200 ounit (1.0.2-5) unstable; urgency=low * Use CDBS for debian/rules, * Upgrade debhelper debian/compat to 5, * Better use debhelper script, add files : - libounit-ocaml-dev.docs, - libounit-ocaml-dev.dirs.in, - libounit-ocaml-dev.install (Closes: #370758), - libounit-ocaml-dev.examples. -- Sylvain Le Gall Thu, 26 Oct 2006 23:31:47 +0200 ounit (1.0.2-4) unstable; urgency=low * Change my email address to gildor@debian.org, * Made debian/control a PHONY target, * Upgrade standards version to 3.7.2 (no change), -- Sylvain Le Gall Wed, 14 Jun 2006 21:55:46 +0200 ounit (1.0.2-3) unstable; urgency=low * Rebuild for OCaml 3.09.1 -- Sylvain Le Gall Wed, 11 Jan 2006 00:15:39 +0100 ounit (1.0.2-2) unstable; urgency=low * Transition to svn-buildpackage * Remove hardcoded OCaml ABI (Closes: #339124) -- Sylvain Le Gall Fri, 2 Dec 2005 23:18:37 +0100 ounit (1.0.2-1) unstable; urgency=low * New upstream release * Downgrade watch version in order to allow QA to use the watch file * Upgrade standards version to 3.6.2.0 (no change) * Change section of documentation from devel to apps/programming (Closes: #310761) * Generate HTML manual using SGML manual (Closes: #256063) -- Sylvain Le Gall Wed, 27 Jul 2005 23:44:47 +0200 ounit (1.0.1.a-1) unstable; urgency=medium * Use the upstream tarball without modification ( the former tarball was a little bit modified ). -- Sylvain Le Gall Tue, 5 Apr 2005 23:56:23 +0200 ounit (1.0.1-3) unstable; urgency=low * Transition to ocaml 3.08.3, * The package is now maintained by Sylvain Le Gall , (changes in control, copyright), * Correct the dependency of the package, according to the debian-ocaml-maintainer policy: now depends on ocaml-nox-3.08.3 rather than ocaml (>=3.08.2), * Clean the rules files, * Use dpatch (debian-ocaml-maintainer common rules), * Add a watch file, * Change the site of download, since the upstream site has moved, * Move to debian policy 3.6.1.0. -- Sylvain Le Gall Sun, 3 Apr 2005 16:19:29 +0200 ounit (1.0.1-2) unstable; urgency=medium * Tightened up deps in control file. -- John Goerzen Mon, 13 Dec 2004 08:23:54 -0600 ounit (1.0.1-1) unstable; urgency=medium * New upstream version. * Urgency medium; needed rebuild for new OCaml. -- John Goerzen Mon, 13 Dec 2004 08:17:16 -0600 ounit (1.0.0-4) unstable; urgency=medium * Adjusted depends for ocaml 3.08. Closes: #264136. -- John Goerzen Sat, 7 Aug 2004 21:25:45 -0500 ounit (1.0.0-3) unstable; urgency=low * Rebuilt for OCaml 3.08 -- John Goerzen Tue, 27 Jul 2004 08:46:38 -0500 ounit (1.0.0-2) unstable; urgency=low * Corrected mistake with uploading of orig.tar.gz. -- John Goerzen Fri, 12 Mar 2004 09:24:23 -0600 ounit (1.0.0-1) unstable; urgency=low * Initial Release. Closes: #237551. -- John Goerzen Thu, 11 Mar 2004 19:28:36 -0600 debian/patches/0000755000000000000000000000000012151437302010613 5ustar debian/patches/series0000644000000000000000000000000012151437302012016 0ustar debian/libounit-ocaml-dev.doc-base0000644000000000000000000000051612151437302014257 0ustar Document: libounit-ocaml-dev-ocamldoc-api-reference Title: libounit-ocaml-dev OCamldoc API Reference Abstract: API reference manual for libounit-ocaml-dev (generated via OCamldoc) Section: Programming/OCaml Format: HTML Index: /usr/share/doc/libounit-ocaml-dev/html/api/index.html Files: /usr/share/doc/libounit-ocaml-dev/html/api/*