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 <bunk@debian.org>  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 <max.gilmour@canonical.com>
+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
