diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-01-03 14:18:34 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-01-12 22:03:31 +0000 |
| commit | d0c17bff67601624c44fe5cc93c95d54d9cfc7f0 (patch) | |
| tree | d0ab9bcb42e2f95b919ae25149b9d5700bb772a0 | |
| parent | 3731372bd159e47a27a79ec4d1d43fcafb24f871 (diff) | |
| download | poky-d0c17bff67601624c44fe5cc93c95d54d9cfc7f0.tar.gz | |
webkitgtk: Add reproducibility fix
When the date rolled from one year to another this highlighted a reproducibility
issue. This could be better fixed by using SOURCE_DATE_EPOCH from the environment
but I'm not sure how you do that in ruby. Help from someone with that knowledge
to submit that upstream very welcome.
(From OE-Core rev: 99f8751a9b8a8dbc669594d57cf855130980f179)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 4d561c98f4d2e68d595aae4b03df1420cb01c3f7)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-sato/webkit/webkitgtk/reproducibility.patch | 22 | ||||
| -rw-r--r-- | meta/recipes-sato/webkit/webkitgtk_2.32.3.bb | 1 |
2 files changed, 23 insertions, 0 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk/reproducibility.patch b/meta/recipes-sato/webkit/webkitgtk/reproducibility.patch new file mode 100644 index 0000000000..e866a1a193 --- /dev/null +++ b/meta/recipes-sato/webkit/webkitgtk/reproducibility.patch | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | Injection a year based on the current date isn't reproducible. Hack this | ||
| 2 | to a specific year for now for reproducibilty and to avoid autobuilder failures. | ||
| 3 | |||
| 4 | The correct fix would be to use SOURCE_DATE_EPOCH from the environment and | ||
| 5 | then this could be submitted upstream, sadly my ruby isn't up to that. | ||
| 6 | |||
| 7 | Upstream-Status: Pending [could be reworked] | ||
| 8 | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> | ||
| 9 | |||
| 10 | Index: webkitgtk-2.34.2/Source/JavaScriptCore/generator/GeneratedFile.rb | ||
| 11 | =================================================================== | ||
| 12 | --- webkitgtk-2.34.2.orig/Source/JavaScriptCore/generator/GeneratedFile.rb | ||
| 13 | +++ webkitgtk-2.34.2/Source/JavaScriptCore/generator/GeneratedFile.rb | ||
| 14 | @@ -25,7 +25,7 @@ require 'date' | ||
| 15 | require 'digest' | ||
| 16 | |||
| 17 | $LICENSE = <<-EOF | ||
| 18 | -Copyright (C) #{Date.today.year} Apple Inc. All rights reserved. | ||
| 19 | +Copyright (C) 2021 Apple Inc. All rights reserved. | ||
| 20 | |||
| 21 | Redistribution and use in source and binary forms, with or without | ||
| 22 | modification, are permitted provided that the following conditions | ||
diff --git a/meta/recipes-sato/webkit/webkitgtk_2.32.3.bb b/meta/recipes-sato/webkit/webkitgtk_2.32.3.bb index 1f3f7a9c00..bab1c17902 100644 --- a/meta/recipes-sato/webkit/webkitgtk_2.32.3.bb +++ b/meta/recipes-sato/webkit/webkitgtk_2.32.3.bb | |||
| @@ -19,6 +19,7 @@ SRC_URI = "https://www.webkitgtk.org/releases/${BPN}-${PV}.tar.xz \ | |||
| 19 | file://reduce-memory-overheads.patch \ | 19 | file://reduce-memory-overheads.patch \ |
| 20 | file://musl-lower-stack-usage.patch \ | 20 | file://musl-lower-stack-usage.patch \ |
| 21 | file://0001-MiniBrowser-Fix-reproduciblity.patch \ | 21 | file://0001-MiniBrowser-Fix-reproduciblity.patch \ |
| 22 | file://reproducibility.patch \ | ||
| 22 | " | 23 | " |
| 23 | 24 | ||
| 24 | SRC_URI[sha256sum] = "c1f496f5ac654efe4cef62fbd4f2fbeeef265a07c5e7419e5d2900bfeea52cbc" | 25 | SRC_URI[sha256sum] = "c1f496f5ac654efe4cef62fbd4f2fbeeef265a07c5e7419e5d2900bfeea52cbc" |
