[Pkg-ocaml-maint-commits] [SCM] dose3 packaging branch, master, updated. upstream/0.7-11-g13b2479

Ralf Treinen treinen at free.fr
Thu Jul 8 20:04:38 UTC 2010


The following commit has been merged in the master branch:
commit 615115e55610d48584a93622976fef2caf2fc29d
Author: Ralf Treinen <treinen at free.fr>
Date:   Thu Jul 8 21:17:13 2010 +0200

    first shot at packaging

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..fa86a55
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+dose3 (1.4.2-2) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #587521)
+
+ -- Ralf Treinen <treinen at debian.org>  Thu, 08 Jul 2010 20:53:13 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..b7a70af
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,56 @@
+Source: dose3
+Section: ocaml
+Priority: optional
+Maintainer: Debian OCaml Maintainers <debian-ocaml-maint at lists.debian.org>
+Uploaders: Stefano Zacchiroli <zack at debian.org>,
+ Ralf Treinen <treinen at debian.org>
+Build-Depends: debhelper (>= 7), dh-ocaml,
+ ocaml-nox,
+Standards-Version: 3.9.0
+Homepage: http://www.mancoosi.org/software/
+Vcs-Browser: http://git.debian.org/?p=pkg-ocaml-maint/packages/dose3.git
+Vcs-Git: git://git.debian.org/git/pkg-ocaml-maint/packages/dose3.git
+
+Package: libdose3-ocaml-dev
+Architecture: any
+Depends: ocaml-nox-${F:OCamlABI}, ocaml-findlib,
+ libdose3-ocaml (= ${binary:Version}),
+ ${misc:Depends}
+Description: OCaml libraries for package dependencies (development files)
+ Dose3 is a framework made of several OCaml libraries for managing
+ distribution packages and their dependencies.
+ .
+ Though not tied to any particular distribution, Dose3 constitutes a
+ pool of libraries which enable analyzing packages coming from various
+ distribution. 
+ .
+ Besides basic functionalities for querying and setting package
+ properties, dose also implements algorithms for solving more complex
+ problems (monitoring package evolutions, correct and complete
+ dependency resolution, repository-wide uninstallability checks).
+ .
+ This package contains the development stuff you need to use dose2 in
+ the development of your programs.
+
+Package: libdose3-ocaml
+Architecture: any
+Depends: ocaml-nox-${F:OCamlABI}, ocaml-findlib,
+ libpcre-ocaml,
+ libzip-ocaml, libbz2-ocaml,
+ ${shlibs:Depends}, ${misc:Depends}
+Description: OCaml libraries for managing packages and their dependencies
+Dose3 is a framework made of several OCaml libraries for managing
+ distribution packages and their dependencies.
+ .
+ Though not tied to any particular distribution, Dose3 constitutes a
+ pool of libraries which enable analyzing packages coming from various
+ distribution. 
+ .
+ Besides basic functionalities for querying and setting package
+ properties, dose also implements algorithms for solving more complex
+ problems (monitoring package evolutions, correct and complete
+ dependency resolution, repository-wide uninstallability checks).
+ .
+ This package contains the runtime stuff you need to run programs using
+ dose2.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..573d35d
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,51 @@
+This package was debianized by Ralf Treinen <treinen at debian.org>
+Thu Jul  8 20:58:21 CEST 2010.
+
+It was downloaded from <http://gforge.info.ucl.ac.be/frs/?group_id=35>
+
+File: deb/version.ml
+Copyright: © 2009 Jaap Boender
+License: LGPL-3+
+
+File: deb/format822.ml
+Copyright: © 2005-2009 Jerome Vouillion, Stefano Zacchiroli, Pietro Abate
+License: LGPL-3+
+
+File: algo/statistics.ml
+Copyright: © 2008 Jaap Boender, Stefano Zacchiroli, Pietro Abate
+License: LGPL-3+
+
+Files: common/edosSolver.ml, common/edosSolver.mli 
+Copyright: © 2005-2009 Jerome Vouillion
+License: LGPL-3+
+
+File: common/util.ml
+Copyright: © 2009 Alain Frish, Pietro Abate
+License: LGPL-3+
+
+File: common/url.ml
+Copyright: © 2001,2002 b8_bavard, b8_fee_carabine, INRIA
+License: LGPL-2+
+
+File: *
+Copyright: © 2009-2010 Pietro Abate
+License: LGPL-3+
+
+This library is free software: you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation, either version 3 of the
+License, or (at your option) any later version.  A special linking
+exception to the GNU Lesser General Public License applies to this
+library, see the COPYING file for more information.
+
+On Debian systems, the complete text of the latest GNU Lesser General
+Public License can be found in `/usr/share/common-licenses/LGPL'.
+
+Files: debian/*
+Copyright: © 2010 Ralf Treinen <zack at debian.org>
+License: GPL-3+
+
+The Debian packaging is copyright Ralf Treinen, and licensed under the
+GNU General Public License, see `/usr/share/common-licenses/GPL' for
+the full text.
+
diff --git a/debian/libdose3-ocaml-dev.install.in b/debian/libdose3-ocaml-dev.install.in
new file mode 100644
index 0000000..ad12800
--- /dev/null
+++ b/debian/libdose3-ocaml-dev.install.in
@@ -0,0 +1 @@
+*/*.mli	    @OCamlStdlibDir@/dose2/
diff --git a/debian/libdose3-ocaml.install.in b/debian/libdose3-ocaml.install.in
new file mode 100644
index 0000000..3a85064
--- /dev/null
+++ b/debian/libdose3-ocaml.install.in
@@ -0,0 +1 @@
+*/*.so	    @OCamlStdlibDir@/stublibs
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..b577480
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --with ocaml
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..9ee4cd8
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://gforge.info.ucl.ac.be/frs/?group_id=35 .*/dose2-(.*)\.tar\.gz

-- 
dose3 packaging



More information about the Pkg-ocaml-maint-commits mailing list