[Pkg-ocaml-maint-commits] r3072 - in /trunk/packages/ulex/trunk/debian: changelog control.in dirs rules

zack at users.alioth.debian.org zack at users.alioth.debian.org
Wed Sep 6 08:10:06 UTC 2006


Author: zack
Date: Wed Sep  6 08:10:05 2006
New Revision: 3072

URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/?sc=1&rev=3072
Log:
sane debian/* setting

Removed:
    trunk/packages/ulex/trunk/debian/control.in
    trunk/packages/ulex/trunk/debian/dirs
Modified:
    trunk/packages/ulex/trunk/debian/changelog
    trunk/packages/ulex/trunk/debian/rules

Modified: trunk/packages/ulex/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ulex/trunk/debian/changelog?rev=3072&op=diff
==============================================================================
--- trunk/packages/ulex/trunk/debian/changelog (original)
+++ trunk/packages/ulex/trunk/debian/changelog Wed Sep  6 08:10:05 2006
@@ -1,3 +1,15 @@
+ulex (0.8-5) unstable; urgency=low
+
+  * debian/rules
+    - removed no longer needed workaround for cdbs + dpatch
+    - avoid to create debian/control from debian/control.in on ocamlinit
+    - removed from the source package files which are generated at build time
+      from the corresponding .in files
+  * debian/control.in
+    - file removed, no longer needed
+
+ -- Stefano Zacchiroli <zack at debian.org>  Wed,  6 Sep 2006 10:08:02 +0200
+
 ulex (0.8-4) unstable; urgency=low
 
   * Upload to unstable.

Modified: trunk/packages/ulex/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/ulex/trunk/debian/rules?rev=3072&op=diff
==============================================================================
--- trunk/packages/ulex/trunk/debian/rules (original)
+++ trunk/packages/ulex/trunk/debian/rules Wed Sep  6 08:10:05 2006
@@ -7,17 +7,17 @@
 
 OCAMLABI := $(shell ocamlc -version)
 OCAMLLIBDIR := $(shell ocamlc -where)
-OFILES := $(patsubst %.in,%,$(shell ls debian/*.in))
+OFILES := $(filter-out debian/control,$(patsubst %.in,%,$(wildcard debian/*.in)))
 HAVE_OCAMLOPT := $(shell test -x /usr/bin/ocamlopt && echo "yes")
 DEB_DH_GENCONTROL_ARGS = -- -VF:OCamlABI="$(OCAMLABI)"
-DEB_MAKE_INSTALL_TARGET = install DESTDIR=$(CURDIR)/debian/$(PKGNAME)$(OCAMLLIBDIR)
 
 ocamlinit:
 	for f in $(OFILES); do sed -e 's/@OCamlABI@/$(OCAMLABI)/g' $$f.in > $$f; done
+makebuilddir/$(PKGNAME):: ocamlinit
+
+DEB_MAKE_INSTALL_TARGET = install DESTDIR=$(CURDIR)/debian/$(PKGNAME)$(OCAMLLIBDIR)
+
 ifeq ($(HAVE_OCAMLOPT),yes)
 build/$(PKGNAME)::
 	$(MAKE) all.opt
 endif
-
-# work around cdbs' bug
-unpatch: deapply-dpatches




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