blob: 24268625a282ea1fbafb6081eafe154ad6dd2eee [file] [log] [blame]
Patrick Williams44b3caf2024-04-12 16:51:14 -05001From 3bc324379aa3e322bad9353da8c0064cd671cc74 Mon Sep 17 00:00:00 2001
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00002From: Lucas Kanashiro <kanashiro@debian.org>
3Date: Fri, 1 Nov 2019 15:25:17 -0300
4Subject: [PATCH] Make gemspecs reproducible
Patrick Williams93c203f2021-10-06 16:15:23 -05005
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00006Without an explicit date, they will get the current date and make the
7build unreproducible
Patrick Williams93c203f2021-10-06 16:15:23 -05008
9Upstream-Status: Backport [debian]
Patrick Williams93c203f2021-10-06 16:15:23 -050010---
11 lib/rubygems/specification.rb | 4 +++-
12 1 file changed, 3 insertions(+), 1 deletion(-)
13
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000014diff --git a/lib/rubygems/specification.rb b/lib/rubygems/specification.rb
Patrick Williams44b3caf2024-04-12 16:51:14 -050015index a0c7faa..f0722d9 100644
Patrick Williams93c203f2021-10-06 16:15:23 -050016--- a/lib/rubygems/specification.rb
17+++ b/lib/rubygems/specification.rb
Patrick Williams44b3caf2024-04-12 16:51:14 -050018@@ -1774,7 +1774,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
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000029--
Patrick Williams44b3caf2024-04-12 16:51:14 -0500302.39.2
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000031