Package: release.debian.org Severity: normal Tags: bullseye User: release.debian....@packages.debian.org Usertags: pu X-Debbugs-Cc: ruby-aws-sdk-c...@packages.debian.org, vive...@disroot.org Control: affects -1 + src:ruby-aws-sdk-core
[ Reason ] Stable version of ruby-aws-sdk-core doesn't have version file. (See #1028285) The solution was to drop fix-versions.patch which is not necessary with gem-install layout. [ Impact ] This means that any integration trying to check the version of the core gem using a debian installation cannot actually determine the version, or worse, will get whatever version is in the ENV['VERSION'] which is likely completely unrelated to AWS. [ Checklist ] [x] *all* changes are documented in the d/changelog [x] I reviewed all changes and I approve them [x] attach debdiff against the package in (old)stable [x] the issue is verified as fixed in unstable [ Changes ] --- ruby-aws-sdk-core-3.104.3/debian/changelog 2023-01-09 19:47:37.000000000 +0530 +++ ruby-aws-sdk-core-3.104.3/debian/changelog 2020-08-20 17:53:33.000000000 +0530 @@ -1,10 +1,3 @@ -ruby-aws-sdk-core (3.104.3-4) bullseye; urgency=medium - - * Team upload. - * drop fix-version.patch (Closes: #1028285) - - -- Vivek K J <vive...@disroot.org> Mon, 09 Jan 2023 19:47:37 +0530 - ruby-aws-sdk-core (3.104.3-3) unstable; urgency=medium * Team upload. diff -Nru ruby-aws-sdk-core-3.104.3/debian/patches/fix-version.patch ruby-aws-sdk-core-3.104.3/debian/patches/fix-version.patch --- ruby-aws-sdk-core-3.104.3/debian/patches/fix-version.patch 1970-01-01 05:30:00.000000000 +0530 +++ ruby-aws-sdk-core-3.104.3/debian/patches/fix-version.patch 2020-08-20 17:53:33.000000000 +0530 @@ -0,0 +1,15 @@ +Description: This patch fixes the VERSION for ruby-paperclip. +Author: Utkarsh Gupta <guptautkarsh2...@gmail.com> +Last-Update: 2019-09-10 + +--- a/lib/aws-sdk-core.rb ++++ b/lib/aws-sdk-core.rb +@@ -85,7 +85,7 @@ + + module Aws + +- CORE_GEM_VERSION = File.read(File.expand_path('../../VERSION', __FILE__)).strip ++ CORE_GEM_VERSION = ENV['VERSION'] + + @config = {} + diff -Nru ruby-aws-sdk-core-3.104.3/debian/patches/series ruby-aws-sdk-core-3.104.3/debian/patches/series --- ruby-aws-sdk-core-3.104.3/debian/patches/series 2023-01-09 19:47:26.000000000 +0530 +++ ruby-aws-sdk-core-3.104.3/debian/patches/series 2020-08-20 17:53:33.000000000 +0530 @@ -0,0 +1 @@ +fix-version.patch