Your message dated Tue, 15 Sep 2009 15:06:59 +0200
with message-id <20090915130657.ga9...@lisa>
and subject line Re: Bug#546744: [build-rdeps] only allows for "unstable" in
sources.list and not "sid"
has caused the Debian Bug report #546744,
regarding [build-rdeps] only allows for "unstable" in sources.list and not "sid"
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.)
--
546744: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=546744
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: devscripts
Version: 2.10.35lenny7
Severity: wishlist
File: /usr/bin/build-rdeps
Tags: patch
build-rdeps will only find Sources files if you use "unstable" in your
sources.list and will fail to find any Sources files if you list "sid".
i.e. this sources line will result in a message telling you to run apt-get
update:
deb-src http://ftp.uk.debian.org/debian/ sid main
where as this line will work fine:
deb-src http://ftp.uk.debian.org/debian/ unstable main
Both lines are accepted by apt and other programs that deal with Sources files
will handle either just fine.
The attached patch allows for the use of either sid or unstable in the
sources.list.
cheers
Stuart
--- /usr/local/bin/build-rdeps 2009-09-15 12:05:29.000000000 +0100
+++ /usr/bin/build-rdeps 2009-09-10 20:25:34.000000000 +0100
@@ -71,5 +71,5 @@
my $dctrl = "/usr/bin/grep-dctrl";
my $sources_path = "/var/lib/apt/lists/";
-my $source_pattern = ".*_dists_(sid|unstable)_.*Sources\$";
+my $source_pattern = ".*_dists_unstable_.*Sources\$";
my @source_files;
my $sources_count=0;
--- End Message ---
--- Begin Message ---
Hi,
On Tue, Sep 15, 2009 at 01:41:39PM +0100, Stuart Prescott wrote:
> build-rdeps will only find Sources files if you use "unstable" in your
> sources.list and will fail to find any Sources files if you list "sid".
thanks for your report. But this bug is already fixed in a newer version of
devscripts.
> The attached patch allows for the use of either sid or unstable in the
> sources.list.
The attached patch seems.. odd. I guess you diffed the wrong way round? ;)
Best Regards,
Patrick
--- End Message ---