Andrew Geissler | 220dafd | 2023-10-04 10:18:08 -0500 | [diff] [blame] | 1 | From 3b25aac4240d8af8bed3b0113110b36980370a98 Mon Sep 17 00:00:00 2001 |
| 2 | From: Richard Purdie <richard.purdie@linuxfoundation.org> |
| 3 | Date: Thu, 27 Jul 2023 22:09:06 +0200 |
| 4 | Subject: [PATCH] webkitgtk3: add recipe |
| 5 | |
Patrick Williams | 2a25492 | 2023-08-11 09:48:11 -0500 | [diff] [blame] | 6 | Injection a year based on the current date isn't reproducible. Hack this |
| 7 | to a specific year for now for reproducibilty and to avoid autobuilder failures. |
| 8 | |
| 9 | The correct fix would be to use SOURCE_DATE_EPOCH from the environment and |
| 10 | then this could be submitted upstream, sadly my ruby isn't up to that. |
| 11 | |
| 12 | Upstream-Status: Pending [could be reworked] |
| 13 | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> |
| 14 | |
Andrew Geissler | 220dafd | 2023-10-04 10:18:08 -0500 | [diff] [blame] | 15 | --- |
| 16 | Source/JavaScriptCore/generator/GeneratedFile.rb | 2 +- |
| 17 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 18 | |
| 19 | diff --git a/Source/JavaScriptCore/generator/GeneratedFile.rb b/Source/JavaScriptCore/generator/GeneratedFile.rb |
| 20 | index 6ed2b6e4..86a28286 100644 |
| 21 | --- a/Source/JavaScriptCore/generator/GeneratedFile.rb |
| 22 | +++ b/Source/JavaScriptCore/generator/GeneratedFile.rb |
Patrick Williams | 2a25492 | 2023-08-11 09:48:11 -0500 | [diff] [blame] | 23 | @@ -25,7 +25,7 @@ require 'date' |
| 24 | require 'digest' |
| 25 | |
| 26 | $LICENSE = <<-EOF |
| 27 | -Copyright (C) #{Date.today.year} Apple Inc. All rights reserved. |
| 28 | +Copyright (C) 2021 Apple Inc. All rights reserved. |
| 29 | |
| 30 | Redistribution and use in source and binary forms, with or without |
| 31 | modification, are permitted provided that the following conditions |