8c78ae27f6
CVE-2019-5828 CVE-2019-5829 CVE-2019-5830 CVE-2019-5831 CVE-2019-5832 CVE-2019-5833 CVE-2019-5834 CVE-2019-5835 CVE-2019-5836 CVE-2019-5837 CVE-2019-5838 CVE-2019-5839 CVE-2019-5840 Update a patch for Python 3, fixes #62347. Update a GN arg to fix this warning: warning: The GN arg 'remove_webcore_debug_symbols' is deprecated and warning: will be removed April 15, 2019. Please change your args.gn warning: to use 'blink_symbol_level = 0'. https://crbug.com/943869
18 lines
849 B
Diff
18 lines
849 B
Diff
--- chromium-70.0.3538.67/build/compute_build_timestamp.py.orig 2018-11-02 16:00:34.368933077 +0200
|
|
+++ chromium-70.0.3538.67/build/compute_build_timestamp.py 2018-11-08 04:06:21.658105129 +0200
|
|
@@ -94,6 +94,14 @@
|
|
'build_type', help='The type of build', choices=('official', 'default'))
|
|
args = argument_parser.parse_args()
|
|
|
|
+ # I don't trust LASTCHANGE magic, and I definelly want something deterministic here
|
|
+ SOURCE_DATE_EPOCH = os.getenv("SOURCE_DATE_EPOCH", None)
|
|
+ if SOURCE_DATE_EPOCH is not None:
|
|
+ print(SOURCE_DATE_EPOCH)
|
|
+ return 0
|
|
+ else:
|
|
+ raise RuntimeError("SOURCE_DATE_EPOCH not set")
|
|
+
|
|
# The mtime of the revision in build/util/LASTCHANGE is stored in a file
|
|
# next to it. Read it, to get a deterministic time close to "now".
|
|
# That date is then modified as described at the top of the file so that
|