Version in base suite: 1.5.3-1 Base version: ruby-i18n_1.5.3-1 Target version: ruby-i18n_1.5.3-1+deb10u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/r/ruby-i18n/ruby-i18n_1.5.3-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/r/ruby-i18n/ruby-i18n_1.5.3-1+deb10u1.dsc changelog | 18 ++++++++ control | 4 - patches/0001-disable-bundler-on-build-time-do-not-install-stuff-a.patch | 21 ++++++++++ patches/0002-gemspec-prepend-local-directory-to-the-LOAD_PATH.patch | 20 +++++++++ patches/series | 3 - patches/strip_bundler.patch | 15 ------- 6 files changed, 63 insertions(+), 18 deletions(-) diff -Nru ruby-i18n-1.5.3/debian/changelog ruby-i18n-1.5.3/debian/changelog --- ruby-i18n-1.5.3/debian/changelog 2019-02-02 12:46:00.000000000 +0000 +++ ruby-i18n-1.5.3/debian/changelog 2020-04-21 11:54:58.000000000 +0000 @@ -1,3 +1,21 @@ +ruby-i18n (1.5.3-1+deb10u1) buster; urgency=medium + + * Team upload. + * Pick up patch from unstable to fix .gemspec created and shipped. + + [ Antonio Terceiro ] + * d/patches/strip_bundler.patch: Rename to + d/patches/0001-disable-bundler-on-build-time-do-not-install-stuff-a.patch. + * d/patches/0002-gemspec-prepend-local-directory-to-the-LOAD_PATH.patch: Add + patch to avoid picking up the version number from an installed version of + the package (Closes: #927339). + * d/patches/series: Adjust. + + [ Daniel Leidert ] + * d/control (Homepage): Fix homepage-field-uses-insecure-uri. + + -- Daniel Leidert Tue, 21 Apr 2020 13:54:58 +0200 + ruby-i18n (1.5.3-1) unstable; urgency=medium * debian/watch: pull from github diff -Nru ruby-i18n-1.5.3/debian/control ruby-i18n-1.5.3/debian/control --- ruby-i18n-1.5.3/debian/control 2019-02-02 12:46:00.000000000 +0000 +++ ruby-i18n-1.5.3/debian/control 2020-04-21 11:54:58.000000000 +0000 @@ -11,9 +11,9 @@ ruby-test-declarative, ruby-test-unit, Standards-Version: 4.3.0 -Vcs-Git: https://salsa.debian.org/ruby-team/ruby-i18n.git +Vcs-Git: https://salsa.debian.org/ruby-team/ruby-i18n.git -b debian/buster Vcs-Browser: https://salsa.debian.org/ruby-team/ruby-i18n -Homepage: http://github.com/ruby-i18n/i18n +Homepage: https://github.com/ruby-i18n/i18n Testsuite: autopkgtest-pkg-ruby XS-Ruby-Versions: all Rules-Requires-Root: no diff -Nru ruby-i18n-1.5.3/debian/patches/0001-disable-bundler-on-build-time-do-not-install-stuff-a.patch ruby-i18n-1.5.3/debian/patches/0001-disable-bundler-on-build-time-do-not-install-stuff-a.patch --- ruby-i18n-1.5.3/debian/patches/0001-disable-bundler-on-build-time-do-not-install-stuff-a.patch 1970-01-01 00:00:00.000000000 +0000 +++ ruby-i18n-1.5.3/debian/patches/0001-disable-bundler-on-build-time-do-not-install-stuff-a.patch 2020-04-21 11:54:58.000000000 +0000 @@ -0,0 +1,21 @@ +From: Jonas Genannt +Date: Thu, 6 Feb 2020 18:20:06 +0100 +Subject: disable bundler on build time, do not install stuff at build time + +Forwarded: not-needed +--- + test/test_helper.rb | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/test/test_helper.rb b/test/test_helper.rb +index d4a8488..cc81aec 100644 +--- a/test/test_helper.rb ++++ b/test/test_helper.rb +@@ -11,7 +11,6 @@ class TEST_CASE + end + end + +-require 'bundler/setup' + require 'i18n' + require 'mocha/setup' + require 'test_declarative' diff -Nru ruby-i18n-1.5.3/debian/patches/0002-gemspec-prepend-local-directory-to-the-LOAD_PATH.patch ruby-i18n-1.5.3/debian/patches/0002-gemspec-prepend-local-directory-to-the-LOAD_PATH.patch --- ruby-i18n-1.5.3/debian/patches/0002-gemspec-prepend-local-directory-to-the-LOAD_PATH.patch 1970-01-01 00:00:00.000000000 +0000 +++ ruby-i18n-1.5.3/debian/patches/0002-gemspec-prepend-local-directory-to-the-LOAD_PATH.patch 2020-04-21 11:54:58.000000000 +0000 @@ -0,0 +1,20 @@ +From: Antonio Terceiro +Date: Thu, 6 Feb 2020 18:20:29 +0100 +Subject: gemspec: prepend local directory to the $LOAD_PATH + +--- + i18n.gemspec | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/i18n.gemspec b/i18n.gemspec +index 0e67209..f4211e9 100644 +--- a/i18n.gemspec ++++ b/i18n.gemspec +@@ -1,6 +1,6 @@ + # encoding: utf-8 + +-$: << File.expand_path('../lib', __FILE__) ++$:.prepend File.expand_path('../lib', __FILE__) + require 'i18n/version' + + Gem::Specification.new do |s| diff -Nru ruby-i18n-1.5.3/debian/patches/series ruby-i18n-1.5.3/debian/patches/series --- ruby-i18n-1.5.3/debian/patches/series 2019-02-02 12:46:00.000000000 +0000 +++ ruby-i18n-1.5.3/debian/patches/series 2020-04-21 11:54:58.000000000 +0000 @@ -1 +1,2 @@ -strip_bundler.patch +0001-disable-bundler-on-build-time-do-not-install-stuff-a.patch +0002-gemspec-prepend-local-directory-to-the-LOAD_PATH.patch diff -Nru ruby-i18n-1.5.3/debian/patches/strip_bundler.patch ruby-i18n-1.5.3/debian/patches/strip_bundler.patch --- ruby-i18n-1.5.3/debian/patches/strip_bundler.patch 2019-02-02 12:46:00.000000000 +0000 +++ ruby-i18n-1.5.3/debian/patches/strip_bundler.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,15 +0,0 @@ -Author: Jonas Genannt -Description: disable bundler on build time, do not install dependency on build - time via bundler -Forwarded: not-needed - ---- a/test/test_helper.rb -+++ b/test/test_helper.rb -@@ -11,7 +11,6 @@ class TEST_CASE - end - end - --require 'bundler/setup' - require 'i18n' - require 'mocha/setup' - require 'test_declarative'