forked from omniti-labs/omnios-build
-
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3367 from citrus-it/pyc
Explicitly set the embedded timestamp in .pyc files
- Loading branch information
Showing
4 changed files
with
46 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
When packaging python modules along with their compiled source, we | ||
deliberately set the timestamp attributes for both the source | ||
and compiled file so that they are not recompiled the first time | ||
root uses them (via pkg, for example). Doing so causes `pkg validate` | ||
errors and slows down the initial invocation. | ||
|
||
However, the timestamp and size of the .py file is also embedded within | ||
the .pyc header. This patch allows overriding that embedded timestamp | ||
with a value of our choosing. See lib/functions.sh for how this is set. | ||
|
||
diff -wpruN --no-dereference '--exclude=*.orig' a~/Lib/py_compile.py a/Lib/py_compile.py | ||
--- a~/Lib/py_compile.py 1970-01-01 00:00:00 | ||
+++ a/Lib/py_compile.py 1970-01-01 00:00:00 | ||
@@ -159,6 +159,11 @@ def compile(file, cfile=None, dfile=None | ||
pass | ||
if invalidation_mode == PycInvalidationMode.TIMESTAMP: | ||
source_stats = loader.path_stats(file) | ||
+ if fpepoch := os.environ.get('FORCE_PYC_TIMESTAMP'): | ||
+ try: | ||
+ source_stats['mtime'] = int(fpepoch) | ||
+ except ValueError: | ||
+ raise ValueError("FORCE_PYC_TIMESTAMP is not a valid integer") | ||
bytecode = importlib._bootstrap_external._code_to_timestamp_pyc( | ||
code, source_stats['mtime'], source_stats['size']) | ||
else: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters