mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
chromium: fail build, if SOURCE_DATE_EPOCH not set
Also fix spacing style to conform google style
This commit is contained in:
parent
7b49bd4894
commit
d0351ad3b6
1 changed files with 6 additions and 4 deletions
|
@ -1,14 +1,16 @@
|
||||||
--- 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.orig 2018-11-02 16:00:34.368933077 +0200
|
||||||
+++ chromium-70.0.3538.67/build/compute_build_timestamp.py 2018-11-03 18:35:20.542943107 +0200
|
+++ chromium-70.0.3538.67/build/compute_build_timestamp.py 2018-11-08 04:06:21.658105129 +0200
|
||||||
@@ -94,6 +94,12 @@
|
@@ -94,6 +94,14 @@
|
||||||
'build_type', help='The type of build', choices=('official', 'default'))
|
'build_type', help='The type of build', choices=('official', 'default'))
|
||||||
args = argument_parser.parse_args()
|
args = argument_parser.parse_args()
|
||||||
|
|
||||||
+ # I don't trust LASTCHANGE magic, and I definelly want something deterministic here
|
+ # I don't trust LASTCHANGE magic, and I definelly want something deterministic here
|
||||||
+ SOURCE_DATE_EPOCH = os.getenv("SOURCE_DATE_EPOCH", None)
|
+ SOURCE_DATE_EPOCH = os.getenv("SOURCE_DATE_EPOCH", None)
|
||||||
+ if SOURCE_DATE_EPOCH is not None:
|
+ if SOURCE_DATE_EPOCH is not None:
|
||||||
+ print SOURCE_DATE_EPOCH
|
+ print SOURCE_DATE_EPOCH
|
||||||
+ return 0
|
+ return 0
|
||||||
|
+ else:
|
||||||
|
+ raise RuntimeError("SOURCE_DATE_EPOCH not set")
|
||||||
+
|
+
|
||||||
# The mtime of the revision in build/util/LASTCHANGE is stored in a file
|
# 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".
|
# next to it. Read it, to get a deterministic time close to "now".
|
||||||
|
|
Loading…
Reference in a new issue