jolt 0.9.436__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/plugins/ninja.py +5 -3
- jolt/version.py +1 -1
- {jolt-0.9.436.dist-info → jolt-0.9.439.dist-info}/METADATA +2 -2
- {jolt-0.9.436.dist-info → jolt-0.9.439.dist-info}/RECORD +11 -11
- {jolt-0.9.436.dist-info → jolt-0.9.439.dist-info}/WHEEL +0 -0
- {jolt-0.9.436.dist-info → jolt-0.9.439.dist-info}/entry_points.txt +0 -0
- {jolt-0.9.436.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/plugins/ninja.py
CHANGED
|
@@ -797,7 +797,9 @@ class OptimizationVariable(Variable):
|
|
|
797
797
|
assert type(values) is dict, "Optimization values must be dict with compiler flag mapping"
|
|
798
798
|
|
|
799
799
|
def create(self, project, writer, deps, tools):
|
|
800
|
-
value =
|
|
800
|
+
value = getattr(project, "optimize", self._default)
|
|
801
|
+
if value is not None:
|
|
802
|
+
value = str(value)
|
|
801
803
|
raise_task_error_if(
|
|
802
804
|
value not in self._values,
|
|
803
805
|
project,
|
|
@@ -1604,7 +1606,7 @@ class GNUToolchain(Toolchain):
|
|
|
1604
1606
|
"debug": "-Og",
|
|
1605
1607
|
"size": "-Os",
|
|
1606
1608
|
"release": "-O2",
|
|
1607
|
-
None: "
|
|
1609
|
+
None: "",
|
|
1608
1610
|
})
|
|
1609
1611
|
asflags = EnvironmentVariable(default="")
|
|
1610
1612
|
cflags = EnvironmentVariable(default="")
|
|
@@ -1885,7 +1887,7 @@ class MSVCToolchain(Toolchain):
|
|
|
1885
1887
|
"debug": "/Od /Zi",
|
|
1886
1888
|
"size": "/O1",
|
|
1887
1889
|
"release": "/O2 /DNDEBUG",
|
|
1888
|
-
None: "
|
|
1890
|
+
None: "",
|
|
1889
1891
|
})
|
|
1890
1892
|
win32flags = Variable("/DWIN32 /D_WINDOWS /D_WIN32_WINNT=0x0601 /EHsc")
|
|
1891
1893
|
asflags = EnvironmentVariable(default="")
|
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
|
|
@@ -97,7 +97,7 @@ Requires-Dist: tqdm==4.66.5
|
|
|
97
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
|
|
@@ -168,7 +168,7 @@ jolt/plugins/linux.py,sha256=XuJwr5UFW3_JbitXpZ3A6G_hKRLZ_uTG7-ph01kq6_M,31807
|
|
|
168
168
|
jolt/plugins/logstash.py,sha256=ShUdqSRyQL_ATlgHwLP-uI1mJXprs15knyWbk58nMFo,1847
|
|
169
169
|
jolt/plugins/meson.py,sha256=4cR1KN-319Hf8c4vrL1J33E79BZ5VNkZSZbF8zaUJoo,1580
|
|
170
170
|
jolt/plugins/ninja-compdb.py,sha256=Otxz-nQnJx-aAPuAf8-T0AOi_34ENHGb5gypGVVGFB0,10989
|
|
171
|
-
jolt/plugins/ninja.py,sha256=
|
|
171
|
+
jolt/plugins/ninja.py,sha256=9X-wo_CDyBZD4Gq2je8Yg66WxVZ8TBW-OfpjKwboLIU,111136
|
|
172
172
|
jolt/plugins/nodejs.py,sha256=HHDbvmdlqnao3qOtpCD9UY7iyTIX4gb2WxKUBtn-3cM,1879
|
|
173
173
|
jolt/plugins/paths.py,sha256=DgiPI5K5bV3lVuyNEMIjRO26iTwf6RL5-2WPQ3rSmj8,1920
|
|
174
174
|
jolt/plugins/pkgconfig.py,sha256=8shyEbs5peLavhV6TeCQJ5SlZCiXmnXLamdqkNMYLxQ,8001
|
|
@@ -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
|