jolt 0.9.438__py3-none-any.whl → 0.9.440__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 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
- artifact.cxxinfo.crt = "Dynamic"
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
- artifact.cxxinfo.crt = "Dynamic"
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,6 @@ class GrpcC(Task):
55
56
  extends = "grpc"
56
57
 
57
58
  def publish(self, artifact, tools):
58
- artifact.cxxinfo.crt = "Dynamic"
59
59
  artifact.cxxinfo.libraries.append("grpc")
60
60
 
61
61
 
@@ -64,7 +64,6 @@ class GrpcCXX(Task):
64
64
  extends = "grpc"
65
65
 
66
66
  def publish(self, artifact, tools):
67
- artifact.cxxinfo.crt = "Dynamic"
68
67
  artifact.cxxinfo.libraries.append("grpc++")
69
68
 
70
69
 
jolt/pkgs/poco.py CHANGED
@@ -7,6 +7,7 @@ import os
7
7
 
8
8
  @attributes.requires("requires_git")
9
9
  @attributes.requires("requires_ssl")
10
+ @attributes.system
10
11
  @cmake.requires()
11
12
  @cmake.use_ninja()
12
13
  class Poco(cmake.CMake):
@@ -23,7 +24,8 @@ class Poco(cmake.CMake):
23
24
 
24
25
  def publish(self, artifact, tools):
25
26
  super().publish(artifact, tools)
26
- artifact.cxxinfo.crt = "Dynamic"
27
+ if self.system == "windows":
28
+ artifact.cxxinfo.msvcrt = "Dynamic"
27
29
  artifact.cxxinfo.incpaths.append("include")
28
30
  artifact.cxxinfo.libpaths.append("lib")
29
31
 
jolt/pkgs/protobuf.py CHANGED
@@ -6,6 +6,7 @@ from jolt.tasks import TaskRegistry
6
6
 
7
7
  @attributes.requires("requires_abseil")
8
8
  @attributes.requires("requires_git")
9
+ @attributes.system
9
10
  @cmake.requires()
10
11
  @cmake.use_ninja()
11
12
  class Protobuf(cmake.CMake):
@@ -30,7 +31,8 @@ class Protobuf(cmake.CMake):
30
31
 
31
32
  def publish(self, artifact, tools):
32
33
  super().publish(artifact, tools)
33
- artifact.cxxinfo.crt = "Dynamic"
34
+ if self.system == "windows":
35
+ artifact.cxxinfo.msvcrt = "Dynamic"
34
36
  artifact.cxxinfo.incpaths.append("include")
35
37
  artifact.cxxinfo.libpaths.append("lib")
36
38
 
jolt/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.9.438"
1
+ __version__ = "0.9.440"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jolt
3
- Version: 0.9.438
3
+ Version: 0.9.440
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==24.3.1
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==75.6.0
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.1
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.45.1
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=3viNfj38cCbusZuqpNmsmh4CWWHKo5z7u5v9o0Ra2wE,24
26
+ jolt/version.py,sha256=nhwdqtF-00J39LTJg8whsRkL48lPMmZ_J8mb8UVgQDw,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=Nyf5nQRM3ljbO4E0e4Qeo7cHjAyypPNI1kxMxUr2UIs,1420
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=Zcsfo9T2Tmzj5FSATmQIOoObKyYZN67KEPFGd_rdirM,2414
66
+ jolt/pkgs/grpc.py,sha256=mZgIm_9ggKba5W_Oci1p9JxfX4GX__Kh05BDXGYh_2Y,2376
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=Qvswxrn-BjrQDV_XwSmPAiP7zTTv5Amydfzr3mmIUWw,1343
114
- jolt/pkgs/protobuf.py,sha256=hIkNnB-4FDhLa99iQelXlH67y2yPkt9qACMpR9VRJvQ,2471
113
+ jolt/pkgs/poco.py,sha256=F4ZniK_hSVYkwdPxus3mUWFNNMS8hcpw66lgVkjy7Q8,1406
114
+ jolt/pkgs/protobuf.py,sha256=lgyGDpFvCx-fCqIUQlPJQVciPKrNtIDus3h8Zn9FtGE,2534
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.438.dist-info/METADATA,sha256=ECWjbSFzwkaJBnBlbiQHWKMZcvc0Zt6uZHw5SVLrSc0,7231
204
- jolt-0.9.438.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
205
- jolt-0.9.438.dist-info/entry_points.txt,sha256=VZ-QH38Z9HJc1O57wfzr-soHn6exwc3N0TSrRum4tYg,44
206
- jolt-0.9.438.dist-info/top_level.txt,sha256=HwzVmAwUrvCUUHRi3zUfcpdKTsdNrZmPCvsrsWSFyqE,5
207
- jolt-0.9.438.dist-info/RECORD,,
203
+ jolt-0.9.440.dist-info/METADATA,sha256=0yXH9qJqACiUwQsde4HcEgQw13gVxhjq3hV7cECclJU,7223
204
+ jolt-0.9.440.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
205
+ jolt-0.9.440.dist-info/entry_points.txt,sha256=VZ-QH38Z9HJc1O57wfzr-soHn6exwc3N0TSrRum4tYg,44
206
+ jolt-0.9.440.dist-info/top_level.txt,sha256=HwzVmAwUrvCUUHRi3zUfcpdKTsdNrZmPCvsrsWSFyqE,5
207
+ jolt-0.9.440.dist-info/RECORD,,
File without changes