diff -Nru ruby-joiner-0.4.2/debian/changelog ruby-joiner-0.4.2/debian/changelog --- ruby-joiner-0.4.2/debian/changelog 2019-01-22 09:28:14.000000000 +0000 +++ ruby-joiner-0.4.2/debian/changelog 2020-02-21 15:55:49.000000000 +0000 @@ -1,3 +1,15 @@ +ruby-joiner (0.4.2-2) unstable; urgency=medium + + * Team upload. + * Add patch to relax version of some dependencies (Closes: #950963) + * Bump debhelper compatibility level to 12 + * Declare compliance with Debian Policy 4.5.0 + * d/control: rules does not need root + * Do not runtime depend on ruby interpreter + * d/copyright: use secure url in Format field + + -- Lucas Kanashiro Fri, 21 Feb 2020 12:55:49 -0300 + ruby-joiner (0.4.2-1) unstable; urgency=medium [ Cédric Boutillier ] diff -Nru ruby-joiner-0.4.2/debian/compat ruby-joiner-0.4.2/debian/compat --- ruby-joiner-0.4.2/debian/compat 2018-12-06 14:00:51.000000000 +0000 +++ ruby-joiner-0.4.2/debian/compat 2020-02-21 15:55:49.000000000 +0000 @@ -1 +1 @@ -9 +12 diff -Nru ruby-joiner-0.4.2/debian/control ruby-joiner-0.4.2/debian/control --- ruby-joiner-0.4.2/debian/control 2019-01-22 08:28:21.000000000 +0000 +++ ruby-joiner-0.4.2/debian/control 2020-02-21 15:55:49.000000000 +0000 @@ -3,24 +3,24 @@ Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: Andrew Lee (李健秋) -Build-Depends: debhelper (>= 9~), +Build-Depends: debhelper (>= 12~), gem2deb, ruby-combustion, ruby-rails, ruby-rspec-rails, ruby-sqlite3 -Standards-Version: 4.3.0 +Standards-Version: 4.5.0 Vcs-Git: https://salsa.debian.org/ruby-team/ruby-joiner.git Vcs-Browser: https://salsa.debian.org/ruby-team/ruby-joiner Homepage: https://github.com/pat/joiner Testsuite: autopkgtest-pkg-ruby XS-Ruby-Versions: all +Rules-Requires-Root: no Package: ruby-joiner Architecture: all XB-Ruby-Versions: ${ruby:Versions} -Depends: ruby | ruby-interpreter, - ruby-activerecord, +Depends: ruby-activerecord, ${misc:Depends}, ${shlibs:Depends} Description: builds activerecord joins from association paths diff -Nru ruby-joiner-0.4.2/debian/copyright ruby-joiner-0.4.2/debian/copyright --- ruby-joiner-0.4.2/debian/copyright 2018-12-06 14:00:51.000000000 +0000 +++ ruby-joiner-0.4.2/debian/copyright 2020-02-21 15:55:49.000000000 +0000 @@ -1,4 +1,4 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: joiner Source: https://github.com/pat/joiner diff -Nru ruby-joiner-0.4.2/debian/patches/0003-Relax-version-of-some-dependencies.patch ruby-joiner-0.4.2/debian/patches/0003-Relax-version-of-some-dependencies.patch --- ruby-joiner-0.4.2/debian/patches/0003-Relax-version-of-some-dependencies.patch 1970-01-01 00:00:00.000000000 +0000 +++ ruby-joiner-0.4.2/debian/patches/0003-Relax-version-of-some-dependencies.patch 2020-02-21 15:55:49.000000000 +0000 @@ -0,0 +1,21 @@ +From: Lucas Kanashiro +Date: Fri, 21 Feb 2020 12:13:45 -0300 +Subject: Relax version of some dependencies + +--- + joiner.gemspec | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/joiner.gemspec b/joiner.gemspec +index c30b0dc..e6445e0 100644 +--- a/joiner.gemspec ++++ b/joiner.gemspec +@@ -17,6 +17,6 @@ Gem::Specification.new do |spec| + + spec.add_development_dependency 'combustion', '>= 0.8' + spec.add_development_dependency 'rails', '>= 5.2.0' +- spec.add_development_dependency 'rspec-rails', '~> 3' +- spec.add_development_dependency 'sqlite3', '~> 1.3.8' ++ spec.add_development_dependency 'rspec-rails', '>= 3' ++ spec.add_development_dependency 'sqlite3', '~> 1.3' + end diff -Nru ruby-joiner-0.4.2/debian/patches/series ruby-joiner-0.4.2/debian/patches/series --- ruby-joiner-0.4.2/debian/patches/series 2019-01-22 08:24:15.000000000 +0000 +++ ruby-joiner-0.4.2/debian/patches/series 2020-02-21 15:55:49.000000000 +0000 @@ -1,2 +1,3 @@ drop-git-in-gemspec.patch relax-combustion-version.patch +0003-Relax-version-of-some-dependencies.patch