Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Leap:15.2
python-base
reproducible.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File reproducible.patch of Package python-base
Index: Python-2.7.13/Lib/py_compile.py =================================================================== --- Python-2.7.13.orig/Lib/py_compile.py +++ Python-2.7.13/Lib/py_compile.py @@ -108,6 +108,10 @@ def compile(file, cfile=None, dfile=None timestamp = long(os.fstat(f.fileno()).st_mtime) except AttributeError: timestamp = long(os.stat(file).st_mtime) + sde = os.environ.get('SOURCE_DATE_EPOCH') + if sde and timestamp > int(sde): + timestamp = int(sde) + os.utime(file, (timestamp, timestamp)) codestring = f.read() try: codeobject = __builtin__.compile(codestring, dfile or file,'exec')
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor