1*b58112e5SPatrick WilliamsFrom d096b945113ddecaf33062296e20b6d5a007cab3 Mon Sep 17 00:00:00 2001
2*b58112e5SPatrick WilliamsFrom: Richard Purdie <richard.purdie@linuxfoundation.org>
3*b58112e5SPatrick WilliamsDate: Mon, 3 Jan 2022 14:18:34 +0000
4*b58112e5SPatrick WilliamsSubject: [PATCH] webkitgtk: Add reproducibility fix
5*b58112e5SPatrick Williams
6595f6308SAndrew GeisslerInjection a year based on the current date isn't reproducible. Hack this
7595f6308SAndrew Geisslerto a specific year for now for reproducibilty and to avoid autobuilder failures.
8595f6308SAndrew Geissler
9595f6308SAndrew GeisslerThe correct fix would be to use SOURCE_DATE_EPOCH from the environment and
10595f6308SAndrew Geisslerthen this could be submitted upstream, sadly my ruby isn't up to that.
11595f6308SAndrew Geissler
12595f6308SAndrew GeisslerUpstream-Status: Pending [could be reworked]
13595f6308SAndrew GeisslerSigned-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14*b58112e5SPatrick Williams---
15*b58112e5SPatrick Williams Source/JavaScriptCore/generator/GeneratedFile.rb | 2 +-
16*b58112e5SPatrick Williams 1 file changed, 1 insertion(+), 1 deletion(-)
17595f6308SAndrew Geissler
18*b58112e5SPatrick Williamsdiff --git a/Source/JavaScriptCore/generator/GeneratedFile.rb b/Source/JavaScriptCore/generator/GeneratedFile.rb
19*b58112e5SPatrick Williamsindex 6ed2b6e4..86a28286 100644
20*b58112e5SPatrick Williams--- a/Source/JavaScriptCore/generator/GeneratedFile.rb
21*b58112e5SPatrick Williams+++ b/Source/JavaScriptCore/generator/GeneratedFile.rb
22595f6308SAndrew Geissler@@ -25,7 +25,7 @@ require 'date'
23595f6308SAndrew Geissler require 'digest'
24595f6308SAndrew Geissler
25595f6308SAndrew Geissler $LICENSE = <<-EOF
26595f6308SAndrew Geissler-Copyright (C) #{Date.today.year} Apple Inc. All rights reserved.
27595f6308SAndrew Geissler+Copyright (C) 2021 Apple Inc. All rights reserved.
28595f6308SAndrew Geissler
29595f6308SAndrew Geissler Redistribution and use in source and binary forms, with or without
30595f6308SAndrew Geissler modification, are permitted provided that the following conditions
31