[Pkg-ocaml-maint-commits] r2210 -
trunk/packages/ocamldap/trunk/debian
Sylvain LE GALL
gildor-guest at costa.debian.org
Fri Dec 2 21:48:49 UTC 2005
Author: gildor-guest
Date: 2005-12-02 21:48:48 +0000 (Fri, 02 Dec 2005)
New Revision: 2210
Added:
trunk/packages/ocamldap/trunk/debian/control.in
Modified:
trunk/packages/ocamldap/trunk/debian/changelog
trunk/packages/ocamldap/trunk/debian/control
trunk/packages/ocamldap/trunk/debian/rules
Log:
Prepare release -- SLG
Modified: trunk/packages/ocamldap/trunk/debian/changelog
===================================================================
--- trunk/packages/ocamldap/trunk/debian/changelog 2005-12-02 21:28:27 UTC (rev 2209)
+++ trunk/packages/ocamldap/trunk/debian/changelog 2005-12-02 21:48:48 UTC (rev 2210)
@@ -1,8 +1,9 @@
ocamldap (2.1.5-2) unstable; urgency=low
* Minor cosmetic changes to the rule files
+ * Remove hardcoded OCaml ABI
- -- Sylvain Le Gall <sylvain.le-gall at polytechnique.org> Wed, 9 Nov 2005 16:55:07 +0100
+ -- Sylvain Le Gall <sylvain.le-gall at polytechnique.org> Fri, 2 Dec 2005 22:46:26 +0100
ocamldap (2.1.5-1) unstable; urgency=low
Modified: trunk/packages/ocamldap/trunk/debian/control
===================================================================
--- trunk/packages/ocamldap/trunk/debian/control 2005-12-02 21:28:27 UTC (rev 2209)
+++ trunk/packages/ocamldap/trunk/debian/control 2005-12-02 21:48:48 UTC (rev 2210)
@@ -2,12 +2,12 @@
Section: libdevel
Priority: optional
Maintainer: Sylvain Le Gall <sylvain.le-gall at polytechnique.org>
-Build-Depends: ocaml-nox-3.08.3, debhelper (>= 4), libldap2-dev, chrpath, dpatch (>=1.11), ocaml-findlib, libocamlnet-ocaml-dev (>= 0.98), libssl-ocaml-dev
+Build-Depends: ocaml-nox (>= 3.09.0), debhelper (>= 4), libldap2-dev, chrpath, dpatch (>=1.11), ocaml-findlib, libocamlnet-ocaml-dev (>= 0.98), libssl-ocaml-dev
Standards-Version: 3.6.2.0
Package: libldap-ocaml-dev
Architecture: any
-Depends: ${shlibs:Depends}, ocaml-nox-3.08.3, libocamlnet-ocaml-dev (>= 0.98), libssl-ocaml-dev
+Depends: ${shlibs:Depends}, ocaml-nox-${F:OCamlABI}, libocamlnet-ocaml-dev (>= 0.98), libssl-ocaml-dev
Description: LDAP bindings for OCaml
It supports the core ldap-client functions, including search, add,
modify, and delete.
Copied: trunk/packages/ocamldap/trunk/debian/control.in (from rev 2188, trunk/packages/ocamldap/trunk/debian/control)
===================================================================
--- trunk/packages/ocamldap/trunk/debian/control 2005-11-29 22:29:10 UTC (rev 2188)
+++ trunk/packages/ocamldap/trunk/debian/control.in 2005-12-02 21:48:48 UTC (rev 2210)
@@ -0,0 +1,20 @@
+Source: ocamldap
+Section: libdevel
+Priority: optional
+Maintainer: Sylvain Le Gall <sylvain.le-gall at polytechnique.org>
+Build-Depends: ocaml-nox (>= #OCamlABI#), debhelper (>= 4), libldap2-dev, chrpath, dpatch (>=1.11), ocaml-findlib, libocamlnet-ocaml-dev (>= 0.98), libssl-ocaml-dev
+Standards-Version: 3.6.2.0
+
+Package: libldap-ocaml-dev
+Architecture: any
+Depends: ${shlibs:Depends}, ocaml-nox-${F:OCamlABI}, libocamlnet-ocaml-dev (>= 0.98), libssl-ocaml-dev
+Description: LDAP bindings for OCaml
+ It supports the core ldap-client functions, including search, add,
+ modify, and delete.
+ .
+ It has now an object oriented interface which supports the above
+ features, and some additional ones. Such as, nice data structures
+ for local ldap entries which record local modifications and can sync
+ them with the server, fewer arguments needed to perform simple
+ tasks, and an API modeled after Perl's Net::LDAP.
+
Modified: trunk/packages/ocamldap/trunk/debian/rules
===================================================================
--- trunk/packages/ocamldap/trunk/debian/rules 2005-12-02 21:28:27 UTC (rev 2209)
+++ trunk/packages/ocamldap/trunk/debian/rules 2005-12-02 21:48:48 UTC (rev 2210)
@@ -5,7 +5,11 @@
OCAMLIBDIR=$(shell ocamlc -where)
PACKAGE=ocamldap
DESTDIR_DEV=$(CURDIR)/debian/libldap-ocaml-dev/
+OCAMLABI=$(shell ocamlc -version)
+debian/control: debian/control.in
+ sed -e 's%#OCamlABI#%$(OCAMLABI)%' $@.in >$@
+
configure: configure-stamp
configure-stamp:
dh_testdir
@@ -85,7 +89,7 @@
dh_fixperms -a
dh_installdeb -a
dh_shlibdeps -a
- dh_gencontrol -a
+ dh_gencontrol -a -- -VF:OCamlABI="$(OCAMLABI)"
dh_md5sums -a
dh_builddeb -a
More information about the Pkg-ocaml-maint-commits
mailing list