diff -Nru revu-tools-0.6.1/debian/changelog revu-tools-0.6.1.4/debian/changelog --- revu-tools-0.6.1/debian/changelog 2008-03-31 09:06:10.000000000 +0200 +++ revu-tools-0.6.1.4/debian/changelog 2008-08-16 21:15:58.000000000 +0200 @@ -1,3 +1,16 @@ +revu-tools (0.6.1.4) intrepid; urgency=low + + * revu-report: do not needlessly report lintian is unhappy (LP: #246106). + * change versioning scheme such that it does not suggest this is a Debian + native package; also add lintian override file for resulting nmu warnings. + * revu-tools-loadconfig: remove shebang line; not needed and lintian + complains about it. + * add lintian override file for empty /usr/share/revu-tools/: directory is + needed but lintian complains about it. + * debian/control: update standards version to 3.8.0. + + -- Carol Meertens Sat, 16 Aug 2008 21:12:00 +0200 + revu-tools (0.6.1-3) hardy; urgency=low * debian/control: diff -Nru revu-tools-0.6.1/debian/control revu-tools-0.6.1.4/debian/control --- revu-tools-0.6.1/debian/control 2008-03-31 09:06:10.000000000 +0200 +++ revu-tools-0.6.1.4/debian/control 2008-08-16 18:57:33.000000000 +0200 @@ -4,7 +4,7 @@ Maintainer: Raphaƫl Pinson Build-Depends: debhelper (>= 5), cdbs Build-Depends-Indep: docbook2x -Standards-Version: 3.7.3 +Standards-Version: 3.8.0 Homepage: http://revu.ubuntuwire.com/ Package: revu-tools diff -Nru revu-tools-0.6.1/debian/revu-tools.lintian-overrides revu-tools-0.6.1.4/debian/revu-tools.lintian-overrides --- revu-tools-0.6.1/debian/revu-tools.lintian-overrides 1970-01-01 01:00:00.000000000 +0100 +++ revu-tools-0.6.1.4/debian/revu-tools.lintian-overrides 2008-08-16 20:39:11.000000000 +0200 @@ -0,0 +1,3 @@ +# Override empty directory warning: it should be there (see comments +# at the start of /etc/revu-tools.conf and see revu-tools-loadconfig) +revu-tools binary: package-contains-empty-directory usr/share/revu-tools/ diff -Nru revu-tools-0.6.1/debian/source.lintian-overrides revu-tools-0.6.1.4/debian/source.lintian-overrides --- revu-tools-0.6.1/debian/source.lintian-overrides 1970-01-01 01:00:00.000000000 +0100 +++ revu-tools-0.6.1.4/debian/source.lintian-overrides 2008-08-16 20:36:08.000000000 +0200 @@ -0,0 +1,3 @@ +# Override useless NMU warnings; this is a native Ubuntu package. +revu-tools source: changelog-should-mention-nmu +revu-tools source: source-nmu-has-incorrect-version-number diff -Nru revu-tools-0.6.1/revu-tools/usr/bin/revu-report revu-tools-0.6.1.4/revu-tools/usr/bin/revu-report --- revu-tools-0.6.1/revu-tools/usr/bin/revu-report 2006-03-13 13:55:03.000000000 +0100 +++ revu-tools-0.6.1.4/revu-tools/usr/bin/revu-report 2008-08-16 20:43:10.000000000 +0200 @@ -172,9 +172,9 @@ "$ECHO" -e "* Lintian and Linda: \n" >> "$REPORT"; -if [[ -s "$LINTIAN" ]]; then +if [[ -s "$BASENAME.lintian" ]]; then "$ECHO" -e "\tW: Lintian is not happy with this package. \ -See "$LINTIAN" for more informations.\n" >> "$REPORT"; +See "$BASENAME.lintian" for more informations.\n" >> "$REPORT"; else "$ECHO" -e "\tLintian is happy with this package.\n" >> "$REPORT"; fi diff -Nru revu-tools-0.6.1/revu-tools/var/lib/revu-tools/revu-tools-loadconfig revu-tools-0.6.1.4/revu-tools/var/lib/revu-tools/revu-tools-loadconfig --- revu-tools-0.6.1/revu-tools/var/lib/revu-tools/revu-tools-loadconfig 2006-03-13 10:58:00.000000000 +0100 +++ revu-tools-0.6.1.4/revu-tools/var/lib/revu-tools/revu-tools-loadconfig 2008-08-16 19:53:15.000000000 +0200 @@ -1,4 +1,3 @@ -#! /bin/bash # this is sourced from revu-tools packages to process parameters. # Copyright (C) 2006 Fathi Boudra # based on pbuilder-loadconfig from pbuilder package by Junichi Uekawa