Your message dated Wed, 09 Apr 2025 19:06:29 +0000
with message-id <[email protected]>
and subject line Bug#1099920: fixed in ruby-fuubar 2.5.1-2
has caused the Debian Bug report #1099920,
regarding ruby-fuubar: autopkgtest regression on 32 bits arch (armel, armhf and 
i386)
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.)


-- 
1099920: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1099920
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: ruby-fuubar
Version: 2.5.1-1
Severity: serious
User: [email protected]
Usertags: regression
Control: block 1090382 by -1

Dear maintainer(s),

With a recent upload of ruby-fuubar the autopkgtest of ruby-fuubar fails in testing when that autopkgtest is run with the binary packages of ruby-fuubar from unstable on armel, armhf and i386, our 32 bits architectures. It passes when run with only packages from testing. In tabular form:

                       pass            fail
ruby-fuubar            from testing    2.5.1-1
all others             from testing    from testing

I copied some of the output at the bottom of this report.

Currently this regression is blocking the migration to testing [1]. Can you please investigate the situation and fix it?

More information about this bug and the reason for filing it can be found on
https://wiki.debian.org/ContinuousIntegration/RegressionEmailInformation

Paul

[1] https://qa.debian.org/excuses.php?package=ruby-fuubar

https://ci.debian.net/data/autopkgtest/testing/armel/r/ruby-fuubar/58596149/log.gz

44s 44s ┌──────────────────────────────────────────────────────────────────────────────┐ 44s │ Checking Rubygems dependency resolution on ruby3.3 │ 44s └──────────────────────────────────────────────────────────────────────────────┘
 44s  44s RUBYLIB=. GEM_PATH= ruby3.3 -e gem\ \"fuubar\"
 44s mv lib ./.gem2deb.lib
 44s mv Gemfile.lock ./.gem2deb.Gemfile.lock
 44s mv gemfiles/v1/Gemfile.lock gemfiles/v1/.gem2deb.Gemfile.lock
 44s mv gemfiles/v2/Gemfile.lock gemfiles/v2/.gem2deb.Gemfile.lock
 45s mv ./.gem2deb.lib lib
 45s mv ./.gem2deb.Gemfile.lock Gemfile.lock
 45s mv gemfiles/v1/.gem2deb.Gemfile.lock gemfiles/v1/Gemfile.lock
 45s mv gemfiles/v2/.gem2deb.Gemfile.lock gemfiles/v2/Gemfile.lock
45s 45s ┌──────────────────────────────────────────────────────────────────────────────┐ 45s │ Run tests for ruby3.3 from debian/ruby-tests.rake │ 45s └──────────────────────────────────────────────────────────────────────────────┘ 45s 45s RUBYLIB=. GEM_PATH= ruby3.3 -S rake --rakelibdir /gem2deb-nonexistent -f debian/ruby-tests.rake
 45s mv lib ./.gem2deb.lib
 45s mv Gemfile.lock ./.gem2deb.Gemfile.lock
 45s mv gemfiles/v1/Gemfile.lock gemfiles/v1/.gem2deb.Gemfile.lock
 45s mv gemfiles/v2/Gemfile.lock gemfiles/v2/.gem2deb.Gemfile.lock
45s /usr/bin/ruby3.3 -I/usr/share/rubygems-integration/all/gems/rspec-support-3.13.1/lib:/usr/share/rubygems-integration/all/gems/rspec-core-3.13.0/lib /usr/share/rubygems-integration/all/gems/rspec-core-3.13.0/exe/rspec --pattern ./spec/\*\*/\*_spec.rb --format documentation
 45s  45s Fuubar::Output
 45s   delegates anything to the passed in object
 45s   can override the TTY of the passed in class
 45s  45s Fuubar
 45s   when it is created
 45s     does not start the bar until the formatter is started
 45s     creates a new ProgressBar
 45s     sets the format of the bar to the default
 45s     sets the total to the number of examples
 45s     sets the bar's output
 45s     and continuous integration is enabled
 45s       throttles the progress bar at one second (FAILED - 1)
 45s       when processing an example
 45s         does not output color codes
 45s     and continuous integration is not enabled
 45s       throttles the progress bar at the default rate (FAILED - 2)
 45s       when processing an example
 45s         outputs color codes
 45s   when custom options are set after the formatter is created
 45s     when the bar is started
 45s       properly creates the bar
 45s   when it is started
 45s     sets the total to the number of examples
 45s     can properly log messages
 45s     and no custom options are passed in
 45s       sets the format of the bar to the default
 45s     and an example passes
 45s       outputs the proper bar information
 45s     and an example pends
 45s       outputs the proper bar information
 45s       and then an example succeeds
 45s         outputs the pending bar
 45s     and an example fails
 45s       outputs the proper bar information
 45s       and then an example succeeds
 45s         outputs the failed bar
 45s       and then an example pends
 45s         outputs the failed bar
 45s  45s Failures:
45s 45s 1) Fuubar when it is created and continuous integration is enabled throttles the progress bar at one second
 45s      Failure/Error: expect(throttle_rate).to be 1.0
 45s  45s        expected #<Float:1300> => 1.0
 45s             got #<Float:1310> => 1.0
 45s  45s        Compared using equal?, which compares object identity,
 45s        but expected and actual are not the same object. Use
 45s        `expect(actual).to eq(expected)` if you don't care about
 45s        object identity in this example.
45s # ./spec/lib/fuubar_spec.rb:99:in `block (4 levels) in <top (required)>' 45s 45s 2) Fuubar when it is created and continuous integration is not enabled throttles the progress bar at the default rate
 45s      Failure/Error: expect(throttle_rate).to be 0.01
 45s  45s        expected #<Float:1340> => 0.01
 45s             got #<Float:1350> => 0.01
 45s  45s        Compared using equal?, which compares object identity,
 45s        but expected and actual are not the same object. Use
 45s        `expect(actual).to eq(expected)` if you don't care about
 45s        object identity in this example.
45s # ./spec/lib/fuubar_spec.rb:131:in `block (4 levels) in <top (required)>'
 45s  45s Finished in 0.0629 seconds (files took 0.19291 seconds to load)
 45s 21 examples, 2 failures
 45s  45s Failed examples:
45s 45s rspec ./spec/lib/fuubar_spec.rb:95 # Fuubar when it is created and continuous integration is enabled throttles the progress bar at one second 45s rspec ./spec/lib/fuubar_spec.rb:127 # Fuubar when it is created and continuous integration is not enabled throttles the progress bar at the default rate 45s 45s /usr/bin/ruby3.3 -I/usr/share/rubygems-integration/all/gems/rspec-support-3.13.1/lib:/usr/share/rubygems-integration/all/gems/rspec-core-3.13.0/lib /usr/share/rubygems-integration/all/gems/rspec-core-3.13.0/exe/rspec --pattern ./spec/\*\*/\*_spec.rb --format documentation failed
 45s mv ./.gem2deb.lib lib
 45s mv ./.gem2deb.Gemfile.lock Gemfile.lock
 45s mv gemfiles/v1/.gem2deb.Gemfile.lock gemfiles/v1/Gemfile.lock
 45s mv gemfiles/v2/.gem2deb.Gemfile.lock gemfiles/v2/Gemfile.lock
 46s autopkgtest [18:25:14]: test gem2deb-test-runner

Attachment: OpenPGP_signature.asc
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
Source: ruby-fuubar
Source-Version: 2.5.1-2
Done: Lucas Nussbaum <[email protected]>

We believe that the bug you reported is fixed in the latest version of
ruby-fuubar, which is due to be installed in the Debian FTP archive.

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.
Lucas Nussbaum <[email protected]> (supplier of updated ruby-fuubar 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: SHA512

Format: 1.8
Date: Wed, 09 Apr 2025 20:55:57 +0200
Source: ruby-fuubar
Architecture: source
Version: 2.5.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Team 
<[email protected]>
Changed-By: Lucas Nussbaum <[email protected]>
Closes: 1099920
Changes:
 ruby-fuubar (2.5.1-2) unstable; urgency=medium
 .
   * Team upload.
   * Add fix_expectations.patch. Closes: #1099920
Checksums-Sha1:
 ee15c054f9d66edb3c223f2aa4aa5086e61f396c 2063 ruby-fuubar_2.5.1-2.dsc
 1ffa3e1dde75882a050f164ddc5580b0e974d8fa 3596 ruby-fuubar_2.5.1-2.debian.tar.xz
 8f13f6f6435c47983c24d7c570d8c667ef9c984a 13323 
ruby-fuubar_2.5.1-2_source.buildinfo
Checksums-Sha256:
 faf99f4b02fa2458e0e362bcd69123ae0e8a652f8320d63e4ca9384d71da7a59 2063 
ruby-fuubar_2.5.1-2.dsc
 c105b95cffe8ea5127e5e4a009be0d4bc5d145230fcdef183050f10031c9b4cb 3596 
ruby-fuubar_2.5.1-2.debian.tar.xz
 d9f0e98be95db1278501beeca1ecbce19363b568daf24b9cc185280a0404206d 13323 
ruby-fuubar_2.5.1-2_source.buildinfo
Files:
 ca51604f7b244dbfcd0a8bf3a44aa14f 2063 ruby optional ruby-fuubar_2.5.1-2.dsc
 cb9b594b888e58f9e1a45eff2c124a97 3596 ruby optional 
ruby-fuubar_2.5.1-2.debian.tar.xz
 36d5a5f91d884766e8434a65771b8d19 13323 ruby optional 
ruby-fuubar_2.5.1-2_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEE/t7ByzN7z1CfQ8IkORS1MvTfvpkFAmf2w6wACgkQORS1MvTf
vpnTpQ/8D1Vig3J5wMNfl3rB0j5qhAE2wfOtRDw4Tq/tuixxjnf4AZylANKx7+3s
pCOL/OiBxVlEIbdfcdwwlyClbsDGgxNs0quQwKUCvPwv5ORnNu1eKxMVR1DJxXRw
/DdMUnVIuXBGXuQyXDyf7odf2xIHEgjv6xCmrwrfWp39FvveKRsIQmNTwnihHkEa
YSmJeZFHihtXrf6kd+maJCp0wNLAUzysCKFC4AJjo2gLEJjdyhC8REONf3RQR5Y/
/8wj1WQgN5c5j5oFoIBbjvF0sSwjxTmuFSithaCtCjxLkj8Ah1FG8JbLIbT3JLeA
pwgxJM/Oz3AO9YMg8AieJzWzchb6vuSV9YrH4D7kmML2hzs943xX91iLPUnXNy2g
LLUUOnSVQV+wXuuEWNjdduEBVLWNxErwa3MHN9l2+2J1IWL3EbJQc9qXjokRgepj
H7fvBjSV78JyczSRSop02th2bilWIF5q6ZFu/4/24HhQP5Xd+mKZv7aHMOlyLB4w
iMr6SnNCv6ub2UuIUoY22XPYk7ExpVq36SWM625JVMuw3JYCfsX94EKu+v7WdTDR
R8lJReL+d27gZwYNhm1MN5CtKoSYF0a/UK+o0tfEa2gaRTrkzTz13giYt0zIgCGk
XjQIeuEhCwAGLuDOJ1/3sv7Meb9DTEbkr+avunuMiikwd0JbPlg=
=t+1r
-----END PGP SIGNATURE-----

Attachment: pgpWsa3AzObPH.pgp
Description: PGP signature


--- End Message ---
_______________________________________________
Pkg-ruby-extras-maintainers mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers

Reply via email to