2018-05-08 11:36:29 +00:00
|
|
|
From: David Hall <dhall@wustl.edu>
|
|
|
|
|
Date: 2013-11-11 12:41:00 -0500
|
|
|
|
|
Subject: do not include build date in package
|
|
|
|
|
References:
|
|
|
|
|
Upstream: never
|
|
|
|
|
|
|
|
|
|
Patch removes including build date in binary
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
create_shadertext.py | 2 +-
|
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
2019-01-05 13:42:32 +00:00
|
|
|
--- a/create_shadertext.py
|
|
|
|
|
+++ b/create_shadertext.py
|
2020-09-01 16:26:13 +00:00
|
|
|
@@ -133,7 +133,7 @@ def create_buildinfo(outputdir, pymoldir
|
|
|
|
|
print('''
|
2018-05-08 11:36:29 +00:00
|
|
|
#define _PyMOL_BUILD_DATE %d
|
|
|
|
|
#define _PYMOL_BUILD_GIT_SHA "%s"
|
2020-09-01 16:26:13 +00:00
|
|
|
- ''' % (time.time(), sha), file=out)
|
|
|
|
|
+ ''' % (0, sha), file=out)
|
2018-05-08 11:36:29 +00:00
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
create_shadertext(*sys.argv[1:6])
|