[Pkg-ocaml-maint-commits] r4981 - in /trunk/packages/pxp/trunk/debian: changelog control expand_stars.sh rules

zack at users.alioth.debian.org zack at users.alioth.debian.org
Sun Dec 30 08:14:06 UTC 2007


Author: zack
Date: Sun Dec 30 08:14:06 2007
New Revision: 4981

URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/?sc=1&rev=4981
Log:
* debian/control: fix typo in package short description (closes: #446909)
* setting me as an uploader, d-o-m as the maintainer
* update standards-versions, no changes needed
* add Homepage field
* move expansion of upstream comments to ocamldoc-like comments to a
  separate shell script, to avoid Makefile escaping issues

Added:
    trunk/packages/pxp/trunk/debian/expand_stars.sh
Modified:
    trunk/packages/pxp/trunk/debian/changelog
    trunk/packages/pxp/trunk/debian/control
    trunk/packages/pxp/trunk/debian/rules

Modified: trunk/packages/pxp/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/pxp/trunk/debian/changelog?rev=4981&op=diff
==============================================================================
--- trunk/packages/pxp/trunk/debian/changelog (original)
+++ trunk/packages/pxp/trunk/debian/changelog Sun Dec 30 08:14:06 2007
@@ -1,9 +1,13 @@
-pxp (1.2.0~test1-3) UNRELEASED; urgency=low
-
-  * debian/control
-    - fix typo in package short description (closes: #446909)
-
- -- Stefano Zacchiroli <zack at debian.org>  Tue, 16 Oct 2007 17:32:47 +0200
+pxp (1.2.0~test1-3) unstable; urgency=low
+
+  * debian/control: fix typo in package short description (closes: #446909)
+  * setting me as an uploader, d-o-m as the maintainer
+  * update standards-versions, no changes needed
+  * add Homepage field
+  * move expansion of upstream comments to ocamldoc-like comments to a
+    separate shell script, to avoid Makefile escaping issues
+
+ -- Stefano Zacchiroli <zack at debian.org>  Sun, 30 Dec 2007 09:12:23 +0100
 
 pxp (1.2.0~test1-2) unstable; urgency=low
 

Modified: trunk/packages/pxp/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/pxp/trunk/debian/control?rev=4981&op=diff
==============================================================================
--- trunk/packages/pxp/trunk/debian/control (original)
+++ trunk/packages/pxp/trunk/debian/control Sun Dec 30 08:14:06 2007
@@ -1,11 +1,13 @@
 Source: pxp
 Section: libdevel
 Priority: optional
-Maintainer: Stefano Zacchiroli <zack at debian.org>
+Maintainer: Debian OCaml Maintainers <debian-ocaml-maint at lists.debian.org>
+Uploaders: Stefano Zacchiroli <zack at debian.org>
 Build-Depends: debhelper (>> 5.0.0), ocaml-nox (>= 3.10.0), camlp5, ocaml-findlib (>= 1.1), libocamlnet-ocaml-dev (>= 1.1-12), ocaml-ulex08, dpatch, cdbs
-Standards-Version: 3.7.2
+Standards-Version: 3.7.3
 Vcs-Svn: svn://svn.debian.org/svn/pkg-ocaml-maint/trunk/packages/pxp
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/pxp/trunk/
+Homepage: http://www.ocaml-programming.de/packages/
 
 Package: libpxp-ocaml-dev
 Architecture: any

Added: trunk/packages/pxp/trunk/debian/expand_stars.sh
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/pxp/trunk/debian/expand_stars.sh?rev=4981&op=file
==============================================================================
--- trunk/packages/pxp/trunk/debian/expand_stars.sh (added)
+++ trunk/packages/pxp/trunk/debian/expand_stars.sh Sun Dec 30 08:14:06 2007
@@ -1,0 +1,3 @@
+#!/bin/bash
+# expand '(*' to '(**'
+sed 's/^\( *\)(\*\( [^\$=]\)/\1(**\2/' "$@"

Modified: trunk/packages/pxp/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-ocaml-maint/trunk/packages/pxp/trunk/debian/rules?rev=4981&op=diff
==============================================================================
--- trunk/packages/pxp/trunk/debian/rules (original)
+++ trunk/packages/pxp/trunk/debian/rules Sun Dec 30 08:14:06 2007
@@ -6,7 +6,7 @@
 
 PKGNAME = libpxp-ocaml-dev
 OCAML_OCAMLDOC_PACKAGES = $(OCAML_LIBDEV_PACKAGES)                                                                             
-OCAML_OCAMLDOC_FLAGS += -pp "sed 's/^\( *\)(\*\( [^\$$]\)/\1(**\2/'"	# expand '(*' to '(**'                                 
+OCAML_OCAMLDOC_FLAGS += -pp $(CURDIR)/debian/expand_stars.sh
 DEB_MAKE_INSTALL_TARGET = install DESTDIR=$(CURDIR)/debian/$(PKGNAME)$(OCAML_STDLIB_DIR)
 
 configure/$(PKGNAME)::
@@ -17,5 +17,6 @@
 	$(MAKE) opt
 endif
 binary-post-install/$(PKGNAME)::
-	-for f in debian/$(PKGNAME)/usr/share/doc/$(PKGNAME)/examples/xmlforms/styles/*;\
-	do test ! -r $$f && rm -f $$f; done
+	-for f in debian/$(PKGNAME)/usr/share/doc/$(PKGNAME)/examples/xmlforms/styles/* ; do \
+		test ! -r $$f && rm -f $$f ; \
+	done




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