[Pkg-ocaml-maint-commits] [janest-core-extended] 01/01: 113.00.00-1

Hilko Bengen bengen at moszumanska.debian.org
Thu Jan 7 20:06:08 UTC 2016


This is an automated email from the git hooks/post-receive script.

bengen pushed a commit to branch master
in repository janest-core-extended.

commit 85c22cd1a919666ef7275140a0220b8b70842a3d
Author: Hilko Bengen <bengen at debian.org>
Date:   Thu Jan 7 20:55:46 2016 +0100

    113.00.00-1
---
 debian/changelog                             |  5 +++
 debian/compat                                |  1 +
 debian/control                               | 63 ++++++++++++++++++++++++++++
 debian/copyright                             | 25 +++++++++++
 debian/libcore-extended-ocaml-dev.doc-base   |  9 ++++
 debian/libcore-extended-ocaml-dev.install.in | 16 +++++++
 debian/libcore-extended-ocaml-dev.ocamldoc   |  7 ++++
 debian/libcore-extended-ocaml.install.in     |  1 +
 debian/rules                                 | 33 +++++++++++++++
 debian/source/format                         |  1 +
 debian/source/local-options                  |  2 +
 debian/watch                                 |  4 ++
 12 files changed, 167 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..92ed2ab
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+janest-core-extended (113.00.00-1) unstable; urgency=low
+
+  * Initial release (Closes: #718236)
+
+ -- Hilko Bengen <bengen at debian.org>  Thu, 07 Jan 2016 20:55:39 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..807e35e
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,63 @@
+Source: janest-core-extended
+Section: ocaml
+Priority: optional
+Maintainer: Debian OCaml Maintainers <debian-ocaml-maint at lists.debian.org>
+Uploaders:
+ Hilko Bengen <bengen at debian.org>,
+Build-Depends:
+ debhelper (>= 8),
+ bc,
+ ocaml-nox,
+ dh-ocaml,
+ camlp4,
+ ocaml-findlib,
+ libbin-prot-camlp4-dev,
+ libcompare-camlp4-dev,
+ libcore-ocaml-dev,
+ libcustom-printf-camlp4-dev,
+ libfields-camlp4-dev,
+ libpa-bench-camlp4-dev,
+ libpa-ounit-camlp4-dev,
+ libpipebang-camlp4-dev,
+ libpa-test-camlp4-dev,
+ libtextutils-ocaml-dev,
+ libre2-ocaml-dev,
+ libsexplib-camlp4-dev,
+Standards-Version: 3.9.6
+Vcs-Browser: http://anonscm.debian.org/cgit/pkg-ocaml-maint/packages/janest-core-extended.git
+Vcs-Git: git://anonscm.debian.org/pkg-ocaml-maint/packages/janest-core-extended.git
+Homepage: https://github.com/janestreet/core_extended
+
+Package: libcore-extended-ocaml-dev
+Architecture: any
+Depends:
+ ocaml-findlib,
+ ${ocaml:Depends},
+ ${shlibs:Depends},
+ ${misc:Depends}
+Provides: ${ocaml:Provides}
+Description: Extension to Jane Street's standard library for OCaml (development files)
+ Core is an industrial-strength alternative to the OCaml standard
+ library. It was developed by Jane Street, which is the largest
+ industrial user of OCaml. Core_extended contains several extensions
+ to the Core library.
+ .
+ This package contains the development stuff you need to use
+ Core_extended in your programs.
+
+Package: libcore-extended-ocaml
+Architecture: any
+Depends:
+ ocaml-findlib,
+ ${ocaml:Depends},
+ ${shlibs:Depends},
+ ${misc:Depends}
+Provides: ${ocaml:Provides}
+Description: Extension to Jane Street's standard library for OCaml (runtime)
+ Core is an industrial-strength alternative to the OCaml standard
+ library. It was developed by Jane Street, which is the largest
+ industrial user of OCaml. Core_extended contains several extensions
+ to the Core library.
+ .
+ This package contains the runtime stuff you need to run programs using
+ Core_extended.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f7c7e1a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,25 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: core_extended
+Upstream-Contact: Jane Street Capital LLC <opensource at janestreet.com>
+Source: https://github.com/janestreet/core_extended
+
+Files: *
+Copyright: 2008-2013 Jane Street Group LLC <opensource at janestreet.com>
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2016 Hilko Bengen <bengen at debian.org>
+License: Apache-2.0
+
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ .
+ 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.
+ .
+ The full text of the Apache 2.0 License can be found in
+ `/usr/share/common-licenses/Apache-2.0'.
diff --git a/debian/libcore-extended-ocaml-dev.doc-base b/debian/libcore-extended-ocaml-dev.doc-base
new file mode 100644
index 0000000..a1a3ea1
--- /dev/null
+++ b/debian/libcore-extended-ocaml-dev.doc-base
@@ -0,0 +1,9 @@
+Document: libcore-ocaml-dev-apiref
+Title: Documentation of Extension to Jane Street's Core library
+Author: Jane Stree
+Abstract: Documentation of Extension to Jane Street's Core library
+Section: Programming/OCaml
+
+Format: HTML
+Index: /usr/share/doc/libcore-extended-ocaml-dev/html/api/index.html
+Files: /usr/share/doc/libcore-extended-ocaml-dev/html/api/*.html
diff --git a/debian/libcore-extended-ocaml-dev.install.in b/debian/libcore-extended-ocaml-dev.install.in
new file mode 100644
index 0000000..915d15c
--- /dev/null
+++ b/debian/libcore-extended-ocaml-dev.install.in
@@ -0,0 +1,16 @@
+ at OCamlStdlibDir@/core_extended/META
+ at OCamlStdlibDir@/core_extended/*.a
+ at OCamlStdlibDir@/core_extended/*.cma
+ at OCamlStdlibDir@/core_extended/*.cmi
+ at OCamlStdlibDir@/core_extended/*.ml
+ at OCamlStdlibDir@/core_extended/*.mli
+# @OCamlStdlibDir@/core_extended/*.h
+
+OPT: @OCamlStdlibDir@/core_extended/*.cmxa
+DYN: @OCamlStdlibDir@/core_extended/*.cma
+OPT: @OCamlStdlibDir@/core_extended/*.cmx
+DYN: @OCamlStdlibDir@/core_extended/*.cmxs
+
+ at OCamlStdlibDir@/core_extended/*.cmt
+ at OCamlStdlibDir@/core_extended/*.cmti
+ at OCamlStdlibDir@/core_extended/*.annot
diff --git a/debian/libcore-extended-ocaml-dev.ocamldoc b/debian/libcore-extended-ocaml-dev.ocamldoc
new file mode 100644
index 0000000..a6149a3
--- /dev/null
+++ b/debian/libcore-extended-ocaml-dev.ocamldoc
@@ -0,0 +1,7 @@
+-syntax camlp4o -thread -package threads  -package re2 -package core 
+-package sexplib.syntax
+-package comparelib.syntax 
+-package bin_prot.syntax -package textutils
+-package fieldslib.syntax -package fieldslib
+-package custom_printf.syntax -package custom_printf
+-I _build/src
diff --git a/debian/libcore-extended-ocaml.install.in b/debian/libcore-extended-ocaml.install.in
new file mode 100644
index 0000000..1d5ce78
--- /dev/null
+++ b/debian/libcore-extended-ocaml.install.in
@@ -0,0 +1 @@
+ at OCamlDllDir@/*.so
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..b67d6d8
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,33 @@
+#!/usr/bin/make -f
+
+DESTDIR=$(CURDIR)/debian/tmp
+
+include /usr/share/ocaml/ocamlvars.mk
+
+export OCAML_DLL_DIR
+export OCAML_HAVE_OCAMLOPT
+export OCAMLFIND_DESTDIR=$(DESTDIR)/$(OCAML_STDLIB_DIR)
+
+%:
+	dh $@ --with ocaml
+
+override_dh_auto_configure:
+	ocaml setup.ml -configure --prefix /usr --destdir '$(DESTDIR)'
+
+override_dh_auto_build:
+	ocaml setup.ml -build
+
+override_dh_auto_test:
+	ocaml setup.ml -test
+
+override_dh_auto_install:
+	mkdir -p '$(OCAMLFIND_DESTDIR)'
+	mkdir -p '$(DESTDIR)$(OCAML_DLL_DIR)'
+	ocaml setup.ml -install
+	rm -f '$(DESTDIR)$(OCAML_DLL_DIR)'/*.so.owner
+
+override_dh_auto_clean:
+	ocaml setup.ml -distclean
+
+override_dh_install:
+	dh_install --fail-missing
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)
diff --git a/debian/source/local-options b/debian/source/local-options
new file mode 100644
index 0000000..c4cf480
--- /dev/null
+++ b/debian/source/local-options
@@ -0,0 +1,2 @@
+abort-on-upstream-changes
+unapply-patches
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..a6961e8
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+
+opts="uversionmangle=s/-rc/~rc/" \
+    https://github.com/janestreet/core_extended/releases .*/(.*)\.tar\.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ocaml-maint/packages/janest-core-extended.git



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