1From d2376d94b4d285062b67803dc3278d58c14a5297 Mon Sep 17 00:00:00 2001
2From: Lucas Kanashiro <kanashiro@debian.org>
3Date: Fri, 1 Nov 2019 15:25:17 -0300
4Subject: [PATCH] Make gemspecs reproducible
5
6Without an explicit date, they will get the current date and make the
7build unreproducible
8
9Upstream-Status: Backport [debian]
10---
11 lib/rubygems/specification.rb | 4 +++-
12 1 file changed, 3 insertions(+), 1 deletion(-)
13
14diff --git a/lib/rubygems/specification.rb b/lib/rubygems/specification.rb
15index e438669..3ce9af8 100644
16--- a/lib/rubygems/specification.rb
17+++ b/lib/rubygems/specification.rb
18@@ -1707,7 +1707,9 @@ class Gem::Specification < Gem::BasicSpecification
19                 raise(Gem::InvalidSpecificationException,
20                       "invalid date format in specification: #{date.inspect}")
21               end
22-            when Time, DateLike then
23+            when Time then
24+              Time.utc(date.utc.year, date.utc.month, date.utc.day)
25+            when DateLike then
26               Time.utc(date.year, date.month, date.day)
27             else
28               TODAY
29