Your message dated Sat, 12 Jan 2008 17:47:02 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#460340: fixed in debhelper 6.0.2
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: debhelper
Version: 6.0.1
The added code which appends stuff at the beginning of $exclude
variable can be executed more than once, being in a loop, and it
breaks with more than one -X argument.
Patch attached.
--
Jindrich Makovicka
diff -ur old/dh_installdocs new/dh_installdocs
--- old/dh_installdocs 2008-01-12 09:30:11.000000000 +0100
+++ new/dh_installdocs 2008-01-12 09:38:24.000000000 +0100
@@ -137,8 +137,8 @@
my $dir = ($basename eq '.') ? $doc : "$doc/..";
my $pwd=`pwd`;
chomp $pwd;
- $exclude='\\( -type f -or -type l \\)'.$exclude;
- complex_doit("cd '$dir' && find '$basename' $exclude -exec cp --parents -dp {} $pwd/$tmp/usr/share/doc/$package \\;");
+ my $exclude2='\\( -type f -or -type l \\)'.$exclude;
+ complex_doit("cd '$dir' && find '$basename' $exclude2 -exec cp --parents -dp {} $pwd/$tmp/usr/share/doc/$package \\;");
}
else {
doit("cp", "-a", $doc, "$tmp/usr/share/doc/$package");
diff -ur old/dh_installexamples new/dh_installexamples
--- old/dh_installexamples 2008-01-12 09:30:34.000000000 +0100
+++ new/dh_installexamples 2008-01-12 09:38:33.000000000 +0100
@@ -90,8 +90,8 @@
my $dir = ($basename eq '.') ? $example : "$example/..";
my $pwd=`pwd`;
chomp $pwd;
- $exclude = '-type f'.$exclude;
- complex_doit("cd '$dir' && find '$basename' $exclude -exec cp --parents -dp {} $pwd/$tmp/usr/share/doc/$package/examples \\;");
+ my $exclude2 = '-type f'.$exclude;
+ complex_doit("cd '$dir' && find '$basename' $exclude2 -exec cp --parents -dp {} $pwd/$tmp/usr/share/doc/$package/examples \\;");
}
else {
doit("cp", "-a", $example, "$tmp/usr/share/doc/$package/examples");
--- End Message ---
--- Begin Message ---
Source: debhelper
Source-Version: 6.0.2
We believe that the bug you reported is fixed in the latest version of
debhelper, which is due to be installed in the Debian FTP archive:
debhelper_6.0.2.dsc
to pool/main/d/debhelper/debhelper_6.0.2.dsc
debhelper_6.0.2.tar.gz
to pool/main/d/debhelper/debhelper_6.0.2.tar.gz
debhelper_6.0.2_all.deb
to pool/main/d/debhelper/debhelper_6.0.2_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.
Joey Hess <[EMAIL PROTECTED]> (supplier of updated debhelper 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.7
Date: Sat, 12 Jan 2008 12:31:15 -0500
Source: debhelper
Binary: debhelper
Architecture: source all
Version: 6.0.2
Distribution: unstable
Urgency: low
Maintainer: Joey Hess <[EMAIL PROTECTED]>
Changed-By: Joey Hess <[EMAIL PROTECTED]>
Description:
debhelper - helper programs for debian/rules
Closes: 460340 460351
Changes:
debhelper (6.0.2) unstable; urgency=low
.
* Revert slightly broken refactoring of some exclude code.
Closes: #460340, #460351
Files:
21005282e4e2649305b9c916f16c9b5e 595 devel optional debhelper_6.0.2.dsc
5e1d16ec5da2d58a421d9be980378ff2 277551 devel optional debhelper_6.0.2.tar.gz
fc29df168375d3bdece927f0b5600c29 515750 devel optional debhelper_6.0.2_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFHiPnB2tp5zXiKP0wRAsWlAJ9vVL9gp5QXGYVEoIDxxzOl70igigCdGiIL
vpMXzw6JSliiIJAJGWNQiQU=
=nyV3
-----END PGP SIGNATURE-----
--- End Message ---