Your message dated Sat, 30 May 2009 11:48:51 +0000
with message-id <[email protected]>
and subject line Bug#513470: fixed in dlocate 1.0
has caused the Debian Bug report #513470,
regarding dlocate: fix lintian warnings [patch]
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
513470: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=513470
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: dlocate
Version: 0.96.1
Tags: patch
X-Debbugs-Cc: [email protected]
Please find attached a patch which attempts to fix the errors and
warnings generated by lintian, as available e.g. here:
http://lintian.debian.org/maintainer/[email protected]#dlocate
I have not tried to fix the Debian-Policy version warning, although that
too should hopefully be trivial.
There is one actual lintian error (should not declare a dependency on
awk after all) and about half a dozen warnings.
/* era */
--
If this were a real .signature, it would suck less. Well, maybe not.
diff -burNad dlocate-upstream-0.96.1/debian/changelog dlocate-lintian-0.96.1/debian/changelog
--- dlocate-upstream-0.96.1/debian/changelog 2009-01-27 09:19:49.000000000 +0200
+++ dlocate-lintian-0.96.1/debian/changelog 2009-01-29 11:50:04.000000000 +0200
@@ -1,6 +1,20 @@
+dlocate (0.96.1-0.1) unstable; urgency=low
+
+ * debian/control: revert dependency on awk; as per Lintian error,
+ it is in practice essential, and should not be declared
+ * debian/copyright: add copyright year; disambiguate license as GPL v2
+ (fix lintian warning)
+ * debian/rules: move binary-arch commands to binary-indep; do not ignore
+ errors from "make clean" (fix lintian warnings)
+ * debian/changelog: fix typo in 0.96.1 s/dancy/dency/ (fix lintian warning)
+ * debian/postinst: don't use explicit path for /usr/sbin (fix lintian warning)
+ * debian/postrm: add -e flag (fix lintian warning)
+
+ -- era eriksson <[email protected]> Mon, 26 Jan 2009 19:58:57 +0200
+
dlocate (0.96.1) unstable; urgency=low
- * version 0.95 introduced a dependancy on awk, which is an optional
+ * version 0.95 introduced a dependency on awk, which is an optional
package. the simple awk script has only been tested on my system
with gawk, but it doesn't do anything gawkish so should work with
mawk or original-awk. fixed Depends line.
diff -burNad dlocate-upstream-0.96.1/debian/control dlocate-lintian-0.96.1/debian/control
--- dlocate-upstream-0.96.1/debian/control 2009-01-27 09:19:49.000000000 +0200
+++ dlocate-lintian-0.96.1/debian/control 2009-01-29 11:50:04.000000000 +0200
@@ -7,7 +7,7 @@
Package: dlocate
Architecture: all
-Depends: awk, dctrl-tools | grep-dctrl (>= 0.11), dpkg (>= 1.8.0), locate | findutils (<< 4.2.31-2), ${perl:Depends}
+Depends: dctrl-tools | grep-dctrl (>= 0.11), dpkg (>= 1.8.0), locate | findutils (<< 4.2.31-2), ${perl:Depends}
Description: fast alternative to dpkg -L and dpkg -S
Uses GNU locate to greatly speed up finding out which package a file
belongs to (i.e. a very fast dpkg -S). Many other uses, including
diff -burNad dlocate-upstream-0.96.1/debian/copyright dlocate-lintian-0.96.1/debian/copyright
--- dlocate-upstream-0.96.1/debian/copyright 2009-01-27 09:19:49.000000000 +0200
+++ dlocate-lintian-0.96.1/debian/copyright 2009-01-29 11:50:04.000000000 +0200
@@ -12,7 +12,10 @@
Copyright:
+Copyright (C) 1999 Jim Pick <[email protected]>, Craig Sanders <[email protected]>
+Copyright (C) 2007, 2008 Craig Sanders <[email protected]>
+
original script by Jim Pick <[email protected]>, GPL'd of course
-see /usr/share/common-licenses/GPL for details
+see /usr/share/common-licenses/GPL-2 for details
diff -burNad dlocate-upstream-0.96.1/debian/postinst dlocate-lintian-0.96.1/debian/postinst
--- dlocate-upstream-0.96.1/debian/postinst 2009-01-27 09:19:49.000000000 +0200
+++ dlocate-lintian-0.96.1/debian/postinst 2009-01-29 11:50:04.000000000 +0200
@@ -25,7 +25,7 @@
case "$1" in
configure)
# generate initial dlocate database
- /usr/sbin/update-dlocatedb >/dev/null 2>&1 &
+ update-dlocatedb >/dev/null 2>&1 &
# generate initial 'dpkg -l' file
dpkg -l "*" | sed -e '1,5d' -e 's/ */ /g' -e 's/ /\t/' -e 's/ /\t/' -e 's/ /\t/' > /var/lib/dlocate/dpkg-list
diff -burNad dlocate-upstream-0.96.1/debian/postrm dlocate-lintian-0.96.1/debian/postrm
--- dlocate-upstream-0.96.1/debian/postrm 2009-01-27 09:19:49.000000000 +0200
+++ dlocate-lintian-0.96.1/debian/postrm 2009-01-29 11:50:04.000000000 +0200
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/sh -e
if [ "$1" = "purge" ]; then
rm -f /var/lib/dlocate/*
rmdir /var/lib/dlocate/
diff -burNad dlocate-upstream-0.96.1/debian/rules dlocate-lintian-0.96.1/debian/rules
--- dlocate-upstream-0.96.1/debian/rules 2009-01-27 09:19:49.000000000 +0200
+++ dlocate-lintian-0.96.1/debian/rules 2009-01-29 11:50:04.000000000 +0200
@@ -13,7 +13,7 @@
dh_testdir
dh_testroot
rm -f build-stamp install-stamp
- -$(MAKE) clean
+ $(MAKE) clean
dh_clean
install: install-stamp
@@ -27,10 +27,6 @@
# Build architecture-independent files here.
binary-indep: build install
-# We have nothing to do by default.
-
-# Build architecture-dependent files here.
-binary-arch: build install
dh_testdir
dh_testroot
# dh_installdebconf
@@ -59,6 +55,10 @@
dh_md5sums
dh_builddeb
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by definition (arch is indep).
+
source diff:
@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
--- End Message ---
--- Begin Message ---
Source: dlocate
Source-Version: 1.0
We believe that the bug you reported is fixed in the latest version of
dlocate, which is due to be installed in the Debian FTP archive:
dlocate_1.0.dsc
to pool/main/d/dlocate/dlocate_1.0.dsc
dlocate_1.0.tar.gz
to pool/main/d/dlocate/dlocate_1.0.tar.gz
dlocate_1.0_all.deb
to pool/main/d/dlocate/dlocate_1.0_all.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Craig Sanders <[email protected]> (supplier of updated dlocate package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Sat, 30 May 2009 16:53:51 +1000
Source: dlocate
Binary: dlocate
Architecture: source all
Version: 1.0
Distribution: unstable
Urgency: low
Maintainer: Craig Sanders <[email protected]>
Changed-By: Craig Sanders <[email protected]>
Description:
dlocate - fast alternative to dpkg -L and dpkg -S
Closes: 49922 466662 494651 494673 501870 505997 512446 513470 518309 523501
Changes:
dlocate (1.0) unstable; urgency=low
.
* no longer use frcode and locate, see discussion in 494673. removed
dependency on locate package. (Closes: #505997, #494651, #494673)
* added support for several GNU grep options, -E, -F, -G, -P, and -w
* the extra grep options obsolete the request for shell glob patterns
(Closes: #49922)
* checked for empty $PKGS (Closes: #523501)
* fixed '-man' option, so that it doesn't break on man directories with
locales
* tired of people filing the same bug because they misunderstand the purpose
of '-man'. added 'sort -u'. (Closes: #501870)
* updated and fixed dlocate.1 man page (Closes: #518309)
* corrected 'dlocate -l' example in man page (Closes: #466662)
* moved man pages for dpkg-hold, dpkg-unhold, dpkg-purge, dpkg-remove to
section 8 (Closes: #512446)
* added --verbose option to aid in debugging dlocate
* fixed bug that broke support for multiple packages in most commands
* fixed '-s' command so that it only calls grep-dctrl once if there are
multiple package names
* applied following 6 lintian fixes from era eriksson: (Closes: #513470)
* debian/control: revert dependency on awk; as per Lintian error,
it is in practice essential, and should not be declared
* debian/copyright: add copyright year; disambiguate license as GPL v2
(fix lintian warning)
* debian/rules: move binary-arch commands to binary-indep; do not ignore
errors from "make clean" (fix lintian warnings)
* debian/changelog: fix typo in 0.96.1 s/dancy/dency/ (fix lintian warning)
* debian/postinst: don't use explicit path for /usr/sbin (fix lintian
warning)
* debian/postrm: add -e flag (fix lintian warning)
Checksums-Sha1:
305ea6a207a8073b1090e12eea51f6667b38c56b 683 dlocate_1.0.dsc
4cb84953028e25b0fe2f7a9be38943a8ecb1f4e8 36544 dlocate_1.0.tar.gz
e0f59394157ce1590e03ba0fb6d095a47e0c4eab 20172 dlocate_1.0_all.deb
Checksums-Sha256:
d317e27b1372891684495372399cc4144c78e8803c7435e1008aeaf924ed050c 683
dlocate_1.0.dsc
e0ecac3b651fd9dcebaf900aab88d23e94713bbce526f87c7890febd70da7375 36544
dlocate_1.0.tar.gz
d8e33720d26e8b52d4a7f490c7a13e10dcebe3c8f56bc56fd11c1244b28093c7 20172
dlocate_1.0_all.deb
Files:
bddbc804eb0748fd92490c0a3f12c2f5 683 utils optional dlocate_1.0.dsc
ffe6f95a7306256cac513f3e5b1793ef 36544 utils optional dlocate_1.0.tar.gz
92ffd6360871a713a741b612d6ad16dc 20172 utils optional dlocate_1.0_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iEYEARECAAYFAkohBB4ACgkQ7DJoEM1WJvDfJwCffy6J5k89TUGKpWqJkQcSkvwQ
EcgAnj8SzwgpykWiT0auEkEAN2BYFgZr
=G71/
-----END PGP SIGNATURE-----
--- End Message ---