~ruther/guix-local

ref: 86919a3b4336ebf4795cd890e309b0527b1e1667 guix-local/gnu/packages/patches/python-3-deterministic-build-info.patch -rw-r--r-- 444 bytes
86919a3b — Mathieu Lirzin gnu: clojure-tools-analyzer: Update to 1.2.1. 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Always provide the same date and time in 'Py_GetBuildInfo'.
This is the information shown at the REPL and in 'sys.version'.
We cannot pass it in CPPFLAGS due to whitespace in the DATE string.

--- a/Modules/getbuildinfo.c
+++ b/Modules/getbuildinfo.c
@@ -4,6 +4,10 @@
 #include <stdio.h>
 #endif
 
+/* Deterministic date and time.  */
+#define DATE "Jan  1 1970"
+#define TIME "00:00:01"
+
 #ifndef DATE
 #ifdef __DATE__
 #define DATE __DATE__