mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-15 11:30:44 +02:00
gnu: python: Make 'sys.version' deterministic.
* gnu/packages/patches/python-2-deterministic-build-info.patch, gnu/packages/patches/python-3-deterministic-build-info.patch: New files. * gnu/packages/python.scm (python-2, python): Use them. * gnu-system.am (dist_patch_DATA): Add them.
This commit is contained in:
parent
a665996f58
commit
9820a6d4a0
4 changed files with 38 additions and 0 deletions
17
gnu/packages/patches/python-2-deterministic-build-info.patch
Normal file
17
gnu/packages/patches/python-2-deterministic-build-info.patch
Normal file
|
@ -0,0 +1,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__
|
Loading…
Add table
Add a link
Reference in a new issue