Control: tags 1121922 + pending Dear maintainer,
I've prepared an NMU for ruby-scientist (versioned as 1.6.5-1.1) and uploaded it to DELAYED/2. Please feel free to tell me if I should cancel it. cu Adrian
diffstat for ruby-scientist-1.6.5 ruby-scientist-1.6.5 changelog | 7 +++++++ patches/series | 1 + patches/use-system-rake.patch | 17 +++++++++++++++++ 3 files changed, 25 insertions(+) diff -Nru ruby-scientist-1.6.5/debian/changelog ruby-scientist-1.6.5/debian/changelog --- ruby-scientist-1.6.5/debian/changelog 2025-11-04 20:27:02.000000000 +0200 +++ ruby-scientist-1.6.5/debian/changelog 2026-01-20 21:07:59.000000000 +0200 @@ -1,3 +1,10 @@ +ruby-scientist (1.6.5-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Add autopkgtest fix from Max Gilmour. (Closes: #1121922) + + -- Adrian Bunk <[email protected]> Tue, 20 Jan 2026 21:07:59 +0200 + ruby-scientist (1.6.5-1) unstable; urgency=medium * Team upload. diff -Nru ruby-scientist-1.6.5/debian/patches/series ruby-scientist-1.6.5/debian/patches/series --- ruby-scientist-1.6.5/debian/patches/series 2025-11-04 20:22:35.000000000 +0200 +++ ruby-scientist-1.6.5/debian/patches/series 2026-01-20 20:54:11.000000000 +0200 @@ -2,3 +2,4 @@ disable-failing-test.patch no-git-in-gemspec.patch adjust-gemfile-for-autopkgtest.patch +use-system-rake.patch diff -Nru ruby-scientist-1.6.5/debian/patches/use-system-rake.patch ruby-scientist-1.6.5/debian/patches/use-system-rake.patch --- ruby-scientist-1.6.5/debian/patches/use-system-rake.patch 1970-01-01 02:00:00.000000000 +0200 +++ ruby-scientist-1.6.5/debian/patches/use-system-rake.patch 2026-01-20 20:53:58.000000000 +0200 @@ -0,0 +1,17 @@ +Description: Use system rake instead of bundled rake + This package is configured to use apt installed build dependencies, so the + bundler can't find rake because it's installed system-wide. + . + This patch fixes that issue by using the system rake instead of a bundled one. +Author: Max Gilmour <[email protected]> +Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ruby-scientist/+bug/2133826 +Last-Update: 2025-12-03 +--- +--- a/script/test ++++ b/script/test +@@ -4,4 +4,4 @@ + set -e + + cd $(dirname "$0")/.. +- script/bootstrap && bundle exec rake test ++ script/bootstrap && rake test

