jolt 0.9.452__py3-none-any.whl → 0.9.457__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
@@ -13,6 +13,7 @@ class Abseil(cmake.CMake):
13
13
 
14
14
  name = "abseil"
15
15
  version = Parameter("20250814.1")
16
+ pic = BooleanParameter(False, help="Build with position independent code.")
16
17
  shared = BooleanParameter(False, help="Build shared libraries")
17
18
  requires_git = ["git:url=https://github.com/abseil/abseil-cpp.git,rev={version}"]
18
19
  srcdir = "{git[abseil-cpp]}"
@@ -20,6 +21,7 @@ class Abseil(cmake.CMake):
20
21
  "ABSL_MSVC_STATIC_RUNTIME=OFF",
21
22
  "BUILD_SHARED_LIBS={shared[ON,OFF]}",
22
23
  "CMAKE_CXX_STANDARD=17",
24
+ "CMAKE_POSITION_INDEPENDENT_CODE={pic[ON,OFF]}",
23
25
  ]
24
26
 
25
27
  def publish(self, artifact, tools):
jolt/pkgs/blake3.py CHANGED
@@ -1,4 +1,4 @@
1
- from jolt import attributes, Parameter
1
+ from jolt import attributes, BooleanParameter, Parameter
2
2
  from jolt.plugins import cmake, git
3
3
  from jolt.tasks import TaskRegistry
4
4
 
@@ -8,8 +8,14 @@ from jolt.tasks import TaskRegistry
8
8
  class Blake3(cmake.CMake):
9
9
  name = "blake3"
10
10
  version = Parameter("1.8.3", help="blake3 version.")
11
+ pic = BooleanParameter(False, help="Build with position independent code.")
12
+ shared = BooleanParameter(False, help="Build shared libraries.")
11
13
  requires_git = ["git:url=https://github.com/BLAKE3-team/BLAKE3.git,rev={version}"]
12
14
  srcdir = "{git[BLAKE3]}/c"
15
+ options = [
16
+ "BUILD_SHARED_LIBS={shared[ON,OFF]}",
17
+ "CMAKE_POSITION_INDEPENDENT_CODE={pic[ON,OFF]}",
18
+ ]
13
19
 
14
20
 
15
21
  TaskRegistry.get().add_task_class(Blake3)
jolt/pkgs/brotli.py CHANGED
@@ -9,11 +9,13 @@ from jolt.tasks import TaskRegistry
9
9
  class Brotli(cmake.CMake):
10
10
  name = "brotli"
11
11
  version = Parameter("1.2.0", help="Brotli version.")
12
+ pic = BooleanParameter(False, help="Build with position independent code.")
12
13
  shared = BooleanParameter(False, help="Build shared libraries.")
13
14
  requires_git = ["git:url=https://github.com/google/brotli.git,rev=v{version},submodules=true"]
14
15
  srcdir = "{git[brotli]}"
15
16
  options = [
16
17
  "BUILD_SHARED_LIBS={shared[ON,OFF]}",
18
+ "CMAKE_POSITION_INDEPENDENT_CODE={pic[ON,OFF]}",
17
19
  ]
18
20
 
19
21
 
jolt/pkgs/cares.py CHANGED
@@ -11,6 +11,7 @@ from jolt.tasks import TaskRegistry
11
11
  class CAres(cmake.CMake):
12
12
  name = "c-ares"
13
13
  version = Parameter("1.34.6", help="c-ares version.")
14
+ pic = BooleanParameter(False, help="Build with position independent code.")
14
15
  shared = BooleanParameter(False, help="Build shared libraries.")
15
16
  requires_git = ["git:url=https://github.com/c-ares/c-ares.git,rev=v{version}"]
16
17
  srcdir = "{git[c-ares]}"
@@ -18,6 +19,7 @@ class CAres(cmake.CMake):
18
19
  "CARES_SHARED={shared[ON,OFF]}",
19
20
  "CARES_STATIC={shared[OFF,ON]}",
20
21
  "CARES_BUILD_TESTS=OFF",
22
+ "CMAKE_POSITION_INDEPENDENT_CODE={pic[ON,OFF]}",
21
23
  ]
22
24
 
23
25
 
jolt/pkgs/curl.py CHANGED
@@ -16,18 +16,20 @@ from jolt.tasks import TaskRegistry
16
16
  class Curl(cmake.CMake):
17
17
  name = "curl"
18
18
  version = Parameter("8.17.0", help="Curl version.")
19
+ pic = BooleanParameter(False, help="Build with position independent code.")
19
20
  shared = BooleanParameter(False, help="Build shared libraries.")
20
- requires_brotli = ["brotli"]
21
+ requires_brotli = ["brotli:pic={pic},shared={shared}"]
21
22
  requires_git = ["git:url=https://github.com/curl/curl.git,rev=curl-{_version_tag},submodules=true"]
22
- requires_ssl = ["virtual/ssl:shared={shared}"]
23
- requires_zlib = ["virtual/zlib"]
24
- requires_zstd = ["zstd"]
23
+ requires_ssl = ["virtual/ssl:pic={pic},shared={shared}"]
24
+ requires_zlib = ["virtual/zlib:pic={pic},shared={shared}"]
25
+ requires_zstd = ["zstd:pic={pic},shared={shared}"]
25
26
  srcdir = "{git[curl]}"
26
27
  options = [
27
28
  "BUILD_SHARED_LIBS={shared[ON,OFF]}",
28
29
  "CURL_USE_LIBPSL=OFF",
29
30
  "USE_LIBIDN2=OFF",
30
31
  "OPENSSL_USE_STATIC_LIBS={shared[OFF,ON]}",
32
+ "CMAKE_POSITION_INDEPENDENT_CODE={pic[ON,OFF]}",
31
33
  ]
32
34
 
33
35
  @property
jolt/pkgs/grpc.py CHANGED
@@ -19,19 +19,21 @@ from jolt.tasks import TaskRegistry
19
19
  class Grpc(cmake.CMake):
20
20
  name = "grpc"
21
21
  version = Parameter("1.76.0", help="Grpc version.")
22
+ pic = BooleanParameter(False, help="Build with position independent code.")
22
23
  shared = BooleanParameter(False, help="Build shared libraries.")
23
24
  generator = "Ninja"
24
- requires_abseil = ["abseil:shared={shared}"]
25
- requires_cares = ["c-ares:shared={shared}"]
25
+ requires_abseil = ["abseil:pic={pic},shared={shared}"]
26
+ requires_cares = ["c-ares:pic={pic},shared={shared}"]
26
27
  requires_git = ["git:url=https://github.com/grpc/grpc.git,path={buildroot}/git_grpc,rev=v{version},submodules=true"]
27
28
  requires_nasm_windows = ["nasm"]
28
- requires_protobuf = ["protobuf:shared={shared}"]
29
- requires_re2 = ["re2:shared={shared}"]
30
- requires_ssl = ["virtual/ssl:shared={shared}"]
31
- requires_zlib = ["zlib"]
29
+ requires_protobuf = ["protobuf:pic={pic},shared={shared}"]
30
+ requires_re2 = ["re2:pic={pic},shared={shared}"]
31
+ requires_ssl = ["virtual/ssl:pic={pic},shared={shared}"]
32
+ requires_zlib = ["virtual/zlib:pic={pic},shared={shared}"]
32
33
  srcdir = "{git[grpc]}"
33
34
  options = [
34
35
  "BUILD_SHARED_LIBS={shared[ON,OFF]}",
36
+ "CMAKE_POSITION_INDEPENDENT_CODE={pic[ON,OFF]}",
35
37
  "CMAKE_CXX_STANDARD=17",
36
38
  "gRPC_ABSL_PROVIDER=package",
37
39
  "gRPC_BUILD_TESTS=OFF",
jolt/pkgs/protobuf.py CHANGED
@@ -19,13 +19,15 @@ class Protobuf(cmake.CMake):
19
19
 
20
20
  name = "protobuf"
21
21
  version = Parameter("33.2", help="Protobuf version.")
22
+ pic = BooleanParameter(False, help="Build with position independent code.")
22
23
  shared = BooleanParameter(False, help="Build shared libraries")
23
- requires_abseil = ["abseil:shared={shared}"]
24
+ requires_abseil = ["abseil:pic={pic},shared={shared}"]
24
25
  requires_git = ["git:url=https://github.com/protocolbuffers/protobuf.git,rev=v{version}"]
25
26
  srcdir = "{git[protobuf]}"
26
27
  options = [
27
28
  "BUILD_SHARED_LIBS={shared[ON,OFF]}",
28
29
  "CMAKE_CXX_STANDARD=17",
30
+ "CMAKE_POSITION_INDEPENDENT_CODE={pic[ON,OFF]}",
29
31
  "protobuf_BUILD_TESTS=OFF",
30
32
  "protobuf_MSVC_STATIC_RUNTIME=OFF",
31
33
  ]
jolt/pkgs/re2.py CHANGED
@@ -12,12 +12,14 @@ from jolt.tasks import TaskRegistry
12
12
  class RE2(cmake.CMake):
13
13
  name = "re2"
14
14
  version = Parameter("2025-11-05", help="re2 version.")
15
+ pic = BooleanParameter(False, help="Build with position independent code.")
15
16
  shared = BooleanParameter(False, help="Build shared libraries.")
16
17
  requires_abseil = ["abseil:shared={shared}"]
17
18
  requires_git = ["git:url=https://github.com/google/re2.git,rev={version}"]
18
19
  srcdir = "{git[re2]}"
19
20
  options = [
20
21
  "BUILD_SHARED_LIBS={shared[ON,OFF]}",
22
+ "CMAKE_POSITION_INDEPENDENT_CODE={pic[ON,OFF]}",
21
23
  "RE2_BUILD_TESTING=OFF",
22
24
  ]
23
25
 
jolt/pkgs/ssl.py CHANGED
@@ -5,6 +5,7 @@ from jolt.tasks import TaskRegistry
5
5
 
6
6
  class VirtualSsl(Alias):
7
7
  name = "virtual/ssl"
8
+ pic = BooleanParameter(False, "Build with position independent code.")
8
9
  shared = BooleanParameter(False, help="Use shared libraries.")
9
10
  requires = ["openssl:shared={shared}"]
10
11
 
jolt/pkgs/zlib.py CHANGED
@@ -12,11 +12,13 @@ from jolt.tasks import TaskRegistry
12
12
  class Zlib(cmake.CMake):
13
13
  name = "zlib"
14
14
  version = Parameter("1.3.1", help="Zlib version.")
15
+ pic = BooleanParameter(False, "Build with position independent code.")
15
16
  shared = BooleanParameter(False, "Enable shared libraries.")
16
17
  requires_git = ["git:clean=true,url=https://github.com/madler/zlib.git,rev=v{version}"]
17
18
  srcdir = "{git[zlib]}"
18
19
  options = [
19
20
  "BUILD_SHARED_LIBS={shared[ON,OFF]}",
21
+ "CMAKE_POSITION_INDEPENDENT_CODE={pic[ON,OFF]}",
20
22
  "ZLIB_BUILD_EXAMPLES=OFF",
21
23
  ]
22
24
 
@@ -58,12 +60,14 @@ class Zlib(cmake.CMake):
58
60
  class ZlibNg(cmake.CMake):
59
61
  name = "zlib-ng"
60
62
  version = Parameter("2.3.2", help="Zlib version.")
63
+ pic = BooleanParameter(False, "Build with position independent code.")
61
64
  shared = BooleanParameter(False, "Enable shared libraries.")
62
65
  requires_git = ["git:url=https://github.com/zlib-ng/zlib-ng.git,rev={version}"]
63
66
  srcdir = "{git[zlib-ng]}"
64
67
  options = [
65
68
  "BUILD_SHARED_LIBS={shared[ON,OFF]}",
66
69
  "BUILD_TESTING=OFF",
70
+ "CMAKE_POSITION_INDEPENDENT_CODE={pic[ON,OFF]}",
67
71
  ]
68
72
 
69
73
  def publish(self, artifact, tools):
@@ -77,7 +81,9 @@ class ZlibNg(cmake.CMake):
77
81
 
78
82
  class VirtualZlib(Alias):
79
83
  name = "virtual/zlib"
80
- requires = ["zlib"]
84
+ pic = BooleanParameter(False, "Build with position independent code.")
85
+ shared = BooleanParameter(False, "Enable shared libraries.")
86
+ requires = ["zlib:pic={pic},shared={shared}"]
81
87
 
82
88
 
83
89
  TaskRegistry.get().add_task_class(Zlib)
jolt/pkgs/zstd.py CHANGED
@@ -12,10 +12,12 @@ from jolt.tasks import TaskRegistry
12
12
  class Zstd(cmake.CMake):
13
13
  name = "zstd"
14
14
  version = Parameter("ebc93b0", help="zstd version.")
15
+ pic = BooleanParameter(False, "Build with position independent code.")
15
16
  shared = BooleanParameter(False, "Enable shared libraries.")
16
17
  requires_git = ["git:url=https://github.com/facebook/zstd.git,rev={version}"]
17
18
  srcdir = "{git[zstd]}"
18
19
  options = [
20
+ "CMAKE_POSITION_INDEPENDENT_CODE={pic[ON,OFF]}",
19
21
  "ZSTD_BUILD_SHARED={shared[ON,OFF]}",
20
22
  "ZSTD_BUILD_STATIC={shared[OFF,ON]}",
21
23
  "ZSTD_BUILD_TESTS=OFF",
jolt/plugins/cache.py CHANGED
@@ -20,7 +20,7 @@ class Cache(cache.StorageProvider):
20
20
  def __init__(self, cache):
21
21
  super().__init__()
22
22
  self._cache = cache
23
- self._uri = config.get(NAME, "http_uri", "http://cache")
23
+ self._uri = config.get(NAME, "http_uri", config.get(NAME, "uri", "http://cache"))
24
24
  self._uri = self._uri.rstrip("/")
25
25
  raise_error_if(not self._uri, "Cache Service URI not configured")
26
26
  self._file_uri = self._uri + "/files"
jolt/plugins/scheduler.py CHANGED
@@ -406,7 +406,7 @@ class RemoteSession(object):
406
406
  self.factory = factory
407
407
 
408
408
  # Address of the scheduler.
409
- self.address = config.geturi(NAME, "grpc_uri", "tcp://scheduler.:9090")
409
+ self.address = config.geturi(NAME, "grpc_uri", config.geturi(NAME, "uri", "tcp://scheduler.:9090"))
410
410
  raise_error_if(self.address.scheme not in ["tcp"], "Invalid scheme in scheduler URI config: {}", self.address.scheme)
411
411
  raise_error_if(not self.address.netloc, "Invalid network address in scheduler URI config: {}", self.address.netloc)
412
412
 
@@ -159,7 +159,7 @@ def publish_artifact():
159
159
  executor.run(env)
160
160
  jolt_url = acache.location(task.artifacts[0])
161
161
  raise_error_if(not jolt_url, "Failed to deploy jolt to a remote cache")
162
- cacheUrl = config.get("http", "uri", config.get("cache", "http_uri", "") + "/files")
162
+ cacheUrl = config.get("http", "uri", config.get("cache", "http_uri", config.get("cache", "uri", "")) + "/files")
163
163
  substituteUrl = config.get("selfdeploy", "baseUri")
164
164
  if cacheUrl and substituteUrl:
165
165
  return task.identity, jolt_url.replace(cacheUrl, substituteUrl)
jolt/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.9.452"
1
+ __version__ = "0.9.457"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jolt
3
- Version: 0.9.452
3
+ Version: 0.9.457
4
4
  Summary: A task executor
5
5
  Home-page: https://github.com/srand/jolt
6
6
  Author: Robert Andersson
@@ -23,24 +23,24 @@ jolt/tasks.py,sha256=aB_W7jAXQ6tSFRTKjYtRqUWP4yHG_DW63VW25e_UjAk,118823
23
23
  jolt/timer.py,sha256=PE-7vmsqZpF73e_cKSsrhd36-A7fJ9_XGYI_oBWJn5w,644
24
24
  jolt/tools.py,sha256=C8cOmnxQ08NoYxLdwA8vfDTPnOdlJ6MoXFpwT2NRI24,82508
25
25
  jolt/utils.py,sha256=2pS9W3wCPoRjnqBohrjwaBnEelF_0FrJZHxtxfRlXgU,20693
26
- jolt/version.py,sha256=Fg1HfEWEMUadBCisnRaI9WfEC1Q385vVRIaaa85X79o,24
26
+ jolt/version.py,sha256=r-SpH3CvR4uSj-BnN4HDhR4K9SIKb7Pq3QYtjDrKbIk,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=-gu2Rh-tp28X2qWWs_cEn864rw-bTXifiO9j47Gp-a0,1710
32
+ jolt/pkgs/abseil.py,sha256=PZ5AOfaeFNTOpAej-eT9Qp39hSzHUYm0uztSEzSQIBU,1847
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
36
36
  jolt/pkgs/b2.py,sha256=N6Lv9jU3Q7t_7vlV6pjs-e5to-eDW5vjMpDD0APt78Q,1093
37
- jolt/pkgs/blake3.py,sha256=2RdpzN7fw6nm_vuTSaU_a6gdtyAZgxDBEJasj3GkPuM,434
37
+ jolt/pkgs/blake3.py,sha256=XkuzeABYzIDpL6FiUSecWZ4ajThjeJq0rFqi--zJxAI,726
38
38
  jolt/pkgs/boost.py,sha256=mJq1fB06LX_bdF8dNMce62qIpt_oV8CCCCvH-tIYmdY,4308
39
39
  jolt/pkgs/boringssl.py,sha256=q30OvIQcDvNtrJOV0_khHYIUGvzoW9oYz6ZxFZPplh4,841
40
- jolt/pkgs/brotli.py,sha256=BR19ZKiK5gBModyXCUN_EKFNDGGWLfs8DTf0nVV37ZQ,618
40
+ jolt/pkgs/brotli.py,sha256=PfNceVfw0pginQ_qsWNlRY5QKJgufayE4rDcssjA7sE,755
41
41
  jolt/pkgs/busybox.py,sha256=K8lmBVTYjMy0q-Fl76vZHfR9UwbEX_GEUA0rXqJZPQw,1258
42
42
  jolt/pkgs/bzip2.py,sha256=zIse5DEyrewaFgVp3eC2OQZPLwoppeNHDyU4qXYVUnw,1541
43
- jolt/pkgs/cares.py,sha256=ux_nGrEjVyXy3z6l8k75gk__a6oPvSB3tFrz5UPnyPs,745
43
+ jolt/pkgs/cares.py,sha256=3ZPqMPC4A_JYG9Bi8Gp3KJqtN_pgptw92KgunMHR6PE,882
44
44
  jolt/pkgs/catch2.py,sha256=DsEirQAmvH_LXBk-k2ZBzvcbQ1ruHSJ5kdSpeTqVOKM,904
45
45
  jolt/pkgs/cbindgen.py,sha256=szTLn2jK-h_3goMpo_XSdXJAtD9kyG87ogRPSlXv70w,472
46
46
  jolt/pkgs/cista.py,sha256=nGAuPfSqZPISYozKmxPA-kIO4Bbw2VtOsGGnaMI8Z3s,574
@@ -49,7 +49,7 @@ jolt/pkgs/cli11.py,sha256=iuZlqm3qN6x3cb-GUY0S-7y7N4PkKKkznzNQDRmkgS4,715
49
49
  jolt/pkgs/cmake.py,sha256=pHu_HBbfadU91jtOTsXY8USwlZDMaUzMFx3ya9Zv79Y,1323
50
50
  jolt/pkgs/cpython.py,sha256=bwmS7MUKok7-wmF5ebDchxFIPN18_W5RvdJXzAYm6bg,6614
51
51
  jolt/pkgs/crun.py,sha256=PldcmcriMi3uuZV21tv0HijM-d3IlEzx8Txnh6ZxOdE,1017
52
- jolt/pkgs/curl.py,sha256=hHMjZkYxKFASGxOBycARSNp9GfjCt8SsrRbKiYaa5Lk,1462
52
+ jolt/pkgs/curl.py,sha256=1V1GKtYX4M6wnHYB2s_jQKWdwX7lGwKc8nQt7lAHPLM,1687
53
53
  jolt/pkgs/dbus.py,sha256=1QrcZVbg2_hqwo3QWz2ZIqcYwJN6nWXpg2ylPKu7p2U,511
54
54
  jolt/pkgs/double_conversion.py,sha256=mUWjzrwyMHudf6XkCDZpomdT8TAR7eoHjf5wFhMT71U,637
55
55
  jolt/pkgs/fastfloat.py,sha256=P0iUwwiMqdqMtU9QHLgIBThd1I6qE36-zflH8pCW5yc,632
@@ -65,7 +65,7 @@ jolt/pkgs/golang.py,sha256=I9zcHJqg2cWp7WVNuSkF_9HAjH79708Kz0ja6-gQOSo,1243
65
65
  jolt/pkgs/googlebenchmark.py,sha256=OTXknvgWc9KqfAjlj6U--e2ts3nGWh0KfGWLLE1QpaA,575
66
66
  jolt/pkgs/googletest.py,sha256=r_rE_gIneMNOfjfCaE2dsN2zzNPgpKOusKXcRQPwBBc,1175
67
67
  jolt/pkgs/gperf.py,sha256=4EpwbPLwwHbWVlrc8UaaJwOYgvuYOPcddqy7ijdca0w,432
68
- jolt/pkgs/grpc.py,sha256=zx3mLzJZryM_veDdiDY9YQLLDLMUQxRJlAKdpfmnkvw,2304
68
+ jolt/pkgs/grpc.py,sha256=Q0TtxqHj4IDitxrHL8lUxE5VzPzIsR0jqeXi5rqdKkM,2525
69
69
  jolt/pkgs/hdf5.py,sha256=r3xRsa2mnM0lb-FW9vrERCC28uoO6KnfaQmWvtO0Mxk,506
70
70
  jolt/pkgs/help2man.py,sha256=x4DaAi2IV8Yit0vEPrLtZ8wCg1fGaMWZl-yJD68S5Vk,424
71
71
  jolt/pkgs/inja.py,sha256=zU1iPB9HDuQBsWk-hFW_1bAcjoPY94jfdNPeFKmP_zI,864
@@ -113,13 +113,13 @@ jolt/pkgs/patchelf.py,sha256=ag8A-k7a4yfY1_huIBOUVClVy5lVuji4ipNCra_VdC8,505
113
113
  jolt/pkgs/perl.py,sha256=QkOY5y8yRtb4hFNddOQOolMyRkcQkkauKCNxIPTLWmo,1259
114
114
  jolt/pkgs/pkgconfig.py,sha256=jctmYQuOfBqq7hofq4EjbCtv_3lHM3G7ne5B62vmcXM,2127
115
115
  jolt/pkgs/poco.py,sha256=9mhnL9UVh_xWs5gksR3LyClUOc2DBEJvc-bnpNPxUlI,1546
116
- jolt/pkgs/protobuf.py,sha256=k9v9YH3NcJs2KB8i3PKBf306-A99nIL1lL_xf5n1SEU,2462
116
+ jolt/pkgs/protobuf.py,sha256=JYXHx4Wx5o_lgG_Of4okCP6iPtXFy5inK7iS1wPpEF4,2609
117
117
  jolt/pkgs/pugixml.py,sha256=HWyaqNuwmJpPg4B9Dudy0JKQTrYR-deDfnR3J2ZR7Y0,682
118
118
  jolt/pkgs/python.py,sha256=yXkQ1D7cTusXsYzszD1VADPuSrBb5X2sOuoGeJ4W3vs,374
119
119
  jolt/pkgs/qt.py,sha256=cIPG9gCcV6yCCq96XcsRC826o6zKsWV0FqOwlkkFMOM,1159
120
120
  jolt/pkgs/rapidjson.py,sha256=OV3xYs0LkEMXMyyKQf8lAH5AZjLHBQXDyxOUdgAGkhY,673
121
121
  jolt/pkgs/rapidyaml.py,sha256=t5imEwcj-p9DjITXkLjCjQPnxMbzvfLJVtu3hNTOG3Y,725
122
- jolt/pkgs/re2.py,sha256=qxbm7mjrFQgDAU94OPlxQgpCcgP1LjkI6-ryp8atong,783
122
+ jolt/pkgs/re2.py,sha256=tj2prDEdpPP1Tz0o_TlolXO2dNNaYb0c0oQl0-RzTg4,920
123
123
  jolt/pkgs/re2c.py,sha256=6fo6kSO45LpWLLVXb4MJnZDoW-GP3U65J2UOTc5Jr-M,462
124
124
  jolt/pkgs/readline.py,sha256=5Bt-nIo8mYFE9gNalUxqfdbNRBEtnwA6UK1ar2u5lLg,520
125
125
  jolt/pkgs/rust.py,sha256=fysNMMzhUbYIq53ht15n3vcCTP0fG0pVsxY8LU1IauA,1468
@@ -130,7 +130,7 @@ jolt/pkgs/spdlog.py,sha256=3yw7DaqHRK3-4bO7ynUJrurdYS_8G1FWtpLVe58XW1g,747
130
130
  jolt/pkgs/spirv_llvm.py,sha256=2hadS48ccncD7N10ftPqoWeumMDdqVFydu1GLOLrCRY,711
131
131
  jolt/pkgs/spirv_tools.py,sha256=vyMqedXc3VOz-FUlSLAF6v7scasexQmvriIlyshA3u8,792
132
132
  jolt/pkgs/sqlite.py,sha256=EYP-22ImyP1XTiIEXUXSxwIS3lmKhGI2DpQ76ow645w,2647
133
- jolt/pkgs/ssl.py,sha256=lubGvKN4Fl3ubE9sqZb8ddKMDy96yYhtyyM29E2XjeM,328
133
+ jolt/pkgs/ssl.py,sha256=wZwOZ_K5gfP9qK-1tqJKQM-W9WH6y6pvfv7ccOSc5oA,403
134
134
  jolt/pkgs/texinfo.py,sha256=JHNZ5aJo6XCPG_yp5Xam90Zz5b4OFplIEgpDEWOKf4s,444
135
135
  jolt/pkgs/tomlplusplus.py,sha256=X5I9AeZ0D3H3nxVluVyMDEnxlhnu7ev6nKuPxWCaIcQ,720
136
136
  jolt/pkgs/wayland.py,sha256=26MCKgrENrKrcShkb1g54ZTIrtyzr3d5Rl0S8rA7Cnc,793
@@ -140,14 +140,14 @@ jolt/pkgs/xorg.py,sha256=_J_iLcT74hJROxQfMD7qJ1DZth-S6tTT-eF1NqHCwVk,13317
140
140
  jolt/pkgs/xz.py,sha256=99dX9HvKihN-z6rTpUNFDoAtOaGbnyOa-3ybIedtye8,809
141
141
  jolt/pkgs/yamlcpp.py,sha256=UoUtFm2_RA9fPO0rYwv_QV753qhQADVd2f6WqWSngAo,802
142
142
  jolt/pkgs/zeromq.py,sha256=04UymfUpKuwcXgYLcoUxQR0n-Q_vxZnVI9s9-IbL5Ow,1210
143
- jolt/pkgs/zlib.py,sha256=OOEBDnh9YSPltOtLimoDbxNG7ulTqLkwPZh5S1zFiA0,2798
144
- jolt/pkgs/zstd.py,sha256=28jARoOvitKjJFHNCNEU_bs8Pvht-ZtYR7f7wuU1C9w,990
143
+ jolt/pkgs/zlib.py,sha256=wsQaFnOWS1V7-v-iyQH94koQ5y9Ti_5Dj2Wa4RZkX2w,3228
144
+ jolt/pkgs/zstd.py,sha256=TwSbUKJmkg0QP-QOgYOhcdXII0T6sxqUH4bLDr_uWnA,1122
145
145
  jolt/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
146
  jolt/plugins/alias.py,sha256=8BXRTh1N6rGjEPk484Grelw2KPa4kLKX7LUt7bUArFI,399
147
147
  jolt/plugins/allure.py,sha256=gT46-L6ADsngemHzptALlDksp2VPRLj-0wAgPpH8qfM,10266
148
148
  jolt/plugins/autotools.py,sha256=ZIKMsmCspZbfmoDx3enelrLidXvFruAYaY2FB2k1xM4,1813
149
149
  jolt/plugins/autoweight.py,sha256=LTpma3HM1jsAx1PatDIWcddAkRw1SPhHA4Dl9H9p2lo,1245
150
- jolt/plugins/cache.py,sha256=ADDHwsqL1hU0vSN9DATBQTGi9UFCXudWcM6ScCIrpok,4247
150
+ jolt/plugins/cache.py,sha256=NKycativB88FvVqupjOm1iHuIZeNNzJiyYUuwInBXD8,4272
151
151
  jolt/plugins/cmake.py,sha256=uW314RSuoh-j6HVW8ghTJjsh3tj2K18PZr6nBeelSBU,4674
152
152
  jolt/plugins/conan.py,sha256=5d7TdQBV1dcwTFfyW-U3jrfJDTpLbnp08Ltra1zTZyc,16259
153
153
  jolt/plugins/cxx.py,sha256=UqcBIcjCphRB2ojknU4v5vRv_6i3CmIAFZS1T3dXWVc,30487
@@ -178,8 +178,8 @@ jolt/plugins/podman.py,sha256=7xrPWaJvSzsBSsEUaCwBfVtMfzx5pLUrZB7pxf8hLzs,22487
178
178
  jolt/plugins/python.py,sha256=DnouYOl2x2iZ_bnUmx5XesNIOUqSCzSg_NC6KgOZW4A,7769
179
179
  jolt/plugins/report.py,sha256=EiPuZSoxEM-fXDsHBQuRTf1xtvN_gPBodMej3E9CGx0,2695
180
180
  jolt/plugins/rust.py,sha256=xPhiUmKtAnr9RbQwkAiyFdXc3KyMrqSmo98kYtHI0rc,713
181
- jolt/plugins/scheduler.py,sha256=EzJtTUYv9bqjiDoUNX1fD1NWvXfwbm6X_BVw_vtpGLM,25312
182
- jolt/plugins/selfdeploy.py,sha256=nK8d4wsenenEzNE6jcPCVI2yl_C3amYx8-2MIrSYxCY,6957
181
+ jolt/plugins/scheduler.py,sha256=-9BRfiHerZ0R1nGNe1MfrAGTyy8Qqjd8SDf-6p_LomM,25340
182
+ jolt/plugins/selfdeploy.py,sha256=3i5akX08vB5eYD0QwWp88_ujW4DLahKv_u2XO4kUgHE,6985
183
183
  jolt/plugins/strings.py,sha256=sHDroW0srlQI1aRwu_WANkmR35sUxPvZGO28CYo-ClY,1783
184
184
  jolt/plugins/symlinks.py,sha256=u4lTcpkepf0_mr_RI85uiSkI_WAUGebAOsbH5WlAnzo,2399
185
185
  jolt/plugins/telemetry.py,sha256=xHgJVbSVRaPy67kblL4wj86mDESlFS1z3NGDJ2uDXZ8,3572
@@ -202,8 +202,8 @@ jolt/templates/cxxexecutable.cmake.template,sha256=f0dg1VOFlamlF8fuHFTki5dsJ2ssS
202
202
  jolt/templates/cxxlibrary.cmake.template,sha256=GMEG2G3QoY3E5fsNer52zOqgM221-abeCkV__mVbZ94,1750
203
203
  jolt/templates/export.sh.template,sha256=PKkflGXFbq70EIsowqcnLvzbnEDnqh_WgC4E_JNT0VE,1937
204
204
  jolt/templates/timeline.html.template,sha256=xdqvFBmhE8XRQaWgcIFBVbd__9HdRq6O-U0o276PyjU,1222
205
- jolt-0.9.452.dist-info/METADATA,sha256=AhCjkI9aq4fssBUdAPNsNrMiI19Q-JhQ4J000RX6_RQ,7252
206
- jolt-0.9.452.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
207
- jolt-0.9.452.dist-info/entry_points.txt,sha256=VZ-QH38Z9HJc1O57wfzr-soHn6exwc3N0TSrRum4tYg,44
208
- jolt-0.9.452.dist-info/top_level.txt,sha256=HwzVmAwUrvCUUHRi3zUfcpdKTsdNrZmPCvsrsWSFyqE,5
209
- jolt-0.9.452.dist-info/RECORD,,
205
+ jolt-0.9.457.dist-info/METADATA,sha256=CiXsQW_cjdYAsvn90NnSm_ZgojqOtdFWy7qq682g8SA,7252
206
+ jolt-0.9.457.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
207
+ jolt-0.9.457.dist-info/entry_points.txt,sha256=VZ-QH38Z9HJc1O57wfzr-soHn6exwc3N0TSrRum4tYg,44
208
+ jolt-0.9.457.dist-info/top_level.txt,sha256=HwzVmAwUrvCUUHRi3zUfcpdKTsdNrZmPCvsrsWSFyqE,5
209
+ jolt-0.9.457.dist-info/RECORD,,
File without changes