[Pkg-ocaml-maint-commits] [SCM] otags packaging branch, master, updated. debian/3.09.3-3-8-g2567332

Stephane Glondu steph at glondu.net
Mon May 24 16:52:01 UTC 2010


The following commit has been merged in the master branch:
commit 27f4984a17602fabfbaa0efbc7f58841eb01ee7b
Author: Stephane Glondu <steph at glondu.net>
Date:   Mon May 24 18:17:09 2010 +0200

    Fix various Lintian warnings

diff --git a/debian/control b/debian/control
index 3ec1a82..59219aa 100644
--- a/debian/control
+++ b/debian/control
@@ -1,5 +1,5 @@
 Source: otags
-Section: devel
+Section: ocaml
 Priority: optional
 Maintainer: Debian OCaml Maintainers <debian-ocaml-maint at lists.debian.org>
 Uploaders:
@@ -11,14 +11,18 @@ Build-Depends:
  debhelper (>= 5.0.0),
  dh-ocaml (>= 0.4.1),
  camlp5
-Standards-Version: 3.8.2
+Standards-Version: 3.8.4
 Homepage: http://www.cs.ru.nl/~tews/otags/
 Vcs-Git: git://git.debian.org/git/pkg-ocaml-maint/packages/otags.git
 Vcs-Browser: http://git.debian.org/?p=pkg-ocaml-maint/packages/otags.git
 
 Package: otags
 Architecture: any
-Depends: ocaml-base-nox-${F:OCamlABI}, camlp5, ${shlibs:Depends}
+Depends:
+ camlp5,
+ ${ocaml:Depends},
+ ${shlibs:Depends},
+ ${misc:Depends}
 Description: tool for building TAGS files from OCaml sources
  otags is a tool for building "TAGS" files for emacs and vi.  TAGS
  files provide the editor with an index table, mapping important
diff --git a/debian/postinst b/debian/postinst
index 3c6fc7d..4782022 100644
--- a/debian/postinst
+++ b/debian/postinst
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 case "$1" in
   configure)
diff --git a/debian/prerm b/debian/prerm
index 6b8523d..f8413a7 100644
--- a/debian/prerm
+++ b/debian/prerm
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 case "$1" in
   remove)
diff --git a/debian/rules b/debian/rules
index 43bf9f5..de52b21 100755
--- a/debian/rules
+++ b/debian/rules
@@ -31,7 +31,7 @@ clean1:
 	dh_testroot
 	rm -f build-stamp configure-stamp
 
-	-$(MAKE) clean
+	[ ! -f Makefile.here ] || $(MAKE) clean
 
 	dh_clean
 

-- 
otags packaging



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