added the OCAML_TEAM variable, substituted in debian/control.in for the @OCamlTeam...
authorStefano Zacchiroli <zack@debian.org>
Thu, 12 Oct 2006 06:52:48 +0000 (06:52 +0000)
committerStefano Zacchiroli <zack@debian.org>
Thu, 12 Oct 2006 06:52:48 +0000 (06:52 +0000)
debian/cdbs/ocaml-vars.mk
debian/cdbs/ocaml.mk

index e10b346d91d01aec64d905ef87a9f98d5a038d50..cdd5e58907db74853143268d34bb60e7a9523632 100644 (file)
@@ -16,7 +16,7 @@
 # this program; if not, write to the Free Software Foundation, Inc., 51
 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 #
-# $Id: ocaml-vars.mk 3149 2006-09-16 14:06:54Z zack $
+# $Id: ocaml-vars.mk 3235 2006-10-12 06:52:48Z zack $
 
 _cdbs_scripts_path ?= /usr/lib/cdbs
 _cdbs_rules_path ?= /usr/share/cdbs/1/rules
@@ -46,8 +46,22 @@ OCAML_HAVE_OCAMLOPT := $(shell if test -x /usr/bin/ocamlopt ; then echo "yes" ;
 
 # 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@ens-lyon.org>,
+OCAML_TEAM += Ralf Treinen <treinen@debian.org>,
+OCAML_TEAM += Remi Vanicat <vanicat@debian.org>,
+OCAML_TEAM += Samuel Mimram <smimram@debian.org>,
+OCAML_TEAM += Stefano Zacchiroli <zack@debian.org>,
+OCAML_TEAM += Sven Luther <luther@debian.org>,
+OCAML_TEAM += Sylvain Le Gall <gildor@debian.org>
+# no trailing "," (comma) on the last name
+
 endif
 
index f107731788db35261fabc8bc723a0ae160db374f..1d37792dd5cea07b4f916642bbbae444f2c403b0 100644 (file)
@@ -16,7 +16,7 @@
 # this program; if not, write to the Free Software Foundation, Inc., 51
 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 #
-# $Id: ocaml.mk 3149 2006-09-16 14:06:54Z zack $
+# $Id: ocaml.mk 3235 2006-10-12 06:52:48Z zack $
 
 _cdbs_scripts_path ?= /usr/lib/cdbs
 _cdbs_rules_path ?= /usr/share/cdbs/1/rules
@@ -58,7 +58,10 @@ clean::
 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