jolt 0.9.430__py3-none-any.whl → 0.9.433__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/cli11.py +1 -0
- jolt/pkgs/zlib.py +20 -2
- jolt/version.py +1 -1
- {jolt-0.9.430.dist-info → jolt-0.9.433.dist-info}/METADATA +3 -3
- {jolt-0.9.430.dist-info → jolt-0.9.433.dist-info}/RECORD +8 -8
- {jolt-0.9.430.dist-info → jolt-0.9.433.dist-info}/WHEEL +0 -0
- {jolt-0.9.430.dist-info → jolt-0.9.433.dist-info}/entry_points.txt +0 -0
- {jolt-0.9.430.dist-info → jolt-0.9.433.dist-info}/top_level.txt +0 -0
jolt/pkgs/cli11.py
CHANGED
|
@@ -12,6 +12,7 @@ class CLI11(cmake.CMake):
|
|
|
12
12
|
requires_src = ["fetch:alias=src,url=https://github.com/CLIUtils/CLI11/archive/refs/tags/v{version}.tar.gz"]
|
|
13
13
|
srcdir = "{fetch[src]}/CLI11-{version}"
|
|
14
14
|
options = [
|
|
15
|
+
"CLI11_BUILD_EXAMPLES=OFF",
|
|
15
16
|
"CLI11_BUILD_TESTS=OFF",
|
|
16
17
|
]
|
|
17
18
|
|
jolt/pkgs/zlib.py
CHANGED
|
@@ -25,12 +25,30 @@ class Zlib(cmake.CMake):
|
|
|
25
25
|
artifact.cxxinfo.incpaths.append("include")
|
|
26
26
|
artifact.cxxinfo.libpaths.append("lib")
|
|
27
27
|
if self.system == "windows":
|
|
28
|
+
self.publish_windows(artifact, tools)
|
|
29
|
+
else:
|
|
30
|
+
self.publish_unix(artifact, tools)
|
|
31
|
+
|
|
32
|
+
def publish_unix(self, artifact, tools):
|
|
33
|
+
artifact.cxxinfo.libraries.append("z")
|
|
34
|
+
with tools.cwd(artifact.path, "lib"):
|
|
35
|
+
if self.shared:
|
|
36
|
+
for lib in tools.glob("*.a"):
|
|
37
|
+
tools.unlink(lib)
|
|
38
|
+
else:
|
|
39
|
+
for lib in tools.glob("*.so*") + tools.glob("*.dylib*"):
|
|
40
|
+
tools.unlink(lib)
|
|
41
|
+
|
|
42
|
+
def publish_windows(self, artifact, tools):
|
|
43
|
+
with tools.cwd(artifact.path, "lib"):
|
|
28
44
|
if self.shared:
|
|
29
45
|
artifact.cxxinfo.libraries.append("zlib")
|
|
46
|
+
for lib in tools.glob("zlibstatic.*"):
|
|
47
|
+
tools.unlink(lib)
|
|
30
48
|
else:
|
|
31
49
|
artifact.cxxinfo.libraries.append("zlibstatic")
|
|
32
|
-
|
|
33
|
-
|
|
50
|
+
for lib in tools.glob("zlib.*"):
|
|
51
|
+
tools.unlink(lib)
|
|
34
52
|
|
|
35
53
|
|
|
36
54
|
@attributes.requires("requires_git")
|
jolt/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.9.
|
|
1
|
+
__version__ = "0.9.433"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jolt
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.433
|
|
4
4
|
Summary: A task executor
|
|
5
5
|
Home-page: https://github.com/srand/jolt
|
|
6
6
|
Author: Robert Andersson
|
|
@@ -48,7 +48,6 @@ 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
|
|
52
51
|
Requires-Dist: idna==3.10
|
|
53
52
|
Requires-Dist: importlib_metadata==8.5.0
|
|
54
53
|
Requires-Dist: importlib_metadata==8.5.0
|
|
@@ -71,6 +70,7 @@ Requires-Dist: ninja==1.11.1.1
|
|
|
71
70
|
Requires-Dist: packaging==24.2
|
|
72
71
|
Requires-Dist: patch-ng==1.18.1
|
|
73
72
|
Requires-Dist: pip==25.3
|
|
73
|
+
Requires-Dist: pkginfo==1.12.0
|
|
74
74
|
Requires-Dist: pluggy==1.5.0
|
|
75
75
|
Requires-Dist: pluginbase==1.0.1
|
|
76
76
|
Requires-Dist: protobuf==5.28.2
|
|
@@ -94,7 +94,7 @@ 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.
|
|
97
|
+
Requires-Dist: twine==6.0.1
|
|
98
98
|
Requires-Dist: typing_extensions==4.15.0
|
|
99
99
|
Requires-Dist: urllib3==1.26.20
|
|
100
100
|
Requires-Dist: wheel==0.45.1
|
|
@@ -23,7 +23,7 @@ jolt/tasks.py,sha256=Lwaur_V3N-Y5dYdLtQwFQxJgA7r5pKTs2-ehPcPt8FI,118873
|
|
|
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=chMIRAnbd_kg59gMd-SDb6XfFVN2gWAVkwXzclKd8T8,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
|
|
@@ -43,7 +43,7 @@ jolt/pkgs/catch2.py,sha256=tdgpfIgSqbKqOaBS1ex6O5qYjxQOtckc-ZD1Aphqmm0,1090
|
|
|
43
43
|
jolt/pkgs/cbindgen.py,sha256=szTLn2jK-h_3goMpo_XSdXJAtD9kyG87ogRPSlXv70w,472
|
|
44
44
|
jolt/pkgs/cista.py,sha256=nGAuPfSqZPISYozKmxPA-kIO4Bbw2VtOsGGnaMI8Z3s,574
|
|
45
45
|
jolt/pkgs/clang.py,sha256=rAJG8ap0jcaL0uG9jmsKXIdD2-R5-MS5QzkVOmj0-co,1342
|
|
46
|
-
jolt/pkgs/cli11.py,sha256=
|
|
46
|
+
jolt/pkgs/cli11.py,sha256=iuZlqm3qN6x3cb-GUY0S-7y7N4PkKKkznzNQDRmkgS4,715
|
|
47
47
|
jolt/pkgs/cmake.py,sha256=pHu_HBbfadU91jtOTsXY8USwlZDMaUzMFx3ya9Zv79Y,1323
|
|
48
48
|
jolt/pkgs/cpython.py,sha256=bwmS7MUKok7-wmF5ebDchxFIPN18_W5RvdJXzAYm6bg,6614
|
|
49
49
|
jolt/pkgs/crun.py,sha256=PldcmcriMi3uuZV21tv0HijM-d3IlEzx8Txnh6ZxOdE,1017
|
|
@@ -138,7 +138,7 @@ jolt/pkgs/xorg.py,sha256=_J_iLcT74hJROxQfMD7qJ1DZth-S6tTT-eF1NqHCwVk,13317
|
|
|
138
138
|
jolt/pkgs/xz.py,sha256=43Ids5vovBCU1AbJUSci1gISK8wAdzdF4XuqVNp8_WM,995
|
|
139
139
|
jolt/pkgs/yamlcpp.py,sha256=JMX3sb8JJEy3xfUT2jZ6AlzbKr3y76QOEwwhefySvRM,988
|
|
140
140
|
jolt/pkgs/zeromq.py,sha256=F8G66qsBCK7vQhiTG-i5aygQMwi6NeszjJmEuu0NTJA,1511
|
|
141
|
-
jolt/pkgs/zlib.py,sha256=
|
|
141
|
+
jolt/pkgs/zlib.py,sha256=xHgTxjnv64X5QqlpF0wZN9ePImtS6RCpbG4hFTcKvVY,2940
|
|
142
142
|
jolt/pkgs/zstd.py,sha256=XrmXEdhwj3TU9qT2n6ZmAgPy_zNLlSJx-oIdMTuuBis,1062
|
|
143
143
|
jolt/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
144
|
jolt/plugins/alias.py,sha256=8BXRTh1N6rGjEPk484Grelw2KPa4kLKX7LUt7bUArFI,399
|
|
@@ -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.433.dist-info/METADATA,sha256=pE3yOe4C6wadkP6yNvcAYWzrsxa8noFTbkvC-FTOoBg,7229
|
|
204
|
+
jolt-0.9.433.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
205
|
+
jolt-0.9.433.dist-info/entry_points.txt,sha256=VZ-QH38Z9HJc1O57wfzr-soHn6exwc3N0TSrRum4tYg,44
|
|
206
|
+
jolt-0.9.433.dist-info/top_level.txt,sha256=HwzVmAwUrvCUUHRi3zUfcpdKTsdNrZmPCvsrsWSFyqE,5
|
|
207
|
+
jolt-0.9.433.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|