From: Stefano Zacchiroli Date: Thu, 12 Oct 2006 06:52:48 +0000 (+0000) Subject: added the OCAML_TEAM variable, substituted in debian/control.in for the @OCamlTeam... X-Git-Tag: archive/raspbian/4.08.1-4+rpi1~3^2~600 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=88bedbf57d91e8f846e46916d55f0d24487fa054;p=ocaml.git added the OCAML_TEAM variable, substituted in debian/control.in for the @OCamlTeam@ marker --- diff --git a/debian/cdbs/ocaml-vars.mk b/debian/cdbs/ocaml-vars.mk index e10b346d..cdd5e589 100644 --- a/debian/cdbs/ocaml-vars.mk +++ b/debian/cdbs/ocaml-vars.mk @@ -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 , +OCAML_TEAM += Ralf Treinen , +OCAML_TEAM += Remi Vanicat , +OCAML_TEAM += Samuel Mimram , +OCAML_TEAM += Stefano Zacchiroli , +OCAML_TEAM += Sven Luther , +OCAML_TEAM += Sylvain Le Gall +# no trailing "," (comma) on the last name + endif diff --git a/debian/cdbs/ocaml.mk b/debian/cdbs/ocaml.mk index f1077317..1d37792d 100644 --- a/debian/cdbs/ocaml.mk +++ b/debian/cdbs/ocaml.mk @@ -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