Although the error message has changed from the originally reported bug
to one saying not in gzip format the problem is still the same.

Exception `LoadError' at /usr/lib/ruby/1.8/tmpdir.rb:12 - no such file to load 
-- Win32API
Exception `LoadError' at /usr/lib/ruby/1.8/xml/encoding-ja.rb:12 - no such file 
to load -- uconv
Exception `LoadError' at /usr/lib/ruby/1.8/rss/xmlscanner.rb:1 - no such file 
to load -- xmlscan/scanner
/usr/sbin/apt-listbugs:383: warning: instance variable @title not initialized
http_proxy: http://johndoe:[EMAIL PROTECTED]:8080/ : 10.0.0.1 8080
http://osdn.debian.or.jp:80/
indexdir = /~taru/apt-listbugs/
Reading package fields... Done
Reading package status... 0%/usr/lib/ruby/1.8/debian.rb:712: warning: instance 
variable @file not initialized
Reading package status... Done
Retrieving bug reports... 0% [0/2]fetching 
/~taru/apt-listbugs/index.db-critical.gz..
Reading /~taru/apt-listbugs/index.db-critical.gz...
fetching /~taru/apt-listbugs/index.db-critical.gz..
Reading /~taru/apt-listbugs/index.db-critical.gz...
Exception `Zlib::GzipFile::Error' at /usr/share/apt-listbugs/debian/bts.rb:256 
- not in gzip format
 W: not in gzip format: bluez-bcm203x
Exception `Zlib::GzipFile::Error' at /usr/share/apt-listbugs/debian/bts.rb:256 
- not in gzip format
 W: not in gzip format: bluez-firmware
Retrieving bug reports... Done
Bugs of the following packages couldn't be fetched:
 bluez-bcm203x bluez-firmware
Assuming that there is no bugs of these packages.
Are you sure[Y/n]? Interrupted


I have never written a single line of ruby, but this snippet from
/usr/share/apt-listbugs/debian/bts.rb sure looks like only host and port
are considered and authentification is all ignored.


      class HTTP < Acquire
        def initialize(host = "bugs.debian.org", port = 80, cache_dir = nil, 
timer = nil)
          super(cache_dir, timer)
          @host = host
          @port = port
          @extra_headers = {}
          if ENV["http_proxy"] != nil
            uri = URI::split(ENV["http_proxy"])
            @proxy_host = uri[2]
            @proxy_port = uri[3]
            begin
              Net::HTTP::Proxy(@proxy_host, @proxy_port).start(@host,@port)
            rescue
              $stderr.puts "Disabling unavailable proxy configuration: 
#{ENV["http_proxy"]}: #{$!}"
              @proxy_host = @proxy_port = nil
            end
            puts "http_proxy: #{ENV['http_proxy']} : [EMAIL PROTECTED] [EMAIL 
PROTECTED]" if $DEBUG
          end
          puts "http://#{host}:#{port}/"; if $DEBUG

I did try to google for the syntax of that Proxy function call above, but I 
didn't get to far.
--
/Martin

Attachment: signature.asc
Description: Digital signature

Reply via email to