[Pkg-ocaml-maint-commits] [SCM] ocamlify packaging branch, master, updated. upstream/0.0.1-5-g1b3ca8b

Sylvain Le Gall gildor at debian.org
Wed Nov 17 17:30:18 UTC 2010


The following commit has been merged in the master branch:
commit 9d761c9f5af53f59ad4bb3e2d1cf4b5aba1912e4
Author: Sylvain Le Gall <gildor at debian.org>
Date:   Tue Nov 9 10:50:08 2010 +0000

    Create an initial debian/

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..ec83942
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+ocamlify (0.0.1) UNRELEASED; urgency=low
+
+  * Initial release. (Closes: #XXXXXX)
+
+ -- Sylvain Le Gall <gildor at debian.org>  Tue, 09 Nov 2010 10:00:49 +0000
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..da860de
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,23 @@
+Source: ocamlify
+Section: ocaml
+Priority: optional
+Maintainer: Debian OCaml Maintainers <debian-ocaml-maint at lists.debian.org>
+Uploaders:
+ Sylvain Le Gall <gildor at debian.org>
+Build-Depends:
+ debhelper (>= 7.0.50~),
+ ocaml-nox (>= 3.11.1-3~),
+ quilt (>= 0.46-7~),
+ dh-ocaml (>= 0.9.0~)
+Standards-Version: 3.9.1
+Vcs-Browser: http://git.debian.org/?p=pkg-ocaml-maint/packages/ocamlify.git
+Vcs-Git: git://git.debian.org/git/pkg-ocaml-maint/packages/ocamlify.git
+
+Package: ocamlify
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${ocaml:Depends}
+Description: include files in OCaml code
+ This program allows to copy files inside OCaml code. It uses a first file that
+ describes the other files that must be included and the type of OCaml variable
+ it should create. It can also describe dependencies to other files, in order
+ to generate .depends files for make.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..1d44c38
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,24 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Name: ocamlify 
+Maintainer: Sylvain Le Gall <gildor at debian.org>
+
+Files: *
+Copyright: (C) 2009-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.
+
+Files: debian/*
+Copyright: (C) 2010 Sylvain Le Gall <gildor at debian.org>
+License: GPL-3+
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..6c7ed3b
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,3 @@
+[DEFAULT]
+pristine-tar = True
+cleaner = debuild clean && dh_quilt_unpatch && dh_clean
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..30c447e
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,29 @@
+#!/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
+
+%:
+	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
+
+.PHONY: override_dh_auto_install
+override_dh_auto_install:
+	ocaml setup.ml -install 
+
+.PHONY: override_dh_auto_clean
+override_dh_auto_clean:
+	ocaml setup.ml -distclean
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)

-- 
ocamlify packaging



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