New Upstream Snapshot - ruby-seamless-database-pool

Ready changes

Summary

Merged new upstream version: 1.0.20+git20170501.1.529c1d4 (was: 1.0.20).

Resulting package

Built on 2023-01-16T21:55 (took 5m55s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-snapshots ruby-seamless-database-pool

Lintian Result

Diff

diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index af89196..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-pkg
-tmp
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ca0fdc3..7e3b6ed 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,6 @@
 ## 1.0.20
 
-* Remove calls to `alias_method_chain` for Rails 5.1 compatibility (thanks )
+* Remove calls to `alias_method_chain` for Rails 5.1 compatibility (thanks yukideluxe & wjordan)
 
 * Don't check read only connections on calls to `verify!` and `active?` when not necessary (thanks wjordan)
 
diff --git a/debian/changelog b/debian/changelog
index b375c25..13fda42 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ruby-seamless-database-pool (1.0.20+git20170501.1.529c1d4-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Mon, 16 Jan 2023 21:53:16 -0000
+
 ruby-seamless-database-pool (1.0.20-4) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/patches/0001-Require-installed-version-to-run-tests-in-spec_helpe.patch b/debian/patches/0001-Require-installed-version-to-run-tests-in-spec_helpe.patch
index 3e7d6c9..c5751f3 100644
--- a/debian/patches/0001-Require-installed-version-to-run-tests-in-spec_helpe.patch
+++ b/debian/patches/0001-Require-installed-version-to-run-tests-in-spec_helpe.patch
@@ -7,11 +7,11 @@ Forwarded: not-needed
  spec/spec_helper.rb | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
-index ad2d062..4869b35 100644
---- a/spec/spec_helper.rb
-+++ b/spec/spec_helper.rb
-@@ -7,7 +7,7 @@ gem 'activerecord', *active_record_version
+Index: ruby-seamless-database-pool.git/spec/spec_helper.rb
+===================================================================
+--- ruby-seamless-database-pool.git.orig/spec/spec_helper.rb
++++ ruby-seamless-database-pool.git/spec/spec_helper.rb
+@@ -7,7 +7,7 @@ gem 'activerecord', *active_record_versi
  require 'active_record'
  puts "Testing Against ActiveRecord #{ActiveRecord::VERSION::STRING}" if defined?(ActiveRecord::VERSION)
  
diff --git a/debian/patches/0002-Fix-Ruby-3.0-kwargs-handling.patch b/debian/patches/0002-Fix-Ruby-3.0-kwargs-handling.patch
index e30c6de..b3bafff 100644
--- a/debian/patches/0002-Fix-Ruby-3.0-kwargs-handling.patch
+++ b/debian/patches/0002-Fix-Ruby-3.0-kwargs-handling.patch
@@ -7,10 +7,10 @@ Forwarded: https://github.com/bdurand/seamless_database_pool/pull/49
  lib/active_record/connection_adapters/seamless_database_pool_adapter.rb | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-diff --git a/lib/active_record/connection_adapters/seamless_database_pool_adapter.rb b/lib/active_record/connection_adapters/seamless_database_pool_adapter.rb
-index f2e168d..83089b9 100755
---- a/lib/active_record/connection_adapters/seamless_database_pool_adapter.rb
-+++ b/lib/active_record/connection_adapters/seamless_database_pool_adapter.rb
+Index: ruby-seamless-database-pool.git/lib/active_record/connection_adapters/seamless_database_pool_adapter.rb
+===================================================================
+--- ruby-seamless-database-pool.git.orig/lib/active_record/connection_adapters/seamless_database_pool_adapter.rb
++++ ruby-seamless-database-pool.git/lib/active_record/connection_adapters/seamless_database_pool_adapter.rb
 @@ -182,7 +182,7 @@ module ActiveRecord
          false
        end
diff --git a/debian/patches/0003-Don-t-require-a-specific-Ruby-version.patch b/debian/patches/0003-Don-t-require-a-specific-Ruby-version.patch
index e6ceee6..5e3ad65 100644
--- a/debian/patches/0003-Don-t-require-a-specific-Ruby-version.patch
+++ b/debian/patches/0003-Don-t-require-a-specific-Ruby-version.patch
@@ -10,10 +10,10 @@ Forwarded: not-needed
  seamless_database_pool.gemspec | 1 -
  1 file changed, 1 deletion(-)
 
-diff --git a/seamless_database_pool.gemspec b/seamless_database_pool.gemspec
-index 0a126ba..70751fb 100644
---- a/seamless_database_pool.gemspec
-+++ b/seamless_database_pool.gemspec
+Index: ruby-seamless-database-pool.git/seamless_database_pool.gemspec
+===================================================================
+--- ruby-seamless-database-pool.git.orig/seamless_database_pool.gemspec
++++ ruby-seamless-database-pool.git/seamless_database_pool.gemspec
 @@ -12,7 +12,6 @@ Gem::Specification.new do |spec|
    spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
    spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
diff --git a/debian/patches/0004-fix-FTBFS-with-ruby-rspec-3.12.patch b/debian/patches/0004-fix-FTBFS-with-ruby-rspec-3.12.patch
index 594bf82..8451155 100644
--- a/debian/patches/0004-fix-FTBFS-with-ruby-rspec-3.12.patch
+++ b/debian/patches/0004-fix-FTBFS-with-ruby-rspec-3.12.patch
@@ -6,10 +6,10 @@ Last-Update: 2023-01-03
 
 
 
-Index: ruby-seamless-database-pool/spec/seamless_database_pool_adapter_spec.rb
+Index: ruby-seamless-database-pool.git/spec/seamless_database_pool_adapter_spec.rb
 ===================================================================
---- ruby-seamless-database-pool.orig/spec/seamless_database_pool_adapter_spec.rb
-+++ ruby-seamless-database-pool/spec/seamless_database_pool_adapter_spec.rb
+--- ruby-seamless-database-pool.git.orig/spec/seamless_database_pool_adapter_spec.rb
++++ ruby-seamless-database-pool.git/spec/seamless_database_pool_adapter_spec.rb
 @@ -58,9 +58,9 @@ describe "SeamlessDatabasePoolAdapter Ac
      logger = ActiveRecord::Base.logger
      weights = {master_connection => 1, read_connection_1 => 1, read_connection_2 => 2}

Debdiff

File lists identical (after any substitutions)

No differences were encountered in the control files

More details

Full run details