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.
- jolt/__init__.py +80 -7
- jolt/__main__.py +9 -1
- jolt/bin/fstree-darwin-x86_64 +0 -0
- jolt/bin/fstree-linux-x86_64 +0 -0
- jolt/cache.py +596 -252
- jolt/chroot.py +36 -11
- jolt/cli.py +143 -130
- jolt/common_pb2.py +45 -45
- jolt/config.py +76 -40
- jolt/error.py +19 -4
- jolt/filesystem.py +2 -6
- jolt/graph.py +400 -82
- jolt/influence.py +110 -3
- jolt/loader.py +338 -174
- jolt/log.py +127 -31
- jolt/manifest.py +13 -46
- jolt/options.py +35 -11
- jolt/pkgs/abseil.py +42 -0
- jolt/pkgs/asio.py +25 -0
- jolt/pkgs/autoconf.py +41 -0
- jolt/pkgs/automake.py +41 -0
- jolt/pkgs/b2.py +31 -0
- jolt/pkgs/boost.py +111 -0
- jolt/pkgs/boringssl.py +32 -0
- jolt/pkgs/busybox.py +39 -0
- jolt/pkgs/bzip2.py +43 -0
- jolt/pkgs/cares.py +29 -0
- jolt/pkgs/catch2.py +36 -0
- jolt/pkgs/cbindgen.py +17 -0
- jolt/pkgs/cista.py +19 -0
- jolt/pkgs/clang.py +44 -0
- jolt/pkgs/cli11.py +24 -0
- jolt/pkgs/cmake.py +48 -0
- jolt/pkgs/cpython.py +196 -0
- jolt/pkgs/crun.py +29 -0
- jolt/pkgs/curl.py +38 -0
- jolt/pkgs/dbus.py +18 -0
- jolt/pkgs/double_conversion.py +24 -0
- jolt/pkgs/fastfloat.py +21 -0
- jolt/pkgs/ffmpeg.py +28 -0
- jolt/pkgs/flatbuffers.py +29 -0
- jolt/pkgs/fmt.py +27 -0
- jolt/pkgs/fstree.py +20 -0
- jolt/pkgs/gflags.py +18 -0
- jolt/pkgs/glib.py +18 -0
- jolt/pkgs/glog.py +25 -0
- jolt/pkgs/glslang.py +21 -0
- jolt/pkgs/golang.py +16 -11
- jolt/pkgs/googlebenchmark.py +18 -0
- jolt/pkgs/googletest.py +46 -0
- jolt/pkgs/gperf.py +15 -0
- jolt/pkgs/grpc.py +73 -0
- jolt/pkgs/hdf5.py +19 -0
- jolt/pkgs/help2man.py +14 -0
- jolt/pkgs/inja.py +28 -0
- jolt/pkgs/jsoncpp.py +31 -0
- jolt/pkgs/libarchive.py +43 -0
- jolt/pkgs/libcap.py +44 -0
- jolt/pkgs/libdrm.py +44 -0
- jolt/pkgs/libedit.py +42 -0
- jolt/pkgs/libevent.py +31 -0
- jolt/pkgs/libexpat.py +27 -0
- jolt/pkgs/libfastjson.py +21 -0
- jolt/pkgs/libffi.py +16 -0
- jolt/pkgs/libglvnd.py +30 -0
- jolt/pkgs/libogg.py +28 -0
- jolt/pkgs/libpciaccess.py +18 -0
- jolt/pkgs/libseccomp.py +21 -0
- jolt/pkgs/libtirpc.py +24 -0
- jolt/pkgs/libtool.py +42 -0
- jolt/pkgs/libunwind.py +35 -0
- jolt/pkgs/libva.py +18 -0
- jolt/pkgs/libvorbis.py +33 -0
- jolt/pkgs/libxml2.py +35 -0
- jolt/pkgs/libxslt.py +17 -0
- jolt/pkgs/libyajl.py +16 -0
- jolt/pkgs/llvm.py +81 -0
- jolt/pkgs/lua.py +54 -0
- jolt/pkgs/lz4.py +26 -0
- jolt/pkgs/m4.py +14 -0
- jolt/pkgs/make.py +17 -0
- jolt/pkgs/mesa.py +81 -0
- jolt/pkgs/meson.py +17 -0
- jolt/pkgs/mstch.py +28 -0
- jolt/pkgs/mysql.py +60 -0
- jolt/pkgs/nasm.py +49 -0
- jolt/pkgs/ncurses.py +30 -0
- jolt/pkgs/ng_log.py +25 -0
- jolt/pkgs/ninja.py +45 -0
- jolt/pkgs/nlohmann_json.py +25 -0
- jolt/pkgs/nodejs.py +19 -11
- jolt/pkgs/opencv.py +24 -0
- jolt/pkgs/openjdk.py +26 -0
- jolt/pkgs/openssl.py +103 -0
- jolt/pkgs/paho.py +76 -0
- jolt/pkgs/patchelf.py +16 -0
- jolt/pkgs/perl.py +42 -0
- jolt/pkgs/pkgconfig.py +64 -0
- jolt/pkgs/poco.py +39 -0
- jolt/pkgs/protobuf.py +77 -0
- jolt/pkgs/pugixml.py +27 -0
- jolt/pkgs/python.py +19 -0
- jolt/pkgs/qt.py +35 -0
- jolt/pkgs/rapidjson.py +26 -0
- jolt/pkgs/rapidyaml.py +28 -0
- jolt/pkgs/re2.py +30 -0
- jolt/pkgs/re2c.py +17 -0
- jolt/pkgs/readline.py +15 -0
- jolt/pkgs/rust.py +41 -0
- jolt/pkgs/sdl.py +28 -0
- jolt/pkgs/simdjson.py +27 -0
- jolt/pkgs/soci.py +46 -0
- jolt/pkgs/spdlog.py +29 -0
- jolt/pkgs/spirv_llvm.py +21 -0
- jolt/pkgs/spirv_tools.py +24 -0
- jolt/pkgs/sqlite.py +83 -0
- jolt/pkgs/ssl.py +12 -0
- jolt/pkgs/texinfo.py +15 -0
- jolt/pkgs/tomlplusplus.py +22 -0
- jolt/pkgs/wayland.py +26 -0
- jolt/pkgs/x11.py +58 -0
- jolt/pkgs/xerces_c.py +20 -0
- jolt/pkgs/xorg.py +360 -0
- jolt/pkgs/xz.py +29 -0
- jolt/pkgs/yamlcpp.py +30 -0
- jolt/pkgs/zeromq.py +47 -0
- jolt/pkgs/zlib.py +87 -0
- jolt/pkgs/zstd.py +33 -0
- jolt/plugins/alias.py +3 -0
- jolt/plugins/allure.py +2 -2
- jolt/plugins/autotools.py +66 -0
- jolt/plugins/cache.py +1 -1
- jolt/plugins/cmake.py +74 -6
- jolt/plugins/conan.py +238 -0
- jolt/plugins/cxxinfo.py +7 -0
- jolt/plugins/docker.py +76 -19
- jolt/plugins/email.xslt +141 -118
- jolt/plugins/environ.py +11 -0
- jolt/plugins/fetch.py +141 -0
- jolt/plugins/gdb.py +33 -14
- jolt/plugins/gerrit.py +0 -13
- jolt/plugins/git.py +248 -66
- jolt/plugins/googletest.py +1 -1
- jolt/plugins/http.py +1 -1
- jolt/plugins/libtool.py +63 -0
- jolt/plugins/linux.py +990 -0
- jolt/plugins/logstash.py +4 -4
- jolt/plugins/meson.py +61 -0
- jolt/plugins/ninja-compdb.py +96 -28
- jolt/plugins/ninja.py +424 -150
- jolt/plugins/paths.py +11 -1
- jolt/plugins/pkgconfig.py +219 -0
- jolt/plugins/podman.py +131 -87
- jolt/plugins/python.py +137 -0
- jolt/plugins/remote_execution/administration_pb2.py +27 -19
- jolt/plugins/remote_execution/log_pb2.py +12 -12
- jolt/plugins/remote_execution/scheduler_pb2.py +23 -23
- jolt/plugins/remote_execution/worker_pb2.py +19 -19
- jolt/plugins/report.py +7 -2
- jolt/plugins/rust.py +25 -0
- jolt/plugins/scheduler.py +135 -86
- jolt/plugins/selfdeploy/setup.py +6 -6
- jolt/plugins/selfdeploy.py +49 -31
- jolt/plugins/strings.py +35 -22
- jolt/plugins/symlinks.py +11 -4
- jolt/plugins/telemetry.py +1 -2
- jolt/plugins/timeline.py +13 -3
- jolt/scheduler.py +467 -165
- jolt/tasks.py +427 -111
- jolt/templates/timeline.html.template +44 -47
- jolt/timer.py +22 -0
- jolt/tools.py +527 -188
- jolt/utils.py +183 -3
- jolt/version.py +1 -1
- jolt/xmldom.py +12 -2
- {jolt-0.9.172.dist-info → jolt-0.9.435.dist-info}/METADATA +97 -41
- jolt-0.9.435.dist-info/RECORD +207 -0
- {jolt-0.9.172.dist-info → jolt-0.9.435.dist-info}/WHEEL +1 -1
- jolt/plugins/amqp.py +0 -855
- jolt/plugins/debian.py +0 -338
- jolt/plugins/repo.py +0 -253
- jolt/plugins/snap.py +0 -122
- jolt-0.9.172.dist-info/RECORD +0 -92
- {jolt-0.9.172.dist-info → jolt-0.9.435.dist-info}/entry_points.txt +0 -0
- {jolt-0.9.172.dist-info → jolt-0.9.435.dist-info}/top_level.txt +0 -0
jolt/plugins/snap.py
DELETED
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
from jolt import cache
|
|
2
|
-
from jolt import cli
|
|
3
|
-
from jolt import config
|
|
4
|
-
from jolt import graph
|
|
5
|
-
from jolt import log
|
|
6
|
-
from jolt import scheduler
|
|
7
|
-
from jolt.manifest import JoltManifest
|
|
8
|
-
from jolt.options import JoltOptions
|
|
9
|
-
from jolt.tasks import TaskRegistry
|
|
10
|
-
from jolt.tools import Tools
|
|
11
|
-
|
|
12
|
-
import click
|
|
13
|
-
import getpass
|
|
14
|
-
import keyring
|
|
15
|
-
import requests
|
|
16
|
-
import urllib3
|
|
17
|
-
import json
|
|
18
|
-
|
|
19
|
-
urllib3.disable_warnings()
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
NAME = "snap"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
def _get_auth():
|
|
26
|
-
service = config.get(NAME, "keyring.service", "jenkins")
|
|
27
|
-
username = config.get(NAME, "keyring.username") or \
|
|
28
|
-
input("Jenkins username: ")
|
|
29
|
-
if username:
|
|
30
|
-
config.set(NAME, "keyring.username", username)
|
|
31
|
-
config.save()
|
|
32
|
-
password = config.get(NAME, "keyring.password") or \
|
|
33
|
-
keyring.get_password(service, username)
|
|
34
|
-
if not password:
|
|
35
|
-
password = getpass.getpass("Jenkins password: ")
|
|
36
|
-
assert password, "no password in keyring for " + service
|
|
37
|
-
keyring.set_password(service, username, password)
|
|
38
|
-
return username, password
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
@cli.cli.command(name="snap")
|
|
42
|
-
@click.argument("task", type=str, required=True, shell_complete=cli._autocomplete_tasks)
|
|
43
|
-
@click.option("-d", "--default", type=str, multiple=True, help="Override default parameter values.")
|
|
44
|
-
@click.pass_context
|
|
45
|
-
def snap(ctx, task, default):
|
|
46
|
-
""" Submit a task for background build in a Jenkins job """
|
|
47
|
-
|
|
48
|
-
manifest = ctx.obj["manifest"]
|
|
49
|
-
options = JoltOptions(default=default)
|
|
50
|
-
acache = cache.ArtifactCache.get(options)
|
|
51
|
-
registry = TaskRegistry.get()
|
|
52
|
-
|
|
53
|
-
for params in default:
|
|
54
|
-
registry.set_default_parameters(params)
|
|
55
|
-
|
|
56
|
-
gb = graph.GraphBuilder(registry, acache, manifest, options, progress=True)
|
|
57
|
-
dag = gb.build([task])
|
|
58
|
-
|
|
59
|
-
manifest = JoltManifest.export(dag.requested_goals)
|
|
60
|
-
manifest.config = ""
|
|
61
|
-
build = manifest.create_build()
|
|
62
|
-
|
|
63
|
-
for task in dag.goals:
|
|
64
|
-
mt = build.create_task()
|
|
65
|
-
mt.name = task.qualified_name
|
|
66
|
-
|
|
67
|
-
for task in options.default:
|
|
68
|
-
default = build.create_default()
|
|
69
|
-
default.name = task
|
|
70
|
-
|
|
71
|
-
registry = scheduler.ExecutorRegistry.get()
|
|
72
|
-
for key, value in registry.get_network_parameters(dag.requested_goals[0]).items():
|
|
73
|
-
param = manifest.create_parameter()
|
|
74
|
-
param.key = key
|
|
75
|
-
param.value = value
|
|
76
|
-
|
|
77
|
-
url = config.get("snap", "url")
|
|
78
|
-
|
|
79
|
-
jolt_id = manifest.get_parameter("jolt_identity")
|
|
80
|
-
jolt_url = manifest.get_parameter("jolt_url")
|
|
81
|
-
|
|
82
|
-
params = {
|
|
83
|
-
"parameter": [
|
|
84
|
-
{
|
|
85
|
-
"name": "default.joltxmanifest",
|
|
86
|
-
"file": "file0",
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
"name": "jolt.config",
|
|
90
|
-
"file": "file1",
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"name": "JOLT_TASK",
|
|
94
|
-
"value": dag.requested_goals[0].qualified_name,
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
"name": "JOLT",
|
|
98
|
-
"value": jolt_id,
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"name": "JOLT_URL",
|
|
102
|
-
"value": jolt_url,
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"name": "JOLT_NOTIFY",
|
|
106
|
-
"value": config.get(NAME, "notify", ""),
|
|
107
|
-
},
|
|
108
|
-
]
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
tools = Tools()
|
|
112
|
-
data, content_type = urllib3.encode_multipart_formdata([
|
|
113
|
-
("file0", ("default.joltxmanifest", manifest.format())),
|
|
114
|
-
("file1", ("jolt.config", tools.read_file(config.location))),
|
|
115
|
-
("json", json.dumps(params)),
|
|
116
|
-
("Submit", "Build"),
|
|
117
|
-
])
|
|
118
|
-
|
|
119
|
-
resp = requests.post(url + "/build", auth=_get_auth(), data=data,
|
|
120
|
-
headers={"content-type": content_type}, verify=False)
|
|
121
|
-
resp.raise_for_status()
|
|
122
|
-
log.info("Build successfully submitted")
|
jolt-0.9.172.dist-info/RECORD
DELETED
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
jolt/__init__.py,sha256=YLDvySPnqcfaEAWDPrSZU0wX9bn9lqbsB3Btp0tzmcA,1569
|
|
2
|
-
jolt/__main__.py,sha256=w_97LnlsoL6TI-Fnh-XC8BwMu4pWbv4Hqx-XqBuARO4,1393
|
|
3
|
-
jolt/cache.py,sha256=JHpz5AyY05H_I4lVqko-YGlhnQrw5k7hWTkit8R0u48,65297
|
|
4
|
-
jolt/chroot.py,sha256=o7qpMfDJw7fGGDWGXfFb3Ky8r16IlUW1P5N3F_bf-bo,3768
|
|
5
|
-
jolt/cli.py,sha256=cz5gDBThwQhH_cyNJRR9Lzt7PtNoRYmX1VskgGz3hxM,42564
|
|
6
|
-
jolt/colors.py,sha256=P6vhaILGoOn8odEwQ6-z871YQoTe3HRLgS6clavwVHs,737
|
|
7
|
-
jolt/common_pb2.py,sha256=vS9T9MOSNuG0iMoiQmqmXxo5p_tVry83PNh6V9VW3YY,5654
|
|
8
|
-
jolt/common_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
9
|
-
jolt/config.py,sha256=iD4OQuzLiMAp0FW9v_-PWT899s2TGX7YKjiubDZ-S2w,9229
|
|
10
|
-
jolt/error.py,sha256=s19gQwTXDovl3Vh5XTmsU-3bdTBx1apg3FRCczvAJQs,2110
|
|
11
|
-
jolt/expires.py,sha256=GDagfgJOlX_z2LLIFhKHBaXI96jo1S3ca2OGWQi1oj4,2330
|
|
12
|
-
jolt/filesystem.py,sha256=N19E0X6nSerdRjpIE9k2Cq5XTjGhMlrWVCbj2WEs56E,5969
|
|
13
|
-
jolt/graph.py,sha256=zMTCbz08_SL7Mbbu8g3ug7nYXWlFQ9ofn2acNMVJvDM,32616
|
|
14
|
-
jolt/hooks.py,sha256=jcCaNwlyFrWkXrO6MiO_roDQVohefbablfXnuQ3dmmM,11029
|
|
15
|
-
jolt/influence.py,sha256=Tl7y4L1a3Rk12IWRkyxRRWP9f1RbTT8phzIwgVx9I6M,15943
|
|
16
|
-
jolt/inspection.py,sha256=QkOCXAbjJBdw1SMsb6xH_3GHXV5BcdzaGD7HrGmOJss,3931
|
|
17
|
-
jolt/loader.py,sha256=trc9XGZ-_X6AZb9vpyS5elJn3OjWLWV6o6ujr_ztvA0,13152
|
|
18
|
-
jolt/log.py,sha256=UbFmI5uVK7Uap0UtvnhcePIdXu9KE8yEYJ_5R0ZxwF0,12149
|
|
19
|
-
jolt/manifest.py,sha256=H72M3-pClJNJIPGV4iuBpYCGwxzKVKajU2yjUHOz9Dk,8176
|
|
20
|
-
jolt/options.py,sha256=7pUY4vsjB2nldu3WzDYrDo0BJTQtxpA_xE-4P7CH1YM,397
|
|
21
|
-
jolt/scheduler.py,sha256=B_WsVIjVW3N-sFKFpJsmWS2TnhOl7ggJcE-u1Z-pMBs,20948
|
|
22
|
-
jolt/tasks.py,sha256=ZxxbGfFmYYVXkR6oXiydCNmuBAQ5Z5YxuW04F0ydvDg,107172
|
|
23
|
-
jolt/tools.py,sha256=5LKSeRfxqVs-5kL8tXqHAtnjtJucXMlUjlmEpynAd0A,69230
|
|
24
|
-
jolt/utils.py,sha256=VDe01tTEAsMx8z7DPC3e3ANXL87Ok1X0NObYeVJlub4,14221
|
|
25
|
-
jolt/version.py,sha256=N9S-x04pXgGDYctRh1X0tER1DyF_91Cd7nezAUhEGXQ,24
|
|
26
|
-
jolt/version_utils.py,sha256=tNCGT6ZmSGFHW1aw2Hx1l19m-RR1UnTN6xJV1I54KRw,3900
|
|
27
|
-
jolt/xmldom.py,sha256=bD-d5OG9_I_nFRdMN397D62xM3L_bXPvK8FYTX-4uos,5543
|
|
28
|
-
jolt/pkgs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
jolt/pkgs/golang.py,sha256=r5QLhyAswvMMEbTZiKdZxSwPxn3if-NT2T-MkXIND_8,1153
|
|
30
|
-
jolt/pkgs/nodejs.py,sha256=lqO7snxMhHb0ZiG0YfU_JtDGXkXU2zxJ5_Ac4uoM0Xk,1197
|
|
31
|
-
jolt/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
-
jolt/plugins/alias.py,sha256=yRstDB8H-JPiN3-hwI6hnt8Seh7KBr3U-Vam8UivUWA,313
|
|
33
|
-
jolt/plugins/allure.py,sha256=Vwz3KGRre4wYXvxuuGMTA7R1QJB1SiY9PoKQ6OLgUps,10218
|
|
34
|
-
jolt/plugins/amqp.py,sha256=9EU3eGFwg9pqjJyllvSUGmlz4KAT0KdNz-bH7Qu3D4s,33071
|
|
35
|
-
jolt/plugins/autoweight.py,sha256=LTpma3HM1jsAx1PatDIWcddAkRw1SPhHA4Dl9H9p2lo,1245
|
|
36
|
-
jolt/plugins/cache.py,sha256=vY3uDnvtfTzxfTw4idhQ4q3NxmC9yljRMQYuWIpDwLE,4238
|
|
37
|
-
jolt/plugins/cmake.py,sha256=IAF8PhaaByJVwBYSEdVlu1MdIyhXp8Luv4ygIvtPkqo,2687
|
|
38
|
-
jolt/plugins/conan.py,sha256=fTidFjF5lKYsrTRb_yokmnRUvMIt6FNhAPMT-5wz5_w,7654
|
|
39
|
-
jolt/plugins/cxx.py,sha256=UqcBIcjCphRB2ojknU4v5vRv_6i3CmIAFZS1T3dXWVc,30487
|
|
40
|
-
jolt/plugins/cxxinfo.py,sha256=yuHkgT2Lqg2v1GmrjINXBF--KeSOfMya7_HN8AA2hbw,2398
|
|
41
|
-
jolt/plugins/dashboard.py,sha256=5XxU7J33htfc7rxPXTob37rOpehtWZh6N-HVlNHAluM,642
|
|
42
|
-
jolt/plugins/debian.py,sha256=5uzICZzFscV-HwLqvlqtLr7EpcUFm0N5qa2jDoHd3A8,11569
|
|
43
|
-
jolt/plugins/docker.py,sha256=F4HGf9OX0UWDm1-s_vlxs01GVobj5HqRaPwv_VcOUso,19561
|
|
44
|
-
jolt/plugins/email.py,sha256=esONwpn7xKJLh4SYGZ0GpSZ2UwzWsckfsAPCeYdZSVw,3549
|
|
45
|
-
jolt/plugins/email.xslt,sha256=8XlMIH_6h4eBWa9-FgxFNOdHYUf3qtj92vBnOgHoa9Y,8171
|
|
46
|
-
jolt/plugins/environ.py,sha256=TKyajli6790VRMAVFKxKxUgdTR8Gg-4ftsgTd05cO74,3371
|
|
47
|
-
jolt/plugins/gdb.py,sha256=jybMNiV4atKvTHuXrkj05JACVitsQx0-IXpk4k3rEcU,5668
|
|
48
|
-
jolt/plugins/gerrit.py,sha256=qkRq9U5Eka0ZGl3BivI5az17Coxf9MT3sB_S0F_-j18,1393
|
|
49
|
-
jolt/plugins/git.py,sha256=RbV-Vdmlw7anpuaehBXx42I2oLJzzrEcwN_AQQdHjNk,15006
|
|
50
|
-
jolt/plugins/golang.py,sha256=vV4iRoJpWkyfrBa96s6jgU8Sz8GnGl-lzG_FSj5epzQ,2049
|
|
51
|
-
jolt/plugins/googletest.py,sha256=pTCFgOlQ0OlK-ADKwrhjXdkDu9F8KXn3PIP53lTsORA,18704
|
|
52
|
-
jolt/plugins/http.py,sha256=m6S48qyX-WDmI0nHM3rCu7_RfXdTIsxSsiW7UVjWLNY,3817
|
|
53
|
-
jolt/plugins/junit.py,sha256=_1vXMEQBNuLbwc8l4UFm1iONYdehxJxWDRgFtPy3do8,1342
|
|
54
|
-
jolt/plugins/logstash.py,sha256=0Se6ZDBuwUZkSdquqBJk3MzRd0BltClmzPl_lYrR_rw,1788
|
|
55
|
-
jolt/plugins/ninja-compdb.py,sha256=d89u86f_jxCZIyLKMV4GoMPCPlY3Pu4sIKW1wPOzfQM,8163
|
|
56
|
-
jolt/plugins/ninja.py,sha256=EC5X2C6I60Lj5Ty8J16OPAjMrEyde16I84lCIH-KgXU,99158
|
|
57
|
-
jolt/plugins/nodejs.py,sha256=HHDbvmdlqnao3qOtpCD9UY7iyTIX4gb2WxKUBtn-3cM,1879
|
|
58
|
-
jolt/plugins/paths.py,sha256=lcHQdTrc7jQ-lHFWJhOUzm9TKLf1CyCn_d9op_KVcV4,1686
|
|
59
|
-
jolt/plugins/podman.py,sha256=DbVxgDr23gjI0v_jVAcueJSv-UUw7mlsxcHNEYNzVT0,20569
|
|
60
|
-
jolt/plugins/python.py,sha256=kLx1Y3ezMH9AOW36DH_cNyDlvbIdTkyvPjwLYolnCEU,3073
|
|
61
|
-
jolt/plugins/repo.py,sha256=tBlNVrn5F1kU8D-kHOfUTMUcPdMnG_BbP44hirALHNA,8947
|
|
62
|
-
jolt/plugins/report.py,sha256=5XQeDQk2CvOXCMKpSkk_cLAl8mnG0uu5o9Y720NUM40,2366
|
|
63
|
-
jolt/plugins/scheduler.py,sha256=b-AWkkKeaoOhxwUJy-kHKUsOHNN7qQupVRSPvtHIXUY,22409
|
|
64
|
-
jolt/plugins/selfdeploy.py,sha256=hnwz8CuxbRkFOdTIJuo4UCy8E2Nis62_IdzzjlEzf7g,6301
|
|
65
|
-
jolt/plugins/snap.py,sha256=i8MDcDQI65PEza287nTdEUir5Eori6U2oe8sc95UWMQ,3618
|
|
66
|
-
jolt/plugins/strings.py,sha256=ngrSxPT2eFOlmJkc8ZKEabYL5ltisFnwxldRQUgen8k,1538
|
|
67
|
-
jolt/plugins/symlinks.py,sha256=pj3VgpLbIx9GQTvuClnuLPV7CXno4l35zDrxKSjojKg,2269
|
|
68
|
-
jolt/plugins/telemetry.py,sha256=tPt6xeF6i2XN6gXBP-JMiMorf9LUr6OSIuk7PtIneIw,3600
|
|
69
|
-
jolt/plugins/timeline.py,sha256=pqQpnhYjE3eRnOZUSHI4Qz6X4Ehvo-kAaRXdRihdXaM,1620
|
|
70
|
-
jolt/plugins/volume.py,sha256=xBU9BWtHakSbmac5V3-OAdixm4gsU8MPcWQg3yHZ5Ig,3274
|
|
71
|
-
jolt/plugins/yaml-ninja.py,sha256=6V5YlGaZ3G1EyCTW6flMcslIh6DHttRSoUXdi0rX2Mc,3060
|
|
72
|
-
jolt/plugins/yamltask.py,sha256=yECalMWOI48rn7yqWwxXxlSq1HDKnJ2llLD_SI_Ogys,3528
|
|
73
|
-
jolt/plugins/remote_execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
|
-
jolt/plugins/remote_execution/administration_pb2.py,sha256=tL4JL-gtmIzDqAFDkBboxlZeQBLxHkKxDoDWEWEUtCk,2391
|
|
75
|
-
jolt/plugins/remote_execution/administration_pb2_grpc.py,sha256=8NeUwQibDEv-Kt3ceKG9_RGNMkal1Y7PyNvZhWjX4Q8,8163
|
|
76
|
-
jolt/plugins/remote_execution/log_pb2.py,sha256=JkAtAtL33sXtbXpM6BlweihVp2Y40zLMXAzSOgTuvd4,1793
|
|
77
|
-
jolt/plugins/remote_execution/log_pb2_grpc.py,sha256=j5N8zM7P7I-lzgv9J4ioi8ed7i8_GOXUccKl7ZR_OO8,2714
|
|
78
|
-
jolt/plugins/remote_execution/scheduler_pb2.py,sha256=TJrLXJpoz5Q-fbEQjsjENHSm1yZ0LqSIuNftnJvvBMQ,2843
|
|
79
|
-
jolt/plugins/remote_execution/scheduler_pb2_grpc.py,sha256=H7Is9caU681Qau5nZZ3Ks2wXX-DPqAZRslvDDMuPE5g,6309
|
|
80
|
-
jolt/plugins/remote_execution/worker_pb2.py,sha256=bwXJHyV-kebo1jaUDlhLrm5EVffPrhyc58GziQo5-DM,2685
|
|
81
|
-
jolt/plugins/remote_execution/worker_pb2_grpc.py,sha256=A-XLtuLjI2jBUdLPH-oa1qcJeYI1bmtWDnUOka2bG_s,5047
|
|
82
|
-
jolt/plugins/selfdeploy/README.rst,sha256=dAer5CQHPOOCUAMcVljKzn5ICzjsNKWhw2tAvBAL8So,3130
|
|
83
|
-
jolt/plugins/selfdeploy/setup.py,sha256=sfDy9GGChdjOi6OCBjADpOJNqv8FJC53rKlRcdM2TsE,3135
|
|
84
|
-
jolt/templates/cxxexecutable.cmake.template,sha256=f0dg1VOFlamlF8fuHFTki5dsJ2ssSupiqk62QmRby4Y,1720
|
|
85
|
-
jolt/templates/cxxlibrary.cmake.template,sha256=GMEG2G3QoY3E5fsNer52zOqgM221-abeCkV__mVbZ94,1750
|
|
86
|
-
jolt/templates/export.sh.template,sha256=PKkflGXFbq70EIsowqcnLvzbnEDnqh_WgC4E_JNT0VE,1937
|
|
87
|
-
jolt/templates/timeline.html.template,sha256=w6K11kwyMrA7w3GWlVlubbK0a3vcP6TGXU5n-0s6PP4,1410
|
|
88
|
-
jolt-0.9.172.dist-info/METADATA,sha256=rBckgwQQNpp6mAWrj-hNz0vbI_CABGrzD1FyGNh3UOY,5534
|
|
89
|
-
jolt-0.9.172.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
90
|
-
jolt-0.9.172.dist-info/entry_points.txt,sha256=VZ-QH38Z9HJc1O57wfzr-soHn6exwc3N0TSrRum4tYg,44
|
|
91
|
-
jolt-0.9.172.dist-info/top_level.txt,sha256=HwzVmAwUrvCUUHRi3zUfcpdKTsdNrZmPCvsrsWSFyqE,5
|
|
92
|
-
jolt-0.9.172.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|