jolt 0.9.172__py3-none-any.whl → 0.9.435__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.
Files changed (185) hide show
  1. jolt/__init__.py +80 -7
  2. jolt/__main__.py +9 -1
  3. jolt/bin/fstree-darwin-x86_64 +0 -0
  4. jolt/bin/fstree-linux-x86_64 +0 -0
  5. jolt/cache.py +596 -252
  6. jolt/chroot.py +36 -11
  7. jolt/cli.py +143 -130
  8. jolt/common_pb2.py +45 -45
  9. jolt/config.py +76 -40
  10. jolt/error.py +19 -4
  11. jolt/filesystem.py +2 -6
  12. jolt/graph.py +400 -82
  13. jolt/influence.py +110 -3
  14. jolt/loader.py +338 -174
  15. jolt/log.py +127 -31
  16. jolt/manifest.py +13 -46
  17. jolt/options.py +35 -11
  18. jolt/pkgs/abseil.py +42 -0
  19. jolt/pkgs/asio.py +25 -0
  20. jolt/pkgs/autoconf.py +41 -0
  21. jolt/pkgs/automake.py +41 -0
  22. jolt/pkgs/b2.py +31 -0
  23. jolt/pkgs/boost.py +111 -0
  24. jolt/pkgs/boringssl.py +32 -0
  25. jolt/pkgs/busybox.py +39 -0
  26. jolt/pkgs/bzip2.py +43 -0
  27. jolt/pkgs/cares.py +29 -0
  28. jolt/pkgs/catch2.py +36 -0
  29. jolt/pkgs/cbindgen.py +17 -0
  30. jolt/pkgs/cista.py +19 -0
  31. jolt/pkgs/clang.py +44 -0
  32. jolt/pkgs/cli11.py +24 -0
  33. jolt/pkgs/cmake.py +48 -0
  34. jolt/pkgs/cpython.py +196 -0
  35. jolt/pkgs/crun.py +29 -0
  36. jolt/pkgs/curl.py +38 -0
  37. jolt/pkgs/dbus.py +18 -0
  38. jolt/pkgs/double_conversion.py +24 -0
  39. jolt/pkgs/fastfloat.py +21 -0
  40. jolt/pkgs/ffmpeg.py +28 -0
  41. jolt/pkgs/flatbuffers.py +29 -0
  42. jolt/pkgs/fmt.py +27 -0
  43. jolt/pkgs/fstree.py +20 -0
  44. jolt/pkgs/gflags.py +18 -0
  45. jolt/pkgs/glib.py +18 -0
  46. jolt/pkgs/glog.py +25 -0
  47. jolt/pkgs/glslang.py +21 -0
  48. jolt/pkgs/golang.py +16 -11
  49. jolt/pkgs/googlebenchmark.py +18 -0
  50. jolt/pkgs/googletest.py +46 -0
  51. jolt/pkgs/gperf.py +15 -0
  52. jolt/pkgs/grpc.py +73 -0
  53. jolt/pkgs/hdf5.py +19 -0
  54. jolt/pkgs/help2man.py +14 -0
  55. jolt/pkgs/inja.py +28 -0
  56. jolt/pkgs/jsoncpp.py +31 -0
  57. jolt/pkgs/libarchive.py +43 -0
  58. jolt/pkgs/libcap.py +44 -0
  59. jolt/pkgs/libdrm.py +44 -0
  60. jolt/pkgs/libedit.py +42 -0
  61. jolt/pkgs/libevent.py +31 -0
  62. jolt/pkgs/libexpat.py +27 -0
  63. jolt/pkgs/libfastjson.py +21 -0
  64. jolt/pkgs/libffi.py +16 -0
  65. jolt/pkgs/libglvnd.py +30 -0
  66. jolt/pkgs/libogg.py +28 -0
  67. jolt/pkgs/libpciaccess.py +18 -0
  68. jolt/pkgs/libseccomp.py +21 -0
  69. jolt/pkgs/libtirpc.py +24 -0
  70. jolt/pkgs/libtool.py +42 -0
  71. jolt/pkgs/libunwind.py +35 -0
  72. jolt/pkgs/libva.py +18 -0
  73. jolt/pkgs/libvorbis.py +33 -0
  74. jolt/pkgs/libxml2.py +35 -0
  75. jolt/pkgs/libxslt.py +17 -0
  76. jolt/pkgs/libyajl.py +16 -0
  77. jolt/pkgs/llvm.py +81 -0
  78. jolt/pkgs/lua.py +54 -0
  79. jolt/pkgs/lz4.py +26 -0
  80. jolt/pkgs/m4.py +14 -0
  81. jolt/pkgs/make.py +17 -0
  82. jolt/pkgs/mesa.py +81 -0
  83. jolt/pkgs/meson.py +17 -0
  84. jolt/pkgs/mstch.py +28 -0
  85. jolt/pkgs/mysql.py +60 -0
  86. jolt/pkgs/nasm.py +49 -0
  87. jolt/pkgs/ncurses.py +30 -0
  88. jolt/pkgs/ng_log.py +25 -0
  89. jolt/pkgs/ninja.py +45 -0
  90. jolt/pkgs/nlohmann_json.py +25 -0
  91. jolt/pkgs/nodejs.py +19 -11
  92. jolt/pkgs/opencv.py +24 -0
  93. jolt/pkgs/openjdk.py +26 -0
  94. jolt/pkgs/openssl.py +103 -0
  95. jolt/pkgs/paho.py +76 -0
  96. jolt/pkgs/patchelf.py +16 -0
  97. jolt/pkgs/perl.py +42 -0
  98. jolt/pkgs/pkgconfig.py +64 -0
  99. jolt/pkgs/poco.py +39 -0
  100. jolt/pkgs/protobuf.py +77 -0
  101. jolt/pkgs/pugixml.py +27 -0
  102. jolt/pkgs/python.py +19 -0
  103. jolt/pkgs/qt.py +35 -0
  104. jolt/pkgs/rapidjson.py +26 -0
  105. jolt/pkgs/rapidyaml.py +28 -0
  106. jolt/pkgs/re2.py +30 -0
  107. jolt/pkgs/re2c.py +17 -0
  108. jolt/pkgs/readline.py +15 -0
  109. jolt/pkgs/rust.py +41 -0
  110. jolt/pkgs/sdl.py +28 -0
  111. jolt/pkgs/simdjson.py +27 -0
  112. jolt/pkgs/soci.py +46 -0
  113. jolt/pkgs/spdlog.py +29 -0
  114. jolt/pkgs/spirv_llvm.py +21 -0
  115. jolt/pkgs/spirv_tools.py +24 -0
  116. jolt/pkgs/sqlite.py +83 -0
  117. jolt/pkgs/ssl.py +12 -0
  118. jolt/pkgs/texinfo.py +15 -0
  119. jolt/pkgs/tomlplusplus.py +22 -0
  120. jolt/pkgs/wayland.py +26 -0
  121. jolt/pkgs/x11.py +58 -0
  122. jolt/pkgs/xerces_c.py +20 -0
  123. jolt/pkgs/xorg.py +360 -0
  124. jolt/pkgs/xz.py +29 -0
  125. jolt/pkgs/yamlcpp.py +30 -0
  126. jolt/pkgs/zeromq.py +47 -0
  127. jolt/pkgs/zlib.py +87 -0
  128. jolt/pkgs/zstd.py +33 -0
  129. jolt/plugins/alias.py +3 -0
  130. jolt/plugins/allure.py +2 -2
  131. jolt/plugins/autotools.py +66 -0
  132. jolt/plugins/cache.py +1 -1
  133. jolt/plugins/cmake.py +74 -6
  134. jolt/plugins/conan.py +238 -0
  135. jolt/plugins/cxxinfo.py +7 -0
  136. jolt/plugins/docker.py +76 -19
  137. jolt/plugins/email.xslt +141 -118
  138. jolt/plugins/environ.py +11 -0
  139. jolt/plugins/fetch.py +141 -0
  140. jolt/plugins/gdb.py +33 -14
  141. jolt/plugins/gerrit.py +0 -13
  142. jolt/plugins/git.py +248 -66
  143. jolt/plugins/googletest.py +1 -1
  144. jolt/plugins/http.py +1 -1
  145. jolt/plugins/libtool.py +63 -0
  146. jolt/plugins/linux.py +990 -0
  147. jolt/plugins/logstash.py +4 -4
  148. jolt/plugins/meson.py +61 -0
  149. jolt/plugins/ninja-compdb.py +96 -28
  150. jolt/plugins/ninja.py +424 -150
  151. jolt/plugins/paths.py +11 -1
  152. jolt/plugins/pkgconfig.py +219 -0
  153. jolt/plugins/podman.py +131 -87
  154. jolt/plugins/python.py +137 -0
  155. jolt/plugins/remote_execution/administration_pb2.py +27 -19
  156. jolt/plugins/remote_execution/log_pb2.py +12 -12
  157. jolt/plugins/remote_execution/scheduler_pb2.py +23 -23
  158. jolt/plugins/remote_execution/worker_pb2.py +19 -19
  159. jolt/plugins/report.py +7 -2
  160. jolt/plugins/rust.py +25 -0
  161. jolt/plugins/scheduler.py +135 -86
  162. jolt/plugins/selfdeploy/setup.py +6 -6
  163. jolt/plugins/selfdeploy.py +49 -31
  164. jolt/plugins/strings.py +35 -22
  165. jolt/plugins/symlinks.py +11 -4
  166. jolt/plugins/telemetry.py +1 -2
  167. jolt/plugins/timeline.py +13 -3
  168. jolt/scheduler.py +467 -165
  169. jolt/tasks.py +427 -111
  170. jolt/templates/timeline.html.template +44 -47
  171. jolt/timer.py +22 -0
  172. jolt/tools.py +527 -188
  173. jolt/utils.py +183 -3
  174. jolt/version.py +1 -1
  175. jolt/xmldom.py +12 -2
  176. {jolt-0.9.172.dist-info → jolt-0.9.435.dist-info}/METADATA +97 -41
  177. jolt-0.9.435.dist-info/RECORD +207 -0
  178. {jolt-0.9.172.dist-info → jolt-0.9.435.dist-info}/WHEEL +1 -1
  179. jolt/plugins/amqp.py +0 -855
  180. jolt/plugins/debian.py +0 -338
  181. jolt/plugins/repo.py +0 -253
  182. jolt/plugins/snap.py +0 -122
  183. jolt-0.9.172.dist-info/RECORD +0 -92
  184. {jolt-0.9.172.dist-info → jolt-0.9.435.dist-info}/entry_points.txt +0 -0
  185. {jolt-0.9.172.dist-info → jolt-0.9.435.dist-info}/top_level.txt +0 -0
jolt/utils.py CHANGED
@@ -1,4 +1,5 @@
1
1
  import contextlib
2
+ import ctypes
2
3
  import fnmatch
3
4
  import re
4
5
  import time
@@ -10,6 +11,9 @@ import os
10
11
  import hashlib
11
12
  from fasteners import lock, process_lock
12
13
  import json
14
+ import platform
15
+ import signal
16
+ import threading
13
17
 
14
18
 
15
19
  read_input = input
@@ -86,7 +90,7 @@ def as_stable_tuple_list(o):
86
90
 
87
91
 
88
92
  def as_human_size(size):
89
- unit_precision = [("B", 0), ("KB", 0), ("MB", 1), ("GB", 2), ("TB", 2), ("PB", 2)]
93
+ unit_precision = [("B", 0), ("KiB", 0), ("MiB", 1), ("GiB", 2), ("TiB", 2), ("PiB", 2), ("EiB", 2)]
90
94
  index = 0
91
95
  while size > 1024:
92
96
  size /= 1024
@@ -215,6 +219,10 @@ class _SafeDict(object):
215
219
  value = self.values.get(key)
216
220
  if value is None:
217
221
  value = call_and_catch(getattr, self.values.get("_instance", object()), key)
222
+ if value is None and key == "buildroot":
223
+ tools = getattr(self.values.get("_instance", object()), "tools", None)
224
+ if tools:
225
+ value = tools.buildroot
218
226
  if value is None:
219
227
  value = self._envget(key)
220
228
  if type(value) is list:
@@ -234,6 +242,8 @@ class JoltFormatter(Formatter):
234
242
  return str(value).lower()
235
243
  elif conversion == "c":
236
244
  return value()
245
+ elif conversion == "t":
246
+ return str(value).title()
237
247
  elif conversion == "j":
238
248
  return " ".join(value)
239
249
  return super().convert_field(value, conversion)
@@ -316,19 +326,24 @@ class cached:
316
326
 
317
327
  @staticmethod
318
328
  def instance(f):
329
+ f.__cached_mutex = RLock()
330
+
319
331
  def _f(self, *args, **kwargs):
320
332
  attr = "__cached_result_" + str(id(f))
321
- with cached.mutex:
333
+ with f.__cached_mutex:
322
334
  if not hasattr(self, attr):
323
335
  setattr(self, attr, f(self, *args, **kwargs))
324
336
  return getattr(self, attr)
337
+
325
338
  return _f
326
339
 
327
340
  @staticmethod
328
341
  def method(f):
342
+ f.__cached_mutex = RLock()
343
+
329
344
  def _f(*args, **kwargs):
330
345
  attr = "__cached_result_" + str(id(f))
331
- with cached.mutex:
346
+ with f.__cached_mutex:
332
347
  if not hasattr(f, attr):
333
348
  setattr(f, attr, f(*args, **kwargs))
334
349
  return getattr(f, attr)
@@ -360,6 +375,73 @@ def ignore_exception(exc=Exception):
360
375
  return contextlib.suppress(exc)
361
376
 
362
377
 
378
+ class SignalHandler(object):
379
+ def __init__(self, signum):
380
+ self.original_handler = signal.signal(signum, self._handler)
381
+ self.handlers = []
382
+
383
+ def _handler(self, signum, frame):
384
+ for handler in self.handlers:
385
+ handler.add_signal(signum, frame)
386
+ if not self.handlers and self.original_handler:
387
+ self.original_handler(signum, frame)
388
+
389
+ def new_monitor(self):
390
+ class Finalizer(object):
391
+ def __init__(self, handler):
392
+ self.handler = handler
393
+ self.signals = []
394
+
395
+ def add_signal(self, signum, frame):
396
+ self.signals.append((signum, frame))
397
+
398
+ def __call__(self):
399
+ self.handler.handlers.remove(self)
400
+ for signum, frame in self.signals:
401
+ self.handler.original_handler(signum, frame)
402
+
403
+ finalizer = Finalizer(self)
404
+ self.handlers.append(finalizer)
405
+ return finalizer
406
+
407
+
408
+ sigint_handler = SignalHandler(signal.SIGINT)
409
+
410
+
411
+ @contextlib.contextmanager
412
+ def delayed_signal(signum):
413
+ """ A context manager that delays signals until after the code block. """
414
+
415
+ finalize = sigint_handler.new_monitor()
416
+ try:
417
+ yield
418
+ finally:
419
+ finalize()
420
+
421
+
422
+ @contextlib.contextmanager
423
+ def delayed_interrupt():
424
+ if hasattr(signal, 'pthread_sigmask'):
425
+ try:
426
+ # Temporarily block the SIGINT signal
427
+ signal.pthread_sigmask(signal.SIG_BLOCK, {signal.SIGINT})
428
+ yield
429
+ finally:
430
+ # Unblock the SIGINT signal after the code block
431
+ signal.pthread_sigmask(signal.SIG_UNBLOCK, {signal.SIGINT})
432
+ else:
433
+ # Fallback for systems without pthread_sigmask
434
+ yield
435
+
436
+
437
+ def delay_interrupt(func):
438
+ @wraps(func)
439
+ def _f(*args, **kwargs):
440
+ with delayed_interrupt():
441
+ return func(*args, **kwargs)
442
+ return _f
443
+
444
+
363
445
  def Singleton(cls):
364
446
  cls._instance = None
365
447
 
@@ -373,6 +455,28 @@ def Singleton(cls):
373
455
  return cls
374
456
 
375
457
 
458
+ class IdLock(object):
459
+ """ A wrapper for multiple thread locks that are identified by a unique id. """
460
+
461
+ def __init__(self):
462
+ self._lock = RLock()
463
+ self._locks = {}
464
+
465
+ def acquire(self, id, blocking=True):
466
+ with self._lock:
467
+ if id not in self._locks:
468
+ self._locks[id] = RLock()
469
+ lock = self._locks[id]
470
+ return lock.acquire(blocking=blocking)
471
+
472
+ def release(self, id):
473
+ with self._lock:
474
+ if id in self._locks:
475
+ self._locks[id].release()
476
+ else:
477
+ raise RuntimeError("Lock not acquired: {}".format(id))
478
+
479
+
376
480
  class LockFile(object):
377
481
  def __init__(self, path, logfunc=None, *args, **kwargs):
378
482
  self._file = process_lock.InterProcessLock(os.path.join(path, "lock"))
@@ -531,3 +635,79 @@ def suffix(value, sfx):
531
635
  if type(value) is list:
532
636
  return [item + sfx for item in value]
533
637
  return value + sfx
638
+
639
+
640
+ def hostname():
641
+ """ Returns the hostname of the machine. """
642
+ import socket
643
+ return socket.gethostname()
644
+
645
+
646
+ def timeout(seconds, exception_type):
647
+ """ A context manager that enforces a timeout.
648
+
649
+ If the block of code takes longer than the specified timeout,
650
+ the context manager will raise an asyncronous TimeoutError.
651
+ """
652
+
653
+ class TimeoutContext(object):
654
+ def __init__(self, timeout, exception_type):
655
+ self._timer = threading.Timer(timeout, self._raise_timeout)
656
+ self._tid = threading.current_thread().ident
657
+ self._exc = exception_type
658
+
659
+ def _raise_timeout(self):
660
+ tid = ctypes.c_ulong(self._tid)
661
+ ret = ctypes.pythonapi.PyThreadState_SetAsyncExc(
662
+ tid, ctypes.py_object(self._exc))
663
+
664
+ if ret == 0:
665
+ raise ValueError("Invalid thread ID {self._tid}")
666
+ elif ret > 1:
667
+ ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, None)
668
+ raise SystemError("PyThreadState_SetAsyncExc failed")
669
+
670
+ def __enter__(self):
671
+ self._timer.start()
672
+ return self
673
+
674
+ def __exit__(self, exc_type, exc_value, traceback):
675
+ self._timer.cancel()
676
+ return None
677
+
678
+ return TimeoutContext(seconds, exception_type)
679
+
680
+
681
+ def platform_os_arch():
682
+ """
683
+ Returns the name of the operating system and architecture.
684
+
685
+ The values match the GOOS and GOARCH environment variables used by Go.
686
+ """
687
+ _ARCHITECTURE_DICT = {
688
+ "Windows": {
689
+ "AMD64": "amd64",
690
+ "X86": "386",
691
+ "ARM64": "arm64",
692
+ },
693
+ "Linux": {
694
+ "x86_64": "amd64",
695
+ "i686": "386",
696
+ "i386": "386",
697
+ "aarch64": "arm64",
698
+ "armv7l": "armv7",
699
+ },
700
+ "Darwin": {
701
+ "x86_64": "amd64",
702
+ "arm64": "arm64",
703
+ },
704
+ }
705
+ uname = platform.uname()
706
+ try:
707
+ system = uname.system.lower()
708
+ architecture = _ARCHITECTURE_DICT[uname.system][uname.machine]
709
+ except KeyError:
710
+ raise RuntimeError(
711
+ f"Unsupported platform: {uname.system} {uname.machine}"
712
+ ) from None
713
+ return system, architecture
jolt/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.9.172"
1
+ __version__ = "0.9.435"
jolt/xmldom.py CHANGED
@@ -49,6 +49,9 @@ class SubElement(object):
49
49
  def iter(self, *args, **kwargs):
50
50
  return self._elem.iter(*args, **kwargs)
51
51
 
52
+ def remove(self, *args, **kwargs):
53
+ return self._elem.remove(*args, **kwargs)
54
+
52
55
 
53
56
  class Attribute(object):
54
57
  def __init__(self, attribute, varname=None, child=False, values=None, base64=False, zlib=False):
@@ -147,8 +150,8 @@ class Composition(object):
147
150
  self.append(child)
148
151
  return child
149
152
 
150
- def remove(self, child, *args, **kwargs):
151
- self.remove(child._elem)
153
+ def remove(self, *args, **kwargs):
154
+ self.remove(*args, **kwargs)
152
155
 
153
156
  @property
154
157
  def get(self):
@@ -156,6 +159,13 @@ class Composition(object):
156
159
  children = [n for n in children if n.tag == name]
157
160
  return [comp_cls(elem=child) for child in children]
158
161
 
162
+ def clear(self):
163
+ children = list(self.getroot()) if isinstance(self, ElementTree) else list(self._elem)
164
+ children = [n for n in children if n.tag == name]
165
+ for child in children:
166
+ getattr(self, "remove_" + name)(child)
167
+
168
+ setattr(cls, 'clear_' + name + "s", clear)
159
169
  setattr(cls, 'create_' + name, create)
160
170
  setattr(cls, 'remove_' + name, remove)
161
171
  setattr(cls, name + 's', get)
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: jolt
3
- Version: 0.9.172
3
+ Version: 0.9.435
4
4
  Summary: A task executor
5
5
  Home-page: https://github.com/srand/jolt
6
6
  Author: Robert Andersson
@@ -21,50 +21,106 @@ Classifier: Programming Language :: Java
21
21
  Classifier: Programming Language :: JavaScript
22
22
  Classifier: Programming Language :: Python :: 3
23
23
  Requires-Python: >=3.8
24
- Requires-Dist: Jinja2 ==3.1.3
25
- Requires-Dist: MarkupSafe
26
- Requires-Dist: SecretStorage
27
- Requires-Dist: bz2file ==0.98
28
- Requires-Dist: certifi ==2023.11.17
29
- Requires-Dist: cffi ==1.16.0
30
- Requires-Dist: charset-normalizer ==3.3.2
31
- Requires-Dist: click ==8.1.7
32
- Requires-Dist: colorama ==0.4.6
33
- Requires-Dist: fasteners ==0.19
34
- Requires-Dist: grpcio ==1.60.0
35
- Requires-Dist: idna ==3.6
36
- Requires-Dist: importlib-metadata ==7.0.1
37
- Requires-Dist: importlib-metadata
38
- Requires-Dist: jaraco.classes ==3.3.0
39
- Requires-Dist: jeepney ==0.8.0
40
- Requires-Dist: keyring ==24.3.0
41
- Requires-Dist: keyrings.alt ==5.0.0
42
- Requires-Dist: lxml ==5.1.0
43
- Requires-Dist: more-itertools ==10.2.0
44
- Requires-Dist: multi-key-dict
45
- Requires-Dist: ninja-syntax ==1.7.2
46
- Requires-Dist: protobuf ==4.25.2
47
- Requires-Dist: psutil ==5.9.8
48
- Requires-Dist: pycparser ==2.21
49
- Requires-Dist: pygit2 ==1.14.0
50
- Requires-Dist: requests ==2.31.0
51
- Requires-Dist: tqdm ==4.66.1
52
- Requires-Dist: unshare ==0.22
53
- Requires-Dist: urllib3 ==1.26.18
54
- Requires-Dist: zipp ==3.17.0
24
+ Requires-Dist: Jinja2==3.1.4
25
+ Requires-Dist: Jinja2==3.1.4
26
+ Requires-Dist: MarkupSafe==2.1.5
27
+ Requires-Dist: PyJWT==2.9.0
28
+ Requires-Dist: PyYAML==6.0.2
29
+ Requires-Dist: PyYAML==6.0.2
30
+ Requires-Dist: Pygments==2.18.0
31
+ Requires-Dist: Pygments==2.18.0
32
+ Requires-Dist: SecretStorage==3.3.3
33
+ Requires-Dist: allure-python-commons==2.13.5
34
+ Requires-Dist: attrs==24.2.0
35
+ Requires-Dist: backports.tarfile==1.2.0
36
+ Requires-Dist: bottle==0.12.25
37
+ Requires-Dist: brotli==1.2.0
38
+ Requires-Dist: bz2file==0.98
39
+ Requires-Dist: certifi==2024.8.30
40
+ Requires-Dist: cffi==1.17.1
41
+ Requires-Dist: charset-normalizer==3.3.2
42
+ Requires-Dist: click==8.1.7
43
+ Requires-Dist: colorama==0.4.6
44
+ Requires-Dist: conan==2.10.2
45
+ Requires-Dist: cryptography==43.0.1
46
+ Requires-Dist: distro==1.8.0
47
+ Requires-Dist: docutils==0.21.2
48
+ Requires-Dist: fasteners==0.19
49
+ Requires-Dist: flake8==7.1.1
50
+ Requires-Dist: grpcio==1.66.1
51
+ Requires-Dist: id==1.5.0
52
+ Requires-Dist: idna==3.10
53
+ Requires-Dist: importlib_metadata==8.5.0
54
+ Requires-Dist: importlib_metadata==8.5.0
55
+ Requires-Dist: inflate64==1.0.4
56
+ Requires-Dist: jaraco.classes==3.4.0
57
+ Requires-Dist: jaraco.context==6.0.1
58
+ Requires-Dist: jaraco.functools==4.0.2
59
+ Requires-Dist: jeepney==0.8.0
60
+ Requires-Dist: keyring==25.4.1
61
+ Requires-Dist: keyrings.alt==5.0.2
62
+ Requires-Dist: lxml==5.3.0
63
+ Requires-Dist: markdown-it-py==3.0.0
64
+ Requires-Dist: mccabe==0.7.0
65
+ Requires-Dist: more-itertools==10.5.0
66
+ Requires-Dist: more-itertools==10.5.0
67
+ Requires-Dist: multi_key_dict==2.0.3
68
+ Requires-Dist: multivolumefile==0.2.3
69
+ Requires-Dist: nh3==0.2.19
70
+ Requires-Dist: ninja==1.11.1.1
71
+ Requires-Dist: packaging==24.2
72
+ Requires-Dist: patch-ng==1.18.1
73
+ Requires-Dist: pip==25.3
74
+ Requires-Dist: pluggy==1.5.0
75
+ Requires-Dist: pluginbase==1.0.1
76
+ Requires-Dist: protobuf==5.28.2
77
+ Requires-Dist: psutil==6.0.0
78
+ Requires-Dist: py7zr==1.0.0
79
+ Requires-Dist: pybcj==1.0.6
80
+ Requires-Dist: pycodestyle==2.12.1
81
+ Requires-Dist: pycparser==2.22
82
+ Requires-Dist: pycryptodomex==3.23.0
83
+ Requires-Dist: pyflakes==3.2.0
84
+ Requires-Dist: pygit2==1.15.1
85
+ Requires-Dist: pyppmd==1.2.0
86
+ Requires-Dist: python-dateutil==2.9.0.post0
87
+ Requires-Dist: pyzstd==0.18.0
88
+ Requires-Dist: readme_renderer==44.0
89
+ Requires-Dist: requests-toolbelt==1.0.0
90
+ Requires-Dist: requests==2.32.3
91
+ Requires-Dist: rfc3986==2.0.0
92
+ Requires-Dist: rich==13.9.4
93
+ Requires-Dist: setuptools==80.9.0
94
+ Requires-Dist: six==1.16.0
95
+ Requires-Dist: texttable==1.7.0
96
+ Requires-Dist: tqdm==4.66.5
97
+ Requires-Dist: twine==6.2.0
98
+ Requires-Dist: typing_extensions==4.15.0
99
+ Requires-Dist: urllib3==1.26.20
100
+ Requires-Dist: wheel==0.45.1
101
+ Requires-Dist: zipp==3.20.2
102
+ Requires-Dist: zstandard==0.23.0
55
103
  Provides-Extra: allure
56
- Requires-Dist: allure-python-commons ; extra == 'allure'
57
- Provides-Extra: amqp
58
- Requires-Dist: pika ; extra == 'amqp'
104
+ Requires-Dist: allure-python-commons; extra == "allure"
59
105
  Provides-Extra: conan
60
- Requires-Dist: conan <2.0 ; extra == 'conan'
106
+ Requires-Dist: conan>=2.0; extra == "conan"
61
107
  Provides-Extra: dev
62
- Requires-Dist: check-manifest ; extra == 'dev'
108
+ Requires-Dist: check-manifest; extra == "dev"
63
109
  Provides-Extra: doc
64
- Requires-Dist: sphinx-click ; extra == 'doc'
65
- Requires-Dist: sphinx-rtd-theme ; extra == 'doc'
110
+ Requires-Dist: sphinx-click; extra == "doc"
111
+ Requires-Dist: sphinx-rtd-theme; extra == "doc"
66
112
  Provides-Extra: test
67
- Requires-Dist: coverage ; extra == 'test'
113
+ Requires-Dist: coverage; extra == "test"
114
+ Dynamic: author
115
+ Dynamic: author-email
116
+ Dynamic: classifier
117
+ Dynamic: description
118
+ Dynamic: home-page
119
+ Dynamic: keywords
120
+ Dynamic: provides-extra
121
+ Dynamic: requires-dist
122
+ Dynamic: requires-python
123
+ Dynamic: summary
68
124
 
69
125
  Jolt
70
126
  ============================
@@ -0,0 +1,207 @@
1
+ jolt/__init__.py,sha256=C1WNj-iUNT1gtK2v7zxlnyMLW9dsYcM_yzlltJEYY6Y,3267
2
+ jolt/__main__.py,sha256=sAASLJ5dhK8jTKwh1vWAGQ2-qgLEgrAQlR-hIC75Ze0,1670
3
+ jolt/cache.py,sha256=KJHZ6Nd_rzrkQP21I8dfUr8OnstnQx2HlOe6sXCGCuM,79927
4
+ jolt/chroot.py,sha256=lnejhnjO3takDBZewBOvVlN2e8GWKhXnjFlqQp_zAJ4,4666
5
+ jolt/cli.py,sha256=9swmWPDaGpJom0aYtaoPBppKGc9EcGWC7zkrsd1aC-E,43090
6
+ jolt/colors.py,sha256=P6vhaILGoOn8odEwQ6-z871YQoTe3HRLgS6clavwVHs,737
7
+ jolt/common_pb2.py,sha256=Oe9cyZ4qNyS2aTunjiO7tAO3XVw8XkZ1M7TaTmss3bs,6335
8
+ jolt/common_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
9
+ jolt/config.py,sha256=khzo4BNfNZoClTHVJGTWLhLBLAWH7lWj5cIdxr73Phg,9981
10
+ jolt/error.py,sha256=wbYU_ip3zGHlhmjQWjEeLlmLdTpiqIeFM5zJndVQdj4,2399
11
+ jolt/expires.py,sha256=GDagfgJOlX_z2LLIFhKHBaXI96jo1S3ca2OGWQi1oj4,2330
12
+ jolt/filesystem.py,sha256=_e4tEvtRESUaaPAhkA1dwVXjllAkJnOVoj2bfA7ur-Y,5941
13
+ jolt/graph.py,sha256=7OCfz_Q00tV1ewGUKjwKIhk6nbfd0KemprFTs3n3XTQ,45978
14
+ jolt/hooks.py,sha256=jcCaNwlyFrWkXrO6MiO_roDQVohefbablfXnuQ3dmmM,11029
15
+ jolt/influence.py,sha256=uqf8jdKDOLIt2LXgW6FX7Q74d94kebiTJ6nlgMs6-hg,18786
16
+ jolt/inspection.py,sha256=QkOCXAbjJBdw1SMsb6xH_3GHXV5BcdzaGD7HrGmOJss,3931
17
+ jolt/loader.py,sha256=-WpYcYDhdZBAncgtn9MPUMudOn2dr-nsWj9KEDKet-8,19152
18
+ jolt/log.py,sha256=4QXILd54kYuzAWe1Ql80qw7G2g3upFc3o_XMkRM6Ybg,14941
19
+ jolt/manifest.py,sha256=V5fkvTE-cZt0IQbA8sBdC4WEaYrz7FEXQdSt6Uj-DWc,7256
20
+ jolt/options.py,sha256=BrsyKsj3sY5qogMreHGgbimQuyGjnyilCa8QXPVm1Y0,947
21
+ jolt/scheduler.py,sha256=2xehPvoJDLdv211UdP2cqqQs2M2L5Ozw2_GuE556Tjg,32513
22
+ jolt/tasks.py,sha256=8z-lo4e4efnJClcasLMBP8LXUjaCEWZvJOYyzv19tkk,118890
23
+ jolt/timer.py,sha256=PE-7vmsqZpF73e_cKSsrhd36-A7fJ9_XGYI_oBWJn5w,644
24
+ jolt/tools.py,sha256=3ipzEgYz9uWhKOSc8R9d1E1mG64tT5L_HYZVYB5k-OM,82417
25
+ jolt/utils.py,sha256=1CkK3WoVvkBffmUjMZ_iFXVJOwfwNpzezXBmcwd46Ck,19397
26
+ jolt/version.py,sha256=eWL2ziBtClW_7OV_5rhFXJXys6SJc7oDjU7w6mQ_n8M,24
27
+ jolt/version_utils.py,sha256=tNCGT6ZmSGFHW1aw2Hx1l19m-RR1UnTN6xJV1I54KRw,3900
28
+ jolt/xmldom.py,sha256=SbygiDUMYczzWGxXa60ZguWS6Nztg8gDAirdbtjT15I,5982
29
+ jolt/bin/fstree-darwin-x86_64,sha256=i4Ppbdr7CxsEhJzWpy3GMB5Gn5ikmskh41MyUwQS3-o,29549000
30
+ jolt/bin/fstree-linux-x86_64,sha256=ssSdIqmX1xV21PxWYtSICqp4hfUXdYj74SWykkCIVy0,20106408
31
+ jolt/pkgs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
+ jolt/pkgs/abseil.py,sha256=Nyf5nQRM3ljbO4E0e4Qeo7cHjAyypPNI1kxMxUr2UIs,1420
33
+ jolt/pkgs/asio.py,sha256=N8Fx_fc9RGsSoHeC2v2MhHCuBsuDBIAqnhvAM1tMhXQ,747
34
+ jolt/pkgs/autoconf.py,sha256=NYJWZRQc2NrXgdAko5nkAe2e4s-9yBn0yuoMRa-AEqs,1411
35
+ jolt/pkgs/automake.py,sha256=ZgDfTxzwWve_5QGq5iRajW15A7R-U3X_AImtcCxxu2Y,1461
36
+ jolt/pkgs/b2.py,sha256=N6Lv9jU3Q7t_7vlV6pjs-e5to-eDW5vjMpDD0APt78Q,1093
37
+ jolt/pkgs/boost.py,sha256=eBmVicVp0brp6puZQ3inDHQiC5MMsXQJpZDdXu_6i7o,4124
38
+ jolt/pkgs/boringssl.py,sha256=mBEEoIXaOB0C0OPWNkWsgfNOf9FFssfKnkW3Gt_aSiM,1069
39
+ jolt/pkgs/busybox.py,sha256=K8lmBVTYjMy0q-Fl76vZHfR9UwbEX_GEUA0rXqJZPQw,1258
40
+ jolt/pkgs/bzip2.py,sha256=MZIY1lri59yzhEKOtleYGhOFcIrH9rl4ZeCD_CZKdgo,1629
41
+ jolt/pkgs/cares.py,sha256=DliyTZzvjBd4E8E-UDHAOWCAX_23sBL59ebsKYikA4k,931
42
+ jolt/pkgs/catch2.py,sha256=tdgpfIgSqbKqOaBS1ex6O5qYjxQOtckc-ZD1Aphqmm0,1090
43
+ jolt/pkgs/cbindgen.py,sha256=szTLn2jK-h_3goMpo_XSdXJAtD9kyG87ogRPSlXv70w,472
44
+ jolt/pkgs/cista.py,sha256=nGAuPfSqZPISYozKmxPA-kIO4Bbw2VtOsGGnaMI8Z3s,574
45
+ jolt/pkgs/clang.py,sha256=rAJG8ap0jcaL0uG9jmsKXIdD2-R5-MS5QzkVOmj0-co,1342
46
+ jolt/pkgs/cli11.py,sha256=iuZlqm3qN6x3cb-GUY0S-7y7N4PkKKkznzNQDRmkgS4,715
47
+ jolt/pkgs/cmake.py,sha256=pHu_HBbfadU91jtOTsXY8USwlZDMaUzMFx3ya9Zv79Y,1323
48
+ jolt/pkgs/cpython.py,sha256=bwmS7MUKok7-wmF5ebDchxFIPN18_W5RvdJXzAYm6bg,6614
49
+ jolt/pkgs/crun.py,sha256=PldcmcriMi3uuZV21tv0HijM-d3IlEzx8Txnh6ZxOdE,1017
50
+ jolt/pkgs/curl.py,sha256=I77G1DS-7Xg6vAcEi8KY23fGHpAMGngpzHJp2082lmk,1211
51
+ jolt/pkgs/dbus.py,sha256=1QrcZVbg2_hqwo3QWz2ZIqcYwJN6nWXpg2ylPKu7p2U,511
52
+ jolt/pkgs/double_conversion.py,sha256=PAZ60IcWdFOKJTM6LsQlDEOq1y3pViLDD9oXO8MHwqs,823
53
+ jolt/pkgs/fastfloat.py,sha256=P0iUwwiMqdqMtU9QHLgIBThd1I6qE36-zflH8pCW5yc,632
54
+ jolt/pkgs/ffmpeg.py,sha256=05WEhpL1EjZ9GX4usKxFFyZAeGp1cPDmojTloTG6FHU,926
55
+ jolt/pkgs/flatbuffers.py,sha256=AcXyty8QBR0TtuCwdrcogFA8Q3h8xBcwrwFTWZXh0eI,1004
56
+ jolt/pkgs/fmt.py,sha256=XWaN7Qy-oO_QRQXWBXF-YbyCl9IKaPRiuwUXz8bmFUk,839
57
+ jolt/pkgs/fstree.py,sha256=1c7xusH8U9epr6AuZHuWvfi4JCKoe2AgAkluYSU00Jg,769
58
+ jolt/pkgs/gflags.py,sha256=_h3od2z6n74M7BfdKLDww6taHVMz84807TRBL6c__7k,514
59
+ jolt/pkgs/glib.py,sha256=SXc9TFCebss3wSwqIiQTcuyw5VvyepYlEgxQD_0m_nQ,538
60
+ jolt/pkgs/glog.py,sha256=htXjiFJyggDpd6_M0S3lY3A6lOAeeL-sTByE8ZfVy9c,781
61
+ jolt/pkgs/glslang.py,sha256=wivViqZIm3KgH4ioAOS9KLU1MSOrAe0SXrhjiArRqaM,628
62
+ jolt/pkgs/golang.py,sha256=I9zcHJqg2cWp7WVNuSkF_9HAjH79708Kz0ja6-gQOSo,1243
63
+ jolt/pkgs/googlebenchmark.py,sha256=OTXknvgWc9KqfAjlj6U--e2ts3nGWh0KfGWLLE1QpaA,575
64
+ jolt/pkgs/googletest.py,sha256=NueqBLYav4DefzpkQIRbBoOoIkRg5g-0yP2Y7GYvZ7Y,1403
65
+ jolt/pkgs/gperf.py,sha256=4EpwbPLwwHbWVlrc8UaaJwOYgvuYOPcddqy7ijdca0w,432
66
+ jolt/pkgs/grpc.py,sha256=Zcsfo9T2Tmzj5FSATmQIOoObKyYZN67KEPFGd_rdirM,2414
67
+ jolt/pkgs/hdf5.py,sha256=r3xRsa2mnM0lb-FW9vrERCC28uoO6KnfaQmWvtO0Mxk,506
68
+ jolt/pkgs/help2man.py,sha256=x4DaAi2IV8Yit0vEPrLtZ8wCg1fGaMWZl-yJD68S5Vk,424
69
+ jolt/pkgs/inja.py,sha256=zU1iPB9HDuQBsWk-hFW_1bAcjoPY94jfdNPeFKmP_zI,864
70
+ jolt/pkgs/jsoncpp.py,sha256=WYak9GQiRt81xMhxzsHUrMVtcCHCz868Kdr1IqsRE0k,1020
71
+ jolt/pkgs/libarchive.py,sha256=zMQf0JFxkAg-UEYYVenCJfOJOytKfLct_nKJJABVppM,1484
72
+ jolt/pkgs/libcap.py,sha256=OmVZytJ14n2d9gK1Qw4yBe-P7VYWTEg6zK2XjNSoSVg,1482
73
+ jolt/pkgs/libdrm.py,sha256=g6l-m0kPcGy551u72FWXVmVOW4yqMoAw5oj6fuSZJbc,1853
74
+ jolt/pkgs/libedit.py,sha256=enmkPvIEb6EmAkDu27b7DJ46xDGCaLHy720Q5SZyjOQ,1649
75
+ jolt/pkgs/libevent.py,sha256=e_H6Hcxj4dQDWj2UYd7RSp_A3oEYIXyloG6p5draDOk,1051
76
+ jolt/pkgs/libexpat.py,sha256=6vchKu7lbLkQ2MLfHS4_TsZPxk14uoJnPAsxkDQSBGc,985
77
+ jolt/pkgs/libfastjson.py,sha256=Threip9lhIpDI8-iLZjDZq_mUHmqKgUIp0dy4GDtXXg,670
78
+ jolt/pkgs/libffi.py,sha256=o4NySd3P2K_TInKI6y0VXjcVrCqg6nRM7kyplnRdUZY,439
79
+ jolt/pkgs/libglvnd.py,sha256=LWMB8gkb7sV74crwOOQ2w6nBJJtRnvPZSYcfKGGLunI,939
80
+ jolt/pkgs/libogg.py,sha256=KVzLXYaX_eD9aC2Fel8SmYE5PXSHc_rwcB7ymsOZ0HE,897
81
+ jolt/pkgs/libpciaccess.py,sha256=vz80yIUT31zMNL-PiSM0O-LiyhP6JvLOGdl8QVsAMfo,583
82
+ jolt/pkgs/libseccomp.py,sha256=34FtSWMmFmodzl0Ls0I1JHfI1P04xWZ9Qs1d4sdX3is,699
83
+ jolt/pkgs/libtirpc.py,sha256=PQYfo2mGvT0Mi-3tAk6v_068gP54-74yMHqRiODwV8E,817
84
+ jolt/pkgs/libtool.py,sha256=LG4_tb6HqadCM4EziqibQFuBseaLytU5bTAup9cff3o,1375
85
+ jolt/pkgs/libunwind.py,sha256=6RzQTniGRP-uoa7JRdpUy-7n6Pr7x2q8oU6OfqJ8xDY,1187
86
+ jolt/pkgs/libva.py,sha256=7mnuk4mPuNyM3nC-WhlM93oZ2W7MWFs7nvANqiz7Cts,530
87
+ jolt/pkgs/libvorbis.py,sha256=BZG8JpwYtt_R00MvA_NvteduKhLJOWYgUHu46PNmJ7M,1137
88
+ jolt/pkgs/libxml2.py,sha256=hlvxpb_DkzWqky1Y8F40UYHcYQwaIfRKdpfrVVAYqnA,1151
89
+ jolt/pkgs/libxslt.py,sha256=ClagjxEzMYXxet98FNzP1L1WLjE5b7YqY3rJAEzpBLM,535
90
+ jolt/pkgs/libyajl.py,sha256=vhcPbodRgDDedTQSKis07JHRmsE6pmILhTYRSPLcYYg,470
91
+ jolt/pkgs/llvm.py,sha256=z29rky7o8pe4x1obyCCkY2ZcC7rWIIbl5R-vs0jEr5E,2351
92
+ jolt/pkgs/lua.py,sha256=sHdGfMxj3vfCwn9h-WY9ZuAhiwUWUDw8fOOmpojT_EE,1632
93
+ jolt/pkgs/lz4.py,sha256=X1bCgZJgNbXIqT3wD1fc3GwF6mBMubeMtdcyC9tuyNU,824
94
+ jolt/pkgs/m4.py,sha256=1ke-CQ5A5IGGmVeMmqZY-bGdx8eCk4M0LSXs8yE6akY,387
95
+ jolt/pkgs/make.py,sha256=CkjHn3wI2jMjgHeQc11Vdv3w_JMo6_lqgM31jNx10-g,584
96
+ jolt/pkgs/mesa.py,sha256=u0STUYBaUBhkGFLTimehjA8k7cN9-A856dLYmNCEK1w,2778
97
+ jolt/pkgs/meson.py,sha256=tRwW7_eI40Fvh5TtMynFEctM_6Q4FGX3BijOgb-rDRU,316
98
+ jolt/pkgs/mstch.py,sha256=m8qAB5GaSRFMzFBbpA4m0ZQQRb9SF5OiRpFhWy-Nb7o,884
99
+ jolt/pkgs/mysql.py,sha256=LdDea_DOXPEIwmy83L-1PqSX-GytczrlqsieszW3OTc,2060
100
+ jolt/pkgs/nasm.py,sha256=yhL5vCka8FX78R_4F0YZO7NTwTWLhi-YdpCklhMKnDY,1743
101
+ jolt/pkgs/ncurses.py,sha256=BtNPWEUzX6w7FYgSwskCDhXoIi9eZa2Pw6YqAtW1mns,1084
102
+ jolt/pkgs/ng_log.py,sha256=hcP-4vS6muLGZiVKqOqK-GKzChvHA_pN3unafhNNN7o,846
103
+ jolt/pkgs/ninja.py,sha256=-TiNf0_MglLUdTOX8uaeUNu-nsrUjQ95aoJ2e-4q1eY,1411
104
+ jolt/pkgs/nlohmann_json.py,sha256=IlhM3AoX2v7B1VJ0_d_LpHxkuvhREcPdkMt7KBsMWf4,785
105
+ jolt/pkgs/nodejs.py,sha256=rWnukwBMyLGBbToe3E8amn6SDoCvpYVMgZscrfaKoso,1181
106
+ jolt/pkgs/opencv.py,sha256=UZnxE_XqTUAPh0e64LVsJn5in7SCrWKXnkszAWe9kvw,729
107
+ jolt/pkgs/openjdk.py,sha256=2PtftWwJwpPcSfYBo-zGpJw3VWIcIJvOMY0eljDxdLA,1117
108
+ jolt/pkgs/openssl.py,sha256=2JkW1TvOPQri2kV6s2f_cE5FJ4wCEF02pt1CMFNDGHs,3412
109
+ jolt/pkgs/paho.py,sha256=c56VO5O2dvI-1qpNDukLmY9G25izvWWp-GKWGvQ_aFM,2770
110
+ jolt/pkgs/patchelf.py,sha256=ag8A-k7a4yfY1_huIBOUVClVy5lVuji4ipNCra_VdC8,505
111
+ jolt/pkgs/perl.py,sha256=QkOY5y8yRtb4hFNddOQOolMyRkcQkkauKCNxIPTLWmo,1259
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
115
+ jolt/pkgs/pugixml.py,sha256=VYDF4yPD4KTfft6UPWR8b8x8glpZf0luF9gfDiEWrwA,868
116
+ jolt/pkgs/python.py,sha256=yXkQ1D7cTusXsYzszD1VADPuSrBb5X2sOuoGeJ4W3vs,374
117
+ jolt/pkgs/qt.py,sha256=cIPG9gCcV6yCCq96XcsRC826o6zKsWV0FqOwlkkFMOM,1159
118
+ jolt/pkgs/rapidjson.py,sha256=JIhRK73pgvQkOAXSxQQpF6fvjUr5Y7niNydZc3kzNuA,779
119
+ jolt/pkgs/rapidyaml.py,sha256=HRqmzr5JNguKJb8EqLlqyazVW8KZPj2uu78zFEgVGz4,953
120
+ jolt/pkgs/re2.py,sha256=2dZ71grlm_5SFT-1xzIP1Ep-DnCqe9T0hlqaNL22Nn8,969
121
+ jolt/pkgs/re2c.py,sha256=6fo6kSO45LpWLLVXb4MJnZDoW-GP3U65J2UOTc5Jr-M,462
122
+ jolt/pkgs/readline.py,sha256=5Bt-nIo8mYFE9gNalUxqfdbNRBEtnwA6UK1ar2u5lLg,520
123
+ jolt/pkgs/rust.py,sha256=fysNMMzhUbYIq53ht15n3vcCTP0fG0pVsxY8LU1IauA,1468
124
+ jolt/pkgs/sdl.py,sha256=cSWX0PtzaJHB9vmTh_UIvIM1mVjuOB3XouzVBJYd_a8,909
125
+ jolt/pkgs/simdjson.py,sha256=MLAm5KmmKOd-lEdhBIAy24NAqk3fHCjU6AVn3op8v1I,880
126
+ jolt/pkgs/soci.py,sha256=t6IJ_MMZRUhbgpclgIJ9Eg1qy_02zotbjvLUOrKaiik,1710
127
+ jolt/pkgs/spdlog.py,sha256=Skag3xZpSN-tTZzV0v1SgvNkd-IKYuHYjLsmi5Uu_io,933
128
+ jolt/pkgs/spirv_llvm.py,sha256=2hadS48ccncD7N10ftPqoWeumMDdqVFydu1GLOLrCRY,711
129
+ jolt/pkgs/spirv_tools.py,sha256=vyMqedXc3VOz-FUlSLAF6v7scasexQmvriIlyshA3u8,792
130
+ jolt/pkgs/sqlite.py,sha256=XWDSbRXptEtqsJ0SJT9PBdzvArFfc8OKqnnrWWO9FdY,3007
131
+ jolt/pkgs/ssl.py,sha256=2geOsdt4jFN0pn-z-RWYZ1AUx3CnK21Atk2lrqgTa9c,327
132
+ jolt/pkgs/texinfo.py,sha256=JHNZ5aJo6XCPG_yp5Xam90Zz5b4OFplIEgpDEWOKf4s,444
133
+ jolt/pkgs/tomlplusplus.py,sha256=X5I9AeZ0D3H3nxVluVyMDEnxlhnu7ev6nKuPxWCaIcQ,720
134
+ jolt/pkgs/wayland.py,sha256=26MCKgrENrKrcShkb1g54ZTIrtyzr3d5Rl0S8rA7Cnc,793
135
+ jolt/pkgs/x11.py,sha256=mwY6Fp22rd4wJ0vxeJrhaWpcpxKjCIwqYbQyBJHezLQ,1179
136
+ jolt/pkgs/xerces_c.py,sha256=B71oV71ZVLFLu1jLQFgo0WRNlYN9_c5_cG3F09yMtVY,611
137
+ jolt/pkgs/xorg.py,sha256=_J_iLcT74hJROxQfMD7qJ1DZth-S6tTT-eF1NqHCwVk,13317
138
+ jolt/pkgs/xz.py,sha256=43Ids5vovBCU1AbJUSci1gISK8wAdzdF4XuqVNp8_WM,995
139
+ jolt/pkgs/yamlcpp.py,sha256=JMX3sb8JJEy3xfUT2jZ6AlzbKr3y76QOEwwhefySvRM,988
140
+ jolt/pkgs/zeromq.py,sha256=F8G66qsBCK7vQhiTG-i5aygQMwi6NeszjJmEuu0NTJA,1511
141
+ jolt/pkgs/zlib.py,sha256=xHgTxjnv64X5QqlpF0wZN9ePImtS6RCpbG4hFTcKvVY,2940
142
+ jolt/pkgs/zstd.py,sha256=XrmXEdhwj3TU9qT2n6ZmAgPy_zNLlSJx-oIdMTuuBis,1062
143
+ jolt/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
+ jolt/plugins/alias.py,sha256=8BXRTh1N6rGjEPk484Grelw2KPa4kLKX7LUt7bUArFI,399
145
+ jolt/plugins/allure.py,sha256=nUYQEjGAAc9Mt7Yzz3rKdr_M3wHOjCjtQSnOulIlDUs,10230
146
+ jolt/plugins/autotools.py,sha256=ZIKMsmCspZbfmoDx3enelrLidXvFruAYaY2FB2k1xM4,1813
147
+ jolt/plugins/autoweight.py,sha256=LTpma3HM1jsAx1PatDIWcddAkRw1SPhHA4Dl9H9p2lo,1245
148
+ jolt/plugins/cache.py,sha256=8voIlVS4fjJnQE1uMA4BvHJ2B4CQQXUF93IW-_if7fs,4242
149
+ jolt/plugins/cmake.py,sha256=VOCv6UROB54z4kNcSOn90VcPS35QRULZ9x7RHMcUDN8,4648
150
+ jolt/plugins/conan.py,sha256=5d7TdQBV1dcwTFfyW-U3jrfJDTpLbnp08Ltra1zTZyc,16259
151
+ jolt/plugins/cxx.py,sha256=UqcBIcjCphRB2ojknU4v5vRv_6i3CmIAFZS1T3dXWVc,30487
152
+ jolt/plugins/cxxinfo.py,sha256=T3_JBbYK5cY6n-3iW46Bov9hf62KChd8llyiXerY0rU,2606
153
+ jolt/plugins/dashboard.py,sha256=5XxU7J33htfc7rxPXTob37rOpehtWZh6N-HVlNHAluM,642
154
+ jolt/plugins/docker.py,sha256=cVzX9EYsk0DSkSnkArwjhZ7iVfUTYOfLyMoO2uGvdhs,21100
155
+ jolt/plugins/email.py,sha256=esONwpn7xKJLh4SYGZ0GpSZ2UwzWsckfsAPCeYdZSVw,3549
156
+ jolt/plugins/email.xslt,sha256=3vrrfnG-KH_cfJq6RDOXHKQxKd-6s28qy4znapGaciM,8513
157
+ jolt/plugins/environ.py,sha256=k382rvEKWj-nlibJcCUWcYtYheU8p9df9ZY0DAAkjDE,3561
158
+ jolt/plugins/fetch.py,sha256=8HIW_UKhB73HGzudaxBquQAvY8Oe5tQnDfV0EzfHKSU,5679
159
+ jolt/plugins/gdb.py,sha256=gg-H_IQvRRPDZpk-djdIU7j3PO8CDINCSxWOemD2fA8,6288
160
+ jolt/plugins/gerrit.py,sha256=tc8NeIDAg3mZJINU5aZg1fs3YsaVxM_MvkHa149aAIs,768
161
+ jolt/plugins/git.py,sha256=r1GS_urS3208RMsJ3YrLpm6ZmNtOy2n60TnHEaDHsso,23195
162
+ jolt/plugins/golang.py,sha256=vV4iRoJpWkyfrBa96s6jgU8Sz8GnGl-lzG_FSj5epzQ,2049
163
+ jolt/plugins/googletest.py,sha256=9aV_T21JY84YgeSiaV4ppZhVs1XFt19m3pPrJW2iGfI,18708
164
+ jolt/plugins/http.py,sha256=HwuABHR2tuWm_jBdQpCO3AMkjFdwOzUfEi26X-2v_y8,3816
165
+ jolt/plugins/junit.py,sha256=_1vXMEQBNuLbwc8l4UFm1iONYdehxJxWDRgFtPy3do8,1342
166
+ jolt/plugins/libtool.py,sha256=mTm22TUJu1kS5EMA0UPiAlrKQpQVAlm5h8gcKSgId4g,1958
167
+ jolt/plugins/linux.py,sha256=XuJwr5UFW3_JbitXpZ3A6G_hKRLZ_uTG7-ph01kq6_M,31807
168
+ jolt/plugins/logstash.py,sha256=ShUdqSRyQL_ATlgHwLP-uI1mJXprs15knyWbk58nMFo,1847
169
+ jolt/plugins/meson.py,sha256=4cR1KN-319Hf8c4vrL1J33E79BZ5VNkZSZbF8zaUJoo,1580
170
+ jolt/plugins/ninja-compdb.py,sha256=Otxz-nQnJx-aAPuAf8-T0AOi_34ENHGb5gypGVVGFB0,10989
171
+ jolt/plugins/ninja.py,sha256=OqFM_AMFvOubjrMp-Y5pY49jrB97EUiiUn9BqC42_jU,111086
172
+ jolt/plugins/nodejs.py,sha256=HHDbvmdlqnao3qOtpCD9UY7iyTIX4gb2WxKUBtn-3cM,1879
173
+ jolt/plugins/paths.py,sha256=DgiPI5K5bV3lVuyNEMIjRO26iTwf6RL5-2WPQ3rSmj8,1920
174
+ jolt/plugins/pkgconfig.py,sha256=8shyEbs5peLavhV6TeCQJ5SlZCiXmnXLamdqkNMYLxQ,8001
175
+ jolt/plugins/podman.py,sha256=7xrPWaJvSzsBSsEUaCwBfVtMfzx5pLUrZB7pxf8hLzs,22487
176
+ jolt/plugins/python.py,sha256=DnouYOl2x2iZ_bnUmx5XesNIOUqSCzSg_NC6KgOZW4A,7769
177
+ jolt/plugins/report.py,sha256=EiPuZSoxEM-fXDsHBQuRTf1xtvN_gPBodMej3E9CGx0,2695
178
+ jolt/plugins/rust.py,sha256=xPhiUmKtAnr9RbQwkAiyFdXc3KyMrqSmo98kYtHI0rc,713
179
+ jolt/plugins/scheduler.py,sha256=SJdRb0taOF4zhKkPfc9zg8UyvDn7rJYtbyMPC93XXsk,24560
180
+ jolt/plugins/selfdeploy.py,sha256=oYeBefUfabf-ACEVbdyJi2n9SfAuXLK1Q12D35obZsw,6952
181
+ jolt/plugins/strings.py,sha256=sHDroW0srlQI1aRwu_WANkmR35sUxPvZGO28CYo-ClY,1783
182
+ jolt/plugins/symlinks.py,sha256=u4lTcpkepf0_mr_RI85uiSkI_WAUGebAOsbH5WlAnzo,2399
183
+ jolt/plugins/telemetry.py,sha256=xHgJVbSVRaPy67kblL4wj86mDESlFS1z3NGDJ2uDXZ8,3572
184
+ jolt/plugins/timeline.py,sha256=pzCdyi_MTNBZ-lKRkdigi8xGRPLWy905stLTa8_eCB8,1851
185
+ jolt/plugins/volume.py,sha256=xBU9BWtHakSbmac5V3-OAdixm4gsU8MPcWQg3yHZ5Ig,3274
186
+ jolt/plugins/yaml-ninja.py,sha256=6V5YlGaZ3G1EyCTW6flMcslIh6DHttRSoUXdi0rX2Mc,3060
187
+ jolt/plugins/yamltask.py,sha256=yECalMWOI48rn7yqWwxXxlSq1HDKnJ2llLD_SI_Ogys,3528
188
+ jolt/plugins/remote_execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
+ jolt/plugins/remote_execution/administration_pb2.py,sha256=7j1c6bGMQgybDa7-QICZsUJD5BT3a_ZJdsx1HjtMXuU,4170
190
+ jolt/plugins/remote_execution/administration_pb2_grpc.py,sha256=8NeUwQibDEv-Kt3ceKG9_RGNMkal1Y7PyNvZhWjX4Q8,8163
191
+ jolt/plugins/remote_execution/log_pb2.py,sha256=kapl-usfqIIDidUQk8FKh1Lw7r1X3m0bdisYfGwntZQ,1907
192
+ jolt/plugins/remote_execution/log_pb2_grpc.py,sha256=j5N8zM7P7I-lzgv9J4ioi8ed7i8_GOXUccKl7ZR_OO8,2714
193
+ jolt/plugins/remote_execution/scheduler_pb2.py,sha256=jGm24Lf3rJfCLvYHEp8k4fCjF9MpEb7WdFyhsSsYoak,3112
194
+ jolt/plugins/remote_execution/scheduler_pb2_grpc.py,sha256=H7Is9caU681Qau5nZZ3Ks2wXX-DPqAZRslvDDMuPE5g,6309
195
+ jolt/plugins/remote_execution/worker_pb2.py,sha256=FLPWimnmeJAa02SOnejC4aDA_taljLVZE3w-vdRpaPM,2926
196
+ jolt/plugins/remote_execution/worker_pb2_grpc.py,sha256=A-XLtuLjI2jBUdLPH-oa1qcJeYI1bmtWDnUOka2bG_s,5047
197
+ jolt/plugins/selfdeploy/README.rst,sha256=dAer5CQHPOOCUAMcVljKzn5ICzjsNKWhw2tAvBAL8So,3130
198
+ jolt/plugins/selfdeploy/setup.py,sha256=90eXENo36MAubtYTH_L3oKm0rPR2GQsiXII5hm70T_M,3152
199
+ jolt/templates/cxxexecutable.cmake.template,sha256=f0dg1VOFlamlF8fuHFTki5dsJ2ssSupiqk62QmRby4Y,1720
200
+ jolt/templates/cxxlibrary.cmake.template,sha256=GMEG2G3QoY3E5fsNer52zOqgM221-abeCkV__mVbZ94,1750
201
+ jolt/templates/export.sh.template,sha256=PKkflGXFbq70EIsowqcnLvzbnEDnqh_WgC4E_JNT0VE,1937
202
+ jolt/templates/timeline.html.template,sha256=xdqvFBmhE8XRQaWgcIFBVbd__9HdRq6O-U0o276PyjU,1222
203
+ jolt-0.9.435.dist-info/METADATA,sha256=O8D8G792rv2of6iIfeg3z-lgkY6oTVHe1MP1YFmpj8U,7223
204
+ jolt-0.9.435.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
205
+ jolt-0.9.435.dist-info/entry_points.txt,sha256=VZ-QH38Z9HJc1O57wfzr-soHn6exwc3N0TSrRum4tYg,44
206
+ jolt-0.9.435.dist-info/top_level.txt,sha256=HwzVmAwUrvCUUHRi3zUfcpdKTsdNrZmPCvsrsWSFyqE,5
207
+ jolt-0.9.435.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: setuptools (80.10.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5