jolt 0.9.390__py3-none-any.whl → 0.9.392__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- jolt/cli.py +1 -1
- jolt/tools.py +3 -0
- jolt/utils.py +10 -1
- jolt/version.py +1 -1
- {jolt-0.9.390.dist-info → jolt-0.9.392.dist-info}/METADATA +1 -1
- {jolt-0.9.390.dist-info → jolt-0.9.392.dist-info}/RECORD +9 -9
- {jolt-0.9.390.dist-info → jolt-0.9.392.dist-info}/WHEEL +1 -1
- {jolt-0.9.390.dist-info → jolt-0.9.392.dist-info}/entry_points.txt +0 -0
- {jolt-0.9.390.dist-info → jolt-0.9.392.dist-info}/top_level.txt +0 -0
jolt/cli.py
CHANGED
|
@@ -375,7 +375,7 @@ def build(ctx, task, network, keep_going, default, local,
|
|
|
375
375
|
# If asked to force rebuild, taint all goal tasks
|
|
376
376
|
if force:
|
|
377
377
|
for goal in dag.goals:
|
|
378
|
-
goal.taint()
|
|
378
|
+
goal.get_extended_task().taint()
|
|
379
379
|
|
|
380
380
|
# Collect information about artifact presence before starting prune or build
|
|
381
381
|
acache.precheck(dag.persistent_artifacts, remote=not local)
|
jolt/tools.py
CHANGED
|
@@ -1546,6 +1546,9 @@ class Tools(object):
|
|
|
1546
1546
|
refuses to terminate, it will be killed after an additional
|
|
1547
1547
|
10 seconds have passed. Default: None.
|
|
1548
1548
|
|
|
1549
|
+
Returns:
|
|
1550
|
+
str: stdout from command unless output=False
|
|
1551
|
+
|
|
1549
1552
|
Example:
|
|
1550
1553
|
|
|
1551
1554
|
.. code-block:: python
|
jolt/utils.py
CHANGED
|
@@ -415,7 +415,16 @@ def delayed_signal(signum):
|
|
|
415
415
|
|
|
416
416
|
@contextlib.contextmanager
|
|
417
417
|
def delayed_interrupt():
|
|
418
|
-
|
|
418
|
+
if hasattr(signal, 'pthread_sigmask'):
|
|
419
|
+
try:
|
|
420
|
+
# Temporarily block the SIGINT signal
|
|
421
|
+
signal.pthread_sigmask(signal.SIG_BLOCK, {signal.SIGINT})
|
|
422
|
+
yield
|
|
423
|
+
finally:
|
|
424
|
+
# Unblock the SIGINT signal after the code block
|
|
425
|
+
signal.pthread_sigmask(signal.SIG_UNBLOCK, {signal.SIGINT})
|
|
426
|
+
else:
|
|
427
|
+
# Fallback for systems without pthread_sigmask
|
|
419
428
|
yield
|
|
420
429
|
|
|
421
430
|
|
jolt/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.9.
|
|
1
|
+
__version__ = "0.9.392"
|
|
@@ -2,7 +2,7 @@ jolt/__init__.py,sha256=C1WNj-iUNT1gtK2v7zxlnyMLW9dsYcM_yzlltJEYY6Y,3267
|
|
|
2
2
|
jolt/__main__.py,sha256=sAASLJ5dhK8jTKwh1vWAGQ2-qgLEgrAQlR-hIC75Ze0,1670
|
|
3
3
|
jolt/cache.py,sha256=rzacqo-Foq6yD3-k2aazxAQszYX2XK96sdPzegfV-og,79402
|
|
4
4
|
jolt/chroot.py,sha256=lnejhnjO3takDBZewBOvVlN2e8GWKhXnjFlqQp_zAJ4,4666
|
|
5
|
-
jolt/cli.py,sha256=
|
|
5
|
+
jolt/cli.py,sha256=CBMvk7u9UPCMZJ9WEU6juh6vDu3t_ruF4Usx9ck6cSs,42986
|
|
6
6
|
jolt/colors.py,sha256=P6vhaILGoOn8odEwQ6-z871YQoTe3HRLgS6clavwVHs,737
|
|
7
7
|
jolt/common_pb2.py,sha256=Oe9cyZ4qNyS2aTunjiO7tAO3XVw8XkZ1M7TaTmss3bs,6335
|
|
8
8
|
jolt/common_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
@@ -21,9 +21,9 @@ jolt/options.py,sha256=BrsyKsj3sY5qogMreHGgbimQuyGjnyilCa8QXPVm1Y0,947
|
|
|
21
21
|
jolt/scheduler.py,sha256=2xehPvoJDLdv211UdP2cqqQs2M2L5Ozw2_GuE556Tjg,32513
|
|
22
22
|
jolt/tasks.py,sha256=fD-huf0h0xN5x3MjClaZMRDPuhjwHeF3SBnqXXlHjtM,115888
|
|
23
23
|
jolt/timer.py,sha256=PE-7vmsqZpF73e_cKSsrhd36-A7fJ9_XGYI_oBWJn5w,644
|
|
24
|
-
jolt/tools.py,sha256=
|
|
25
|
-
jolt/utils.py,sha256=
|
|
26
|
-
jolt/version.py,sha256=
|
|
24
|
+
jolt/tools.py,sha256=A9mbyZkp4NH9Xkroz5KKhsvn8jIqnvnogVaI4VbgM20,80171
|
|
25
|
+
jolt/utils.py,sha256=bbp5mMhQRdq7sHDAxaqVVgD4QGGWXcwMCyIgG8LvyoA,19133
|
|
26
|
+
jolt/version.py,sha256=sk8L-ugb_KBT7lDDr4VTCyuxfBzDlZfQ-zzckWweQmI,24
|
|
27
27
|
jolt/version_utils.py,sha256=tNCGT6ZmSGFHW1aw2Hx1l19m-RR1UnTN6xJV1I54KRw,3900
|
|
28
28
|
jolt/xmldom.py,sha256=SbygiDUMYczzWGxXa60ZguWS6Nztg8gDAirdbtjT15I,5982
|
|
29
29
|
jolt/bin/fstree-darwin-x86_64,sha256=i4Ppbdr7CxsEhJzWpy3GMB5Gn5ikmskh41MyUwQS3-o,29549000
|
|
@@ -85,8 +85,8 @@ jolt/templates/cxxexecutable.cmake.template,sha256=f0dg1VOFlamlF8fuHFTki5dsJ2ssS
|
|
|
85
85
|
jolt/templates/cxxlibrary.cmake.template,sha256=GMEG2G3QoY3E5fsNer52zOqgM221-abeCkV__mVbZ94,1750
|
|
86
86
|
jolt/templates/export.sh.template,sha256=PKkflGXFbq70EIsowqcnLvzbnEDnqh_WgC4E_JNT0VE,1937
|
|
87
87
|
jolt/templates/timeline.html.template,sha256=xdqvFBmhE8XRQaWgcIFBVbd__9HdRq6O-U0o276PyjU,1222
|
|
88
|
-
jolt-0.9.
|
|
89
|
-
jolt-0.9.
|
|
90
|
-
jolt-0.9.
|
|
91
|
-
jolt-0.9.
|
|
92
|
-
jolt-0.9.
|
|
88
|
+
jolt-0.9.392.dist-info/METADATA,sha256=kTc_CmciBlOKv1Vs_3bgBBuwCB9VEIsOB09_cSuP7aM,5763
|
|
89
|
+
jolt-0.9.392.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
90
|
+
jolt-0.9.392.dist-info/entry_points.txt,sha256=VZ-QH38Z9HJc1O57wfzr-soHn6exwc3N0TSrRum4tYg,44
|
|
91
|
+
jolt-0.9.392.dist-info/top_level.txt,sha256=HwzVmAwUrvCUUHRi3zUfcpdKTsdNrZmPCvsrsWSFyqE,5
|
|
92
|
+
jolt-0.9.392.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|