jolt 0.9.438__py3-none-any.whl → 0.9.439__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/pkgs/abseil.py +2 -1
- jolt/pkgs/grpc.py +6 -3
- jolt/pkgs/poco.py +2 -1
- jolt/pkgs/protobuf.py +2 -1
- jolt/version.py +1 -1
- {jolt-0.9.438.dist-info → jolt-0.9.439.dist-info}/METADATA +6 -6
- {jolt-0.9.438.dist-info → jolt-0.9.439.dist-info}/RECORD +10 -10
- {jolt-0.9.438.dist-info → jolt-0.9.439.dist-info}/WHEEL +0 -0
- {jolt-0.9.438.dist-info → jolt-0.9.439.dist-info}/entry_points.txt +0 -0
- {jolt-0.9.438.dist-info → jolt-0.9.439.dist-info}/top_level.txt +0 -0
jolt/pkgs/abseil.py
CHANGED
|
@@ -24,7 +24,8 @@ class Abseil(cmake.CMake):
|
|
|
24
24
|
|
|
25
25
|
def publish(self, artifact, tools):
|
|
26
26
|
super().publish(artifact, tools)
|
|
27
|
-
|
|
27
|
+
if self.system == "windows":
|
|
28
|
+
artifact.cxxinfo.msvcrt = "Dynamic"
|
|
28
29
|
artifact.cxxinfo.incpaths.append("include")
|
|
29
30
|
artifact.cxxinfo.libpaths.append("lib")
|
|
30
31
|
if self.shared:
|
jolt/pkgs/grpc.py
CHANGED
|
@@ -45,7 +45,8 @@ class Grpc(cmake.CMake):
|
|
|
45
45
|
|
|
46
46
|
def publish(self, artifact, tools):
|
|
47
47
|
super().publish(artifact, tools)
|
|
48
|
-
|
|
48
|
+
if self.system == "windows":
|
|
49
|
+
artifact.cxxinfo.msvcrt = "Dynamic"
|
|
49
50
|
artifact.cxxinfo.incpaths.append("include")
|
|
50
51
|
artifact.cxxinfo.libpaths.append("lib")
|
|
51
52
|
|
|
@@ -55,7 +56,8 @@ class GrpcC(Task):
|
|
|
55
56
|
extends = "grpc"
|
|
56
57
|
|
|
57
58
|
def publish(self, artifact, tools):
|
|
58
|
-
|
|
59
|
+
if self.system == "windows":
|
|
60
|
+
artifact.cxxinfo.msvcrt = "Dynamic"
|
|
59
61
|
artifact.cxxinfo.libraries.append("grpc")
|
|
60
62
|
|
|
61
63
|
|
|
@@ -64,7 +66,8 @@ class GrpcCXX(Task):
|
|
|
64
66
|
extends = "grpc"
|
|
65
67
|
|
|
66
68
|
def publish(self, artifact, tools):
|
|
67
|
-
|
|
69
|
+
if self.system == "windows":
|
|
70
|
+
artifact.cxxinfo.msvcrt = "Dynamic"
|
|
68
71
|
artifact.cxxinfo.libraries.append("grpc++")
|
|
69
72
|
|
|
70
73
|
|
jolt/pkgs/poco.py
CHANGED
|
@@ -23,7 +23,8 @@ class Poco(cmake.CMake):
|
|
|
23
23
|
|
|
24
24
|
def publish(self, artifact, tools):
|
|
25
25
|
super().publish(artifact, tools)
|
|
26
|
-
|
|
26
|
+
if self.system == "windows":
|
|
27
|
+
artifact.cxxinfo.msvcrt = "Dynamic"
|
|
27
28
|
artifact.cxxinfo.incpaths.append("include")
|
|
28
29
|
artifact.cxxinfo.libpaths.append("lib")
|
|
29
30
|
|
jolt/pkgs/protobuf.py
CHANGED
|
@@ -30,7 +30,8 @@ class Protobuf(cmake.CMake):
|
|
|
30
30
|
|
|
31
31
|
def publish(self, artifact, tools):
|
|
32
32
|
super().publish(artifact, tools)
|
|
33
|
-
|
|
33
|
+
if self.system == "windows":
|
|
34
|
+
artifact.cxxinfo.msvcrt = "Dynamic"
|
|
34
35
|
artifact.cxxinfo.incpaths.append("include")
|
|
35
36
|
artifact.cxxinfo.libpaths.append("lib")
|
|
36
37
|
|
jolt/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.9.
|
|
1
|
+
__version__ = "0.9.439"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jolt
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.439
|
|
4
4
|
Summary: A task executor
|
|
5
5
|
Home-page: https://github.com/srand/jolt
|
|
6
6
|
Author: Robert Andersson
|
|
@@ -48,6 +48,7 @@ Requires-Dist: docutils==0.21.2
|
|
|
48
48
|
Requires-Dist: fasteners==0.19
|
|
49
49
|
Requires-Dist: flake8==7.1.1
|
|
50
50
|
Requires-Dist: grpcio==1.66.1
|
|
51
|
+
Requires-Dist: id==1.5.0
|
|
51
52
|
Requires-Dist: idna==3.10
|
|
52
53
|
Requires-Dist: importlib_metadata==8.5.0
|
|
53
54
|
Requires-Dist: importlib_metadata==8.5.0
|
|
@@ -69,8 +70,7 @@ Requires-Dist: nh3==0.2.19
|
|
|
69
70
|
Requires-Dist: ninja==1.11.1.1
|
|
70
71
|
Requires-Dist: packaging==24.2
|
|
71
72
|
Requires-Dist: patch-ng==1.18.1
|
|
72
|
-
Requires-Dist: pip==
|
|
73
|
-
Requires-Dist: pkginfo==1.12.0
|
|
73
|
+
Requires-Dist: pip==25.3
|
|
74
74
|
Requires-Dist: pluggy==1.5.0
|
|
75
75
|
Requires-Dist: pluginbase==1.0.1
|
|
76
76
|
Requires-Dist: protobuf==5.28.2
|
|
@@ -90,14 +90,14 @@ Requires-Dist: requests-toolbelt==1.0.0
|
|
|
90
90
|
Requires-Dist: requests==2.32.3
|
|
91
91
|
Requires-Dist: rfc3986==2.0.0
|
|
92
92
|
Requires-Dist: rich==13.9.4
|
|
93
|
-
Requires-Dist: setuptools==
|
|
93
|
+
Requires-Dist: setuptools==80.9.0
|
|
94
94
|
Requires-Dist: six==1.16.0
|
|
95
95
|
Requires-Dist: texttable==1.7.0
|
|
96
96
|
Requires-Dist: tqdm==4.66.5
|
|
97
|
-
Requires-Dist: twine==6.0
|
|
97
|
+
Requires-Dist: twine==6.2.0
|
|
98
98
|
Requires-Dist: typing_extensions==4.15.0
|
|
99
99
|
Requires-Dist: urllib3==1.26.20
|
|
100
|
-
Requires-Dist: wheel==0.
|
|
100
|
+
Requires-Dist: wheel==0.46.3
|
|
101
101
|
Requires-Dist: zipp==3.20.2
|
|
102
102
|
Requires-Dist: zstandard==0.23.0
|
|
103
103
|
Provides-Extra: allure
|
|
@@ -23,13 +23,13 @@ jolt/tasks.py,sha256=OPCWTQlTQX8tkcYnM3nqlHTETza8WVY7QEl5zCoICj0,118813
|
|
|
23
23
|
jolt/timer.py,sha256=PE-7vmsqZpF73e_cKSsrhd36-A7fJ9_XGYI_oBWJn5w,644
|
|
24
24
|
jolt/tools.py,sha256=3ipzEgYz9uWhKOSc8R9d1E1mG64tT5L_HYZVYB5k-OM,82417
|
|
25
25
|
jolt/utils.py,sha256=1CkK3WoVvkBffmUjMZ_iFXVJOwfwNpzezXBmcwd46Ck,19397
|
|
26
|
-
jolt/version.py,sha256=
|
|
26
|
+
jolt/version.py,sha256=LyfCC1vZNmyPr3dYNSyiWgx0WFg3wzJp6BtIkDaUBsY,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
|
|
30
30
|
jolt/bin/fstree-linux-x86_64,sha256=ssSdIqmX1xV21PxWYtSICqp4hfUXdYj74SWykkCIVy0,20106408
|
|
31
31
|
jolt/pkgs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
-
jolt/pkgs/abseil.py,sha256=
|
|
32
|
+
jolt/pkgs/abseil.py,sha256=gx_OE9OPybgFtkrXy9Ac4zQay2-4KaTf081zEGXiey4,1464
|
|
33
33
|
jolt/pkgs/asio.py,sha256=N8Fx_fc9RGsSoHeC2v2MhHCuBsuDBIAqnhvAM1tMhXQ,747
|
|
34
34
|
jolt/pkgs/autoconf.py,sha256=NYJWZRQc2NrXgdAko5nkAe2e4s-9yBn0yuoMRa-AEqs,1411
|
|
35
35
|
jolt/pkgs/automake.py,sha256=ZgDfTxzwWve_5QGq5iRajW15A7R-U3X_AImtcCxxu2Y,1461
|
|
@@ -63,7 +63,7 @@ jolt/pkgs/golang.py,sha256=I9zcHJqg2cWp7WVNuSkF_9HAjH79708Kz0ja6-gQOSo,1243
|
|
|
63
63
|
jolt/pkgs/googlebenchmark.py,sha256=OTXknvgWc9KqfAjlj6U--e2ts3nGWh0KfGWLLE1QpaA,575
|
|
64
64
|
jolt/pkgs/googletest.py,sha256=NueqBLYav4DefzpkQIRbBoOoIkRg5g-0yP2Y7GYvZ7Y,1403
|
|
65
65
|
jolt/pkgs/gperf.py,sha256=4EpwbPLwwHbWVlrc8UaaJwOYgvuYOPcddqy7ijdca0w,432
|
|
66
|
-
jolt/pkgs/grpc.py,sha256=
|
|
66
|
+
jolt/pkgs/grpc.py,sha256=wcayzhG7Q3vNCrqTGr5-I6OlXQQtpaERf1DtwEy03f0,2546
|
|
67
67
|
jolt/pkgs/hdf5.py,sha256=r3xRsa2mnM0lb-FW9vrERCC28uoO6KnfaQmWvtO0Mxk,506
|
|
68
68
|
jolt/pkgs/help2man.py,sha256=x4DaAi2IV8Yit0vEPrLtZ8wCg1fGaMWZl-yJD68S5Vk,424
|
|
69
69
|
jolt/pkgs/inja.py,sha256=zU1iPB9HDuQBsWk-hFW_1bAcjoPY94jfdNPeFKmP_zI,864
|
|
@@ -110,8 +110,8 @@ jolt/pkgs/paho.py,sha256=c56VO5O2dvI-1qpNDukLmY9G25izvWWp-GKWGvQ_aFM,2770
|
|
|
110
110
|
jolt/pkgs/patchelf.py,sha256=ag8A-k7a4yfY1_huIBOUVClVy5lVuji4ipNCra_VdC8,505
|
|
111
111
|
jolt/pkgs/perl.py,sha256=QkOY5y8yRtb4hFNddOQOolMyRkcQkkauKCNxIPTLWmo,1259
|
|
112
112
|
jolt/pkgs/pkgconfig.py,sha256=jctmYQuOfBqq7hofq4EjbCtv_3lHM3G7ne5B62vmcXM,2127
|
|
113
|
-
jolt/pkgs/poco.py,sha256=
|
|
114
|
-
jolt/pkgs/protobuf.py,sha256=
|
|
113
|
+
jolt/pkgs/poco.py,sha256=q6toH3e84HgmYMgHHu-r9jJkm6cTU6w8ngqkfuRrXYA,1387
|
|
114
|
+
jolt/pkgs/protobuf.py,sha256=JicYPGKB9odXYEQ02Vxi_ZwOkarfQYzDhjwykN0PGS8,2515
|
|
115
115
|
jolt/pkgs/pugixml.py,sha256=VYDF4yPD4KTfft6UPWR8b8x8glpZf0luF9gfDiEWrwA,868
|
|
116
116
|
jolt/pkgs/python.py,sha256=yXkQ1D7cTusXsYzszD1VADPuSrBb5X2sOuoGeJ4W3vs,374
|
|
117
117
|
jolt/pkgs/qt.py,sha256=cIPG9gCcV6yCCq96XcsRC826o6zKsWV0FqOwlkkFMOM,1159
|
|
@@ -200,8 +200,8 @@ jolt/templates/cxxexecutable.cmake.template,sha256=f0dg1VOFlamlF8fuHFTki5dsJ2ssS
|
|
|
200
200
|
jolt/templates/cxxlibrary.cmake.template,sha256=GMEG2G3QoY3E5fsNer52zOqgM221-abeCkV__mVbZ94,1750
|
|
201
201
|
jolt/templates/export.sh.template,sha256=PKkflGXFbq70EIsowqcnLvzbnEDnqh_WgC4E_JNT0VE,1937
|
|
202
202
|
jolt/templates/timeline.html.template,sha256=xdqvFBmhE8XRQaWgcIFBVbd__9HdRq6O-U0o276PyjU,1222
|
|
203
|
-
jolt-0.9.
|
|
204
|
-
jolt-0.9.
|
|
205
|
-
jolt-0.9.
|
|
206
|
-
jolt-0.9.
|
|
207
|
-
jolt-0.9.
|
|
203
|
+
jolt-0.9.439.dist-info/METADATA,sha256=1Pu1gqUVAjvyOREvpT6Flg8jMiIZJawt_3ji4gT5lVw,7223
|
|
204
|
+
jolt-0.9.439.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
205
|
+
jolt-0.9.439.dist-info/entry_points.txt,sha256=VZ-QH38Z9HJc1O57wfzr-soHn6exwc3N0TSrRum4tYg,44
|
|
206
|
+
jolt-0.9.439.dist-info/top_level.txt,sha256=HwzVmAwUrvCUUHRi3zUfcpdKTsdNrZmPCvsrsWSFyqE,5
|
|
207
|
+
jolt-0.9.439.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|