[Pkg-ocaml-maint-commits] r3235 - in /trunk/packages/ocaml/trunk/debian/cdbs: ocaml-vars.mk ocaml.mk

zack at users.alioth.debian.org zack at users.alioth.debian.org
Thu Oct 12 06:52:52 UTC 2006


Author: zack
Date: Thu Oct 12 06:52:48 2006
New Revision: 3235

URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/?sc=1&rev=3235
Log:
added the OCAML_TEAM variable, substituted in debian/control.in for the @OCamlTeam@ marker

Modified:
    trunk/packages/ocaml/trunk/debian/cdbs/ocaml-vars.mk
    trunk/packages/ocaml/trunk/debian/cdbs/ocaml.mk

Modified: trunk/packages/ocaml/trunk/debian/cdbs/ocaml-vars.mk
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml/trunk/debian/cdbs/ocaml-vars.mk?rev=3235&op=diff
==============================================================================
--- trunk/packages/ocaml/trunk/debian/cdbs/ocaml-vars.mk (original)
+++ trunk/packages/ocaml/trunk/debian/cdbs/ocaml-vars.mk Thu Oct 12 06:52:48 2006
@@ -46,8 +46,22 @@
 
 # space separated list of Debian architectures supporting OCaml native code
 # compilation.
-# Used internally by ocaml.mk, may be useful to debian/rules writers as well
+# Used internally by ocaml.mk and substituted in debian/control.in for the
+# @OCamlNativeArchs@ marker; may be useful to debian/rules writers as well
 OCAML_NATIVE_ARCHS := $(shell cat $(OCAML_STDLIB_DIR)/native-archs)
+
+# comma separated list of members of the OCaml team.
+# Substituted in debian/control.in for the @OCamlTeam@ marker
+OCAML_TEAM =
+
+OCAML_TEAM += Julien Cristau <julien.cristau at ens-lyon.org>,
+OCAML_TEAM += Ralf Treinen <treinen at debian.org>,
+OCAML_TEAM += Remi Vanicat <vanicat at debian.org>,
+OCAML_TEAM += Samuel Mimram <smimram at debian.org>,
+OCAML_TEAM += Stefano Zacchiroli <zack at debian.org>,
+OCAML_TEAM += Sven Luther <luther at debian.org>,
+OCAML_TEAM += Sylvain Le Gall <gildor at debian.org>
+# no trailing "," (comma) on the last name
 
 endif
 

Modified: trunk/packages/ocaml/trunk/debian/cdbs/ocaml.mk
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ocaml/trunk/debian/cdbs/ocaml.mk?rev=3235&op=diff
==============================================================================
--- trunk/packages/ocaml/trunk/debian/cdbs/ocaml.mk (original)
+++ trunk/packages/ocaml/trunk/debian/cdbs/ocaml.mk Thu Oct 12 06:52:48 2006
@@ -58,7 +58,10 @@
 ifneq ($(DEB_AUTO_UPDATE_DEBIAN_CONTROL),)
 debian/control::
 	if test -f debian/control && test -f debian/control.in ; then \
-		sed -i -e "s/@OCamlNativeArchs@/$(OCAML_NATIVE_ARCHS)/g" $@ ; \
+		sed -i \
+			-e "s/@OCamlNativeArchs@/$(OCAML_NATIVE_ARCHS)/g" \
+			-e "s/@OCamlTeam@/$(OCAML_TEAM)/g" \
+			$@ ; \
 	fi
 endif
 




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