jolt 0.9.76__py3-none-any.whl → 0.9.429__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 (201) hide show
  1. jolt/__init__.py +88 -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 +839 -367
  6. jolt/chroot.py +156 -0
  7. jolt/cli.py +362 -143
  8. jolt/common_pb2.py +63 -0
  9. jolt/common_pb2_grpc.py +4 -0
  10. jolt/config.py +99 -42
  11. jolt/error.py +19 -4
  12. jolt/expires.py +2 -2
  13. jolt/filesystem.py +8 -6
  14. jolt/graph.py +705 -117
  15. jolt/hooks.py +63 -1
  16. jolt/influence.py +129 -6
  17. jolt/loader.py +369 -121
  18. jolt/log.py +225 -63
  19. jolt/manifest.py +28 -38
  20. jolt/options.py +35 -10
  21. jolt/pkgs/abseil.py +42 -0
  22. jolt/pkgs/asio.py +25 -0
  23. jolt/pkgs/autoconf.py +41 -0
  24. jolt/pkgs/automake.py +41 -0
  25. jolt/pkgs/b2.py +31 -0
  26. jolt/pkgs/boost.py +111 -0
  27. jolt/pkgs/boringssl.py +32 -0
  28. jolt/pkgs/busybox.py +39 -0
  29. jolt/pkgs/bzip2.py +43 -0
  30. jolt/pkgs/cares.py +29 -0
  31. jolt/pkgs/catch2.py +36 -0
  32. jolt/pkgs/cbindgen.py +17 -0
  33. jolt/pkgs/cista.py +19 -0
  34. jolt/pkgs/clang.py +44 -0
  35. jolt/pkgs/cli11.py +23 -0
  36. jolt/pkgs/cmake.py +48 -0
  37. jolt/pkgs/cpython.py +196 -0
  38. jolt/pkgs/crun.py +29 -0
  39. jolt/pkgs/curl.py +38 -0
  40. jolt/pkgs/dbus.py +18 -0
  41. jolt/pkgs/double_conversion.py +24 -0
  42. jolt/pkgs/fastfloat.py +21 -0
  43. jolt/pkgs/ffmpeg.py +28 -0
  44. jolt/pkgs/flatbuffers.py +29 -0
  45. jolt/pkgs/fmt.py +27 -0
  46. jolt/pkgs/fstree.py +20 -0
  47. jolt/pkgs/gflags.py +18 -0
  48. jolt/pkgs/glib.py +18 -0
  49. jolt/pkgs/glog.py +25 -0
  50. jolt/pkgs/glslang.py +21 -0
  51. jolt/pkgs/golang.py +16 -11
  52. jolt/pkgs/googlebenchmark.py +18 -0
  53. jolt/pkgs/googletest.py +46 -0
  54. jolt/pkgs/gperf.py +15 -0
  55. jolt/pkgs/grpc.py +73 -0
  56. jolt/pkgs/hdf5.py +19 -0
  57. jolt/pkgs/help2man.py +14 -0
  58. jolt/pkgs/inja.py +28 -0
  59. jolt/pkgs/jsoncpp.py +31 -0
  60. jolt/pkgs/libarchive.py +43 -0
  61. jolt/pkgs/libcap.py +44 -0
  62. jolt/pkgs/libdrm.py +44 -0
  63. jolt/pkgs/libedit.py +42 -0
  64. jolt/pkgs/libevent.py +31 -0
  65. jolt/pkgs/libexpat.py +27 -0
  66. jolt/pkgs/libfastjson.py +21 -0
  67. jolt/pkgs/libffi.py +16 -0
  68. jolt/pkgs/libglvnd.py +30 -0
  69. jolt/pkgs/libogg.py +28 -0
  70. jolt/pkgs/libpciaccess.py +18 -0
  71. jolt/pkgs/libseccomp.py +21 -0
  72. jolt/pkgs/libtirpc.py +24 -0
  73. jolt/pkgs/libtool.py +42 -0
  74. jolt/pkgs/libunwind.py +35 -0
  75. jolt/pkgs/libva.py +18 -0
  76. jolt/pkgs/libvorbis.py +33 -0
  77. jolt/pkgs/libxml2.py +35 -0
  78. jolt/pkgs/libxslt.py +17 -0
  79. jolt/pkgs/libyajl.py +16 -0
  80. jolt/pkgs/llvm.py +81 -0
  81. jolt/pkgs/lua.py +54 -0
  82. jolt/pkgs/lz4.py +26 -0
  83. jolt/pkgs/m4.py +14 -0
  84. jolt/pkgs/make.py +17 -0
  85. jolt/pkgs/mesa.py +81 -0
  86. jolt/pkgs/meson.py +17 -0
  87. jolt/pkgs/mstch.py +28 -0
  88. jolt/pkgs/mysql.py +60 -0
  89. jolt/pkgs/nasm.py +49 -0
  90. jolt/pkgs/ncurses.py +30 -0
  91. jolt/pkgs/ng_log.py +25 -0
  92. jolt/pkgs/ninja.py +45 -0
  93. jolt/pkgs/nlohmann_json.py +25 -0
  94. jolt/pkgs/nodejs.py +19 -11
  95. jolt/pkgs/opencv.py +24 -0
  96. jolt/pkgs/openjdk.py +26 -0
  97. jolt/pkgs/openssl.py +103 -0
  98. jolt/pkgs/paho.py +76 -0
  99. jolt/pkgs/patchelf.py +16 -0
  100. jolt/pkgs/perl.py +42 -0
  101. jolt/pkgs/pkgconfig.py +64 -0
  102. jolt/pkgs/poco.py +39 -0
  103. jolt/pkgs/protobuf.py +77 -0
  104. jolt/pkgs/pugixml.py +27 -0
  105. jolt/pkgs/python.py +19 -0
  106. jolt/pkgs/qt.py +35 -0
  107. jolt/pkgs/rapidjson.py +26 -0
  108. jolt/pkgs/rapidyaml.py +28 -0
  109. jolt/pkgs/re2.py +30 -0
  110. jolt/pkgs/re2c.py +17 -0
  111. jolt/pkgs/readline.py +15 -0
  112. jolt/pkgs/rust.py +41 -0
  113. jolt/pkgs/sdl.py +28 -0
  114. jolt/pkgs/simdjson.py +27 -0
  115. jolt/pkgs/soci.py +46 -0
  116. jolt/pkgs/spdlog.py +29 -0
  117. jolt/pkgs/spirv_llvm.py +21 -0
  118. jolt/pkgs/spirv_tools.py +24 -0
  119. jolt/pkgs/sqlite.py +83 -0
  120. jolt/pkgs/ssl.py +12 -0
  121. jolt/pkgs/texinfo.py +15 -0
  122. jolt/pkgs/tomlplusplus.py +22 -0
  123. jolt/pkgs/wayland.py +26 -0
  124. jolt/pkgs/x11.py +58 -0
  125. jolt/pkgs/xerces_c.py +20 -0
  126. jolt/pkgs/xorg.py +360 -0
  127. jolt/pkgs/xz.py +29 -0
  128. jolt/pkgs/yamlcpp.py +30 -0
  129. jolt/pkgs/zeromq.py +47 -0
  130. jolt/pkgs/zlib.py +69 -0
  131. jolt/pkgs/zstd.py +33 -0
  132. jolt/plugins/alias.py +3 -0
  133. jolt/plugins/allure.py +5 -2
  134. jolt/plugins/autotools.py +66 -0
  135. jolt/plugins/cache.py +133 -0
  136. jolt/plugins/cmake.py +74 -6
  137. jolt/plugins/conan.py +238 -0
  138. jolt/plugins/cxx.py +698 -0
  139. jolt/plugins/cxxinfo.py +7 -0
  140. jolt/plugins/dashboard.py +1 -1
  141. jolt/plugins/docker.py +91 -23
  142. jolt/plugins/email.py +5 -2
  143. jolt/plugins/email.xslt +144 -101
  144. jolt/plugins/environ.py +11 -0
  145. jolt/plugins/fetch.py +141 -0
  146. jolt/plugins/gdb.py +44 -21
  147. jolt/plugins/gerrit.py +1 -14
  148. jolt/plugins/git.py +316 -101
  149. jolt/plugins/googletest.py +522 -1
  150. jolt/plugins/http.py +36 -38
  151. jolt/plugins/libtool.py +63 -0
  152. jolt/plugins/linux.py +990 -0
  153. jolt/plugins/logstash.py +4 -4
  154. jolt/plugins/meson.py +61 -0
  155. jolt/plugins/ninja-compdb.py +107 -31
  156. jolt/plugins/ninja.py +929 -134
  157. jolt/plugins/paths.py +11 -1
  158. jolt/plugins/pkgconfig.py +219 -0
  159. jolt/plugins/podman.py +148 -91
  160. jolt/plugins/python.py +137 -0
  161. jolt/plugins/remote_execution/__init__.py +0 -0
  162. jolt/plugins/remote_execution/administration_pb2.py +46 -0
  163. jolt/plugins/remote_execution/administration_pb2_grpc.py +170 -0
  164. jolt/plugins/remote_execution/log_pb2.py +32 -0
  165. jolt/plugins/remote_execution/log_pb2_grpc.py +68 -0
  166. jolt/plugins/remote_execution/scheduler_pb2.py +41 -0
  167. jolt/plugins/remote_execution/scheduler_pb2_grpc.py +141 -0
  168. jolt/plugins/remote_execution/worker_pb2.py +38 -0
  169. jolt/plugins/remote_execution/worker_pb2_grpc.py +112 -0
  170. jolt/plugins/report.py +12 -2
  171. jolt/plugins/rust.py +25 -0
  172. jolt/plugins/scheduler.py +710 -0
  173. jolt/plugins/selfdeploy/setup.py +9 -4
  174. jolt/plugins/selfdeploy.py +138 -88
  175. jolt/plugins/strings.py +35 -22
  176. jolt/plugins/symlinks.py +26 -11
  177. jolt/plugins/telemetry.py +5 -2
  178. jolt/plugins/timeline.py +13 -3
  179. jolt/plugins/volume.py +46 -48
  180. jolt/scheduler.py +591 -191
  181. jolt/tasks.py +1783 -245
  182. jolt/templates/export.sh.template +12 -6
  183. jolt/templates/timeline.html.template +44 -47
  184. jolt/timer.py +22 -0
  185. jolt/tools.py +749 -302
  186. jolt/utils.py +245 -18
  187. jolt/version.py +1 -1
  188. jolt/version_utils.py +2 -2
  189. jolt/xmldom.py +12 -2
  190. {jolt-0.9.76.dist-info → jolt-0.9.429.dist-info}/METADATA +98 -38
  191. jolt-0.9.429.dist-info/RECORD +207 -0
  192. {jolt-0.9.76.dist-info → jolt-0.9.429.dist-info}/WHEEL +1 -1
  193. jolt/plugins/amqp.py +0 -834
  194. jolt/plugins/debian.py +0 -338
  195. jolt/plugins/ftp.py +0 -181
  196. jolt/plugins/ninja-cache.py +0 -64
  197. jolt/plugins/ninjacli.py +0 -271
  198. jolt/plugins/repo.py +0 -253
  199. jolt-0.9.76.dist-info/RECORD +0 -79
  200. {jolt-0.9.76.dist-info → jolt-0.9.429.dist-info}/entry_points.txt +0 -0
  201. {jolt-0.9.76.dist-info → jolt-0.9.429.dist-info}/top_level.txt +0 -0
jolt/pkgs/autoconf.py ADDED
@@ -0,0 +1,41 @@
1
+ from jolt import attributes, Parameter
2
+ from jolt.pkgs import help2man, m4, texinfo
3
+ from jolt.plugins import git, autotools
4
+ from jolt.tasks import TaskRegistry
5
+
6
+
7
+ @attributes.requires("requires_git")
8
+ @attributes.requires("requires_help2man")
9
+ @attributes.requires("requires_m4")
10
+ @attributes.requires("requires_texinfo")
11
+ class Autoconf(autotools.Autotools):
12
+ name = "autoconf"
13
+ version = Parameter("2.72", help="Autoconf version.")
14
+ requires_git = ["fetch:alias=src,url=https://ftpmirror.gnu.org/gnu/autoconf/autoconf-{version}.tar.gz"]
15
+ requires_help2man = ["help2man"]
16
+ requires_m4 = ["m4"]
17
+ requires_texinfo = ["texinfo"]
18
+ srcdir = "{fetch[src]}/autoconf-{version}"
19
+
20
+ def publish(self, artifact, tools):
21
+ super().publish(artifact, tools)
22
+ self.unpack(artifact, tools)
23
+
24
+ def unpack(self, artifact, tools):
25
+ with tools.cwd(artifact.path, "bin"):
26
+ for file in tools.glob("*"):
27
+ tools.replace_in_file(
28
+ file,
29
+ artifact.strings.install_prefix,
30
+ artifact.final_path)
31
+
32
+ with tools.cwd(artifact.path, "share/autoconf"):
33
+ tools.replace_in_file(
34
+ "autom4te.cfg",
35
+ artifact.strings.install_prefix,
36
+ artifact.final_path)
37
+
38
+ artifact.strings.install_prefix = artifact.final_path
39
+
40
+
41
+ TaskRegistry.get().add_task_class(Autoconf)
jolt/pkgs/automake.py ADDED
@@ -0,0 +1,41 @@
1
+ from jolt import attributes, Parameter, Task
2
+ from jolt.plugins import git, autotools
3
+ from jolt.tasks import TaskRegistry
4
+
5
+
6
+ @attributes.requires("requires_git")
7
+ @attributes.requires("requires_texinfo")
8
+ @autotools.requires(automake=False, libtool=False)
9
+ class Automake(autotools.Autotools):
10
+ name = "automake"
11
+ version = Parameter("1.18.1", help="Automake version.")
12
+ requires_git = ["fetch:alias=src,url=https://ftpmirror.gnu.org/gnu/automake/automake-{version}.tar.xz"]
13
+ requires_texinfo = ["texinfo"]
14
+ srcdir = "{fetch[src]}/automake-{version}"
15
+
16
+ def publish(self, artifact, tools):
17
+ super().publish(artifact, tools)
18
+ self.unpack(artifact, tools)
19
+
20
+ def unpack(self, artifact, tools):
21
+ with tools.cwd(artifact.path, "bin"):
22
+ for file in tools.glob("*"):
23
+ tools.replace_in_file(
24
+ file,
25
+ artifact.strings.install_prefix,
26
+ artifact.final_path)
27
+
28
+ for file in tools.glob(artifact.path + "/share/automake-*/Automake/Config.pm"):
29
+ tools.replace_in_file(
30
+ file,
31
+ artifact.strings.install_prefix,
32
+ artifact.final_path)
33
+
34
+ with tools.cwd(artifact.path):
35
+ for file in tools.glob("share/aclocal-*"):
36
+ artifact.environ.ACLOCAL_PATH.append(file)
37
+
38
+ artifact.strings.install_prefix = artifact.final_path
39
+
40
+
41
+ TaskRegistry.get().add_task_class(Automake)
jolt/pkgs/b2.py ADDED
@@ -0,0 +1,31 @@
1
+ import os
2
+ from jolt import attributes, Parameter
3
+ from jolt.plugins import git
4
+ from jolt.tasks import Task, TaskRegistry
5
+
6
+
7
+ @attributes.common_metadata()
8
+ @attributes.requires("requires_git")
9
+ @attributes.system
10
+ class B2(Task):
11
+ name = "b2"
12
+ version = Parameter("5.4.2", help="B2 version.")
13
+ requires_git = ["git:url=https://github.com/bfgroup/b2.git"]
14
+
15
+ def run(self, artifact, tools):
16
+ self.builddir = tools.builddir("build", incremental=True)
17
+ self.installdir = tools.builddir("install")
18
+ with tools.cwd("{git[b2]}"):
19
+ if self.system == "windows":
20
+ tools.run(".\\bootstrap.bat")
21
+ tools.run(".\\b2 install --prefix={installdir} --build-dir={builddir} -j{}", tools.cpu_count())
22
+ else:
23
+ tools.run("./bootstrap.sh")
24
+ tools.run("./b2 install --prefix={installdir} --build-dir={builddir} -j{}", tools.cpu_count())
25
+
26
+ def publish(self, artifact, tools):
27
+ with tools.cwd(self.installdir):
28
+ artifact.collect("*", symlinks=True)
29
+
30
+
31
+ TaskRegistry.get().add_task_class(B2)
jolt/pkgs/boost.py ADDED
@@ -0,0 +1,111 @@
1
+ import os
2
+ from jolt import attributes, Alias, BooleanParameter, Download, IntParameter, Parameter
3
+ from jolt.pkgs import cpython
4
+ from jolt.plugins import git
5
+ from jolt.tasks import Task, TaskRegistry
6
+ from jolt.error import raise_task_error_if
7
+
8
+
9
+ @attributes.common_metadata()
10
+ @attributes.requires("requires_git")
11
+ @attributes.requires("requires_python_{python[on,off]}")
12
+ @attributes.system
13
+ class Boost(Task):
14
+ name = "boost"
15
+ version = Parameter("1.90.0", help="Boost version.")
16
+ shared = BooleanParameter(False, help="Build shared libraries")
17
+ python = BooleanParameter(False, help="Build Boost.Python")
18
+ bits = IntParameter(64, values=[32, 64], help="Boost address-model")
19
+ requires_git = ["git:url=https://github.com/boostorg/boost.git,path={buildroot}/git-boost,rev=boost-{version},submodules=true"]
20
+ requires_python_on = ["cpython"]
21
+
22
+ def write_user_config(self, deps, tools):
23
+ content = ""
24
+
25
+ if self.python:
26
+ py_exe = tools.which("python3")
27
+ raise_task_error_if(
28
+ py_exe is None, self,
29
+ "Boost.Python requested, but no Python interpreter found in PATH.",
30
+ )
31
+
32
+ # Find the dependency where the Python interpreter is located
33
+ py_dep = None
34
+ py_prefix = os.path.dirname(os.path.dirname(py_exe))
35
+ for _, dep in deps.items():
36
+ if dep.path == py_prefix:
37
+ py_dep = dep
38
+ break
39
+
40
+ raise_task_error_if(
41
+ py_dep is None, self,
42
+ "Boost.Python requested, but the Python dependency could not be found.",
43
+ )
44
+
45
+ py_version = str(py_dep.strings.version_major)
46
+ content += f"using python : {py_version} : {py_prefix}/bin/python{py_version} : {py_prefix}/include/python{py_version} : {py_prefix}/lib ;\n"
47
+
48
+ tools.write_file(
49
+ self.userconfigfile,
50
+ content,
51
+ )
52
+
53
+ def clean(self, tools):
54
+ self.builddir = tools.builddir("build", incremental=True)
55
+ self.installdir = tools.builddir("install")
56
+ tools.rmtree(self.builddir)
57
+ tools.rmtree(self.installdir)
58
+
59
+ def run(self, deps, tools):
60
+ self.builddir = tools.builddir("build", incremental=True)
61
+ self.installdir = tools.builddir("install")
62
+ self.userconfigfile = tools.expand_path("{builddir}/user-config.jam")
63
+ self.write_user_config(deps, tools)
64
+
65
+ without_libs = []
66
+ if not self.python:
67
+ without_libs.append("python")
68
+
69
+ bootstrap_cmd = []
70
+ if without_libs:
71
+ bootstrap_cmd = ["--without-libraries={}".format(",".join(without_libs))]
72
+
73
+ b2_cmd = [
74
+ "install",
75
+ "address-model={bits}",
76
+ "link={shared[shared,static]}",
77
+ "--prefix={installdir}",
78
+ "--build-dir={builddir}",
79
+ "--user-config={userconfigfile}",
80
+ "-j{}".format(tools.cpu_count()),
81
+ ]
82
+
83
+ with tools.cwd("{git[boost]}"):
84
+ if self.system == "windows":
85
+ bootstrap_cmd = [".\\bootstrap.bat", "msvc"] + bootstrap_cmd
86
+ b2_cmd = [".\\b2"] + b2_cmd
87
+ else:
88
+ bootstrap_cmd = ["./bootstrap.sh"] + bootstrap_cmd
89
+ b2_cmd = ["./b2"] + b2_cmd
90
+
91
+ tools.run(" ".join(bootstrap_cmd))
92
+ tools.run(" ".join(b2_cmd))
93
+
94
+ def publish(self, artifact, tools):
95
+ with tools.cwd(self.installdir):
96
+ artifact.collect("*", symlinks=True)
97
+ artifact.cxxinfo.incpaths.append("include")
98
+ artifact.cxxinfo.libpaths.append("lib")
99
+
100
+ with tools.cwd(self.installdir, "lib"):
101
+ for lib in tools.glob("libboost_*.a"):
102
+ name, _ = os.path.splitext(os.path.basename(lib))
103
+ artifact.cxxinfo.libraries.append(name[3:])
104
+
105
+ arch = tools.getenv("VSCMD_ARG_TGT_ARCH", "x64")
106
+ for lib in tools.glob(f"lib*-mt-{arch}-*.lib"):
107
+ name, _ = os.path.splitext(lib)
108
+ artifact.cxxinfo.libraries.append(name)
109
+
110
+
111
+ TaskRegistry.get().add_task_class(Boost)
jolt/pkgs/boringssl.py ADDED
@@ -0,0 +1,32 @@
1
+ from jolt import attributes, BooleanParameter, Parameter
2
+ from jolt.pkgs import nasm
3
+ from jolt.plugins import cmake, git
4
+ from jolt.tasks import TaskRegistry
5
+
6
+
7
+ @attributes.requires("requires_git")
8
+ @attributes.requires("requires_nasm_{system}")
9
+ @attributes.common_metadata()
10
+ @attributes.system
11
+ @cmake.requires()
12
+ @cmake.use_ninja()
13
+ class BoringSSL(cmake.CMake):
14
+ name = "boringssl"
15
+ version = Parameter("0.20251124.0", help="boringssl version.")
16
+ shared = BooleanParameter(False, help="Build shared libraries.")
17
+ requires_git = ["git:url=https://github.com/google/boringssl.git,rev={version}"]
18
+ requires_nasm_windows = ["nasm"]
19
+ srcdir = "{git[boringssl]}"
20
+ options = [
21
+ "BUILD_SHARED_LIBS={shared[ON,OFF]}",
22
+ ]
23
+
24
+ def publish(self, artifact, tools):
25
+ super().publish(artifact, tools)
26
+ artifact.cxxinfo.incpaths.append("include")
27
+ artifact.cxxinfo.libpaths.append("lib")
28
+ artifact.cxxinfo.libraries.append("ssl")
29
+ artifact.cxxinfo.libraries.append("crypto")
30
+
31
+
32
+ TaskRegistry.get().add_task_class(BoringSSL)
jolt/pkgs/busybox.py ADDED
@@ -0,0 +1,39 @@
1
+ from jolt import attributes, influence, Parameter, Task
2
+ from jolt.plugins import git
3
+ from jolt.tasks import TaskRegistry
4
+
5
+
6
+ @attributes.requires("requires_git")
7
+ class BusyBox(Task):
8
+ name = "busybox"
9
+ defconfig = Parameter(required=False, help="BusyBox defconfig file.")
10
+ version = Parameter("1.37.0", help="BusyBox version.")
11
+ requires_git = ["git:url=git://busybox.net/busybox.git,rev={version_tag}"]
12
+ srcdir = "{git[busybox]}"
13
+
14
+ @property
15
+ def version_tag(self):
16
+ return str(self.version).replace(".", "_")
17
+
18
+ @property
19
+ def defconfig_arg(self):
20
+ if self.defconfig:
21
+ return f"{self.defconfig}_defconfig"
22
+ return "defconfig"
23
+
24
+ def run(self, deps, tools):
25
+ self.outdir = tools.builddir()
26
+ self.installdir = tools.builddir("install")
27
+
28
+ with tools.cwd(self.srcdir):
29
+ tools.run("make O={outdir} {defconfig_arg}")
30
+ tools.run("make O={outdir} -j{}", tools.cpu_count())
31
+ tools.run("make O={outdir} install DESTDIR={installdir}")
32
+
33
+ def publish(self, artifact, tools):
34
+ artifact.environ.PATH.append("bin")
35
+ with tools.cwd(self.installdir):
36
+ artifact.collect("*", symlinks=True)
37
+
38
+
39
+ TaskRegistry.get().add_task_class(BusyBox)
jolt/pkgs/bzip2.py ADDED
@@ -0,0 +1,43 @@
1
+ from jolt import attributes, BooleanParameter, Parameter
2
+ from jolt.tasks import TaskRegistry
3
+ from jolt.plugins import fetch, ninja
4
+
5
+
6
+ @attributes.requires("requires_src")
7
+ @attributes.system
8
+ @ninja.attributes.cflags("cflags_linux_pic_{pic[on,off]}")
9
+ class LibBzip2(ninja.CXXLibrary):
10
+ name = "libbzip2"
11
+ binary = "bzip2"
12
+ version = Parameter("1.0.8", help="bzip2 version.")
13
+ pic = BooleanParameter(True, help="Build position independent code")
14
+ shared = BooleanParameter(False, help="Build shared libraries")
15
+ cstd = 90
16
+ cflags_darwin_pic_on = ["-fPIC"]
17
+ cflags_linux_pic_on = ["-fPIC"]
18
+ incremental = False
19
+ requires_src = ["fetch:alias=src,url=https://sourceware.org/pub/bzip2/bzip2-{version}.tar.gz"]
20
+ source_influence = False
21
+ sources = [
22
+ "{fetch[src]}/bzip2-{version}/blocksort.c",
23
+ "{fetch[src]}/bzip2-{version}/bzlib.c",
24
+ "{fetch[src]}/bzip2-{version}/bzlib.h",
25
+ "{fetch[src]}/bzip2-{version}/compress.c",
26
+ "{fetch[src]}/bzip2-{version}/crctable.c",
27
+ "{fetch[src]}/bzip2-{version}/decompress.c",
28
+ "{fetch[src]}/bzip2-{version}/huffman.c",
29
+ "{fetch[src]}/bzip2-{version}/randtable.c",
30
+ ]
31
+
32
+ def publish(self, artifact, tools):
33
+ super().publish(artifact, tools)
34
+ artifact.cxxinfo.incpaths.append("include")
35
+ artifact.cxxinfo.libpaths.append("lib")
36
+ artifact.cxxinfo.libraries.append("bz2")
37
+ artifact.environ.CMAKE_PREFIX_PATH.append(".")
38
+
39
+ with tools.cwd("{fetch[src]}/bzip2-{version}"):
40
+ artifact.collect("bzlib.h", "include/")
41
+
42
+
43
+ TaskRegistry.get().add_task_class(LibBzip2)
jolt/pkgs/cares.py ADDED
@@ -0,0 +1,29 @@
1
+ from jolt import attributes, BooleanParameter, Parameter
2
+ from jolt.pkgs import cmake
3
+ from jolt.plugins import git, cmake
4
+ from jolt.tasks import TaskRegistry
5
+
6
+
7
+ @attributes.requires("requires_git")
8
+ @cmake.requires()
9
+ @cmake.use_ninja()
10
+ class CAres(cmake.CMake):
11
+ name = "c-ares"
12
+ version = Parameter("1.34.6", help="c-ares version.")
13
+ shared = BooleanParameter(False, help="Build shared libraries.")
14
+ requires_git = ["git:url=https://github.com/c-ares/c-ares.git,rev=v{version}"]
15
+ srcdir = "{git[c-ares]}"
16
+ options = [
17
+ "CARES_SHARED={shared[ON,OFF]}",
18
+ "CARES_STATIC={shared[OFF,ON]}",
19
+ "CARES_BUILD_TESTS=OFF",
20
+ ]
21
+
22
+ def publish(self, artifact, tools):
23
+ super().publish(artifact, tools)
24
+ artifact.cxxinfo.incpaths.append("include")
25
+ artifact.cxxinfo.libpaths.append("lib")
26
+ artifact.cxxinfo.libraries.append("cares")
27
+
28
+
29
+ TaskRegistry.get().add_task_class(CAres)
jolt/pkgs/catch2.py ADDED
@@ -0,0 +1,36 @@
1
+ from jolt import attributes, BooleanParameter, Parameter, Task
2
+ from jolt.pkgs import cmake
3
+ from jolt.plugins import git, cmake
4
+ from jolt.tasks import TaskRegistry
5
+
6
+
7
+ @attributes.requires("requires_git")
8
+ @cmake.requires()
9
+ @cmake.use_ninja()
10
+ class Catch2(cmake.CMake):
11
+ name = "catch2"
12
+ version = Parameter("3.11.0", help="catch2 version.")
13
+ shared = BooleanParameter(False, help="Build shared libraries.")
14
+ requires_git = ["git:url=https://github.com/catchorg/Catch2.git,rev=v{version}"]
15
+ srcdir = "{git[Catch2]}"
16
+ options = [
17
+ "BUILD_SHARED_LIBS={shared[ON,OFF]}",
18
+ ]
19
+
20
+ def publish(self, artifact, tools):
21
+ super().publish(artifact, tools)
22
+ artifact.cxxinfo.incpaths.append("include")
23
+ artifact.cxxinfo.libpaths.append("lib")
24
+ artifact.cxxinfo.libraries.append("Catch2")
25
+
26
+
27
+ class Catch2Main(Task):
28
+ name = "catch2/main"
29
+ extends = "catch2"
30
+
31
+ def publish(self, artifact, tools):
32
+ artifact.cxxinfo.libraries.append("Catch2Main")
33
+
34
+
35
+ TaskRegistry.get().add_task_class(Catch2)
36
+ TaskRegistry.get().add_task_class(Catch2Main)
jolt/pkgs/cbindgen.py ADDED
@@ -0,0 +1,17 @@
1
+ from jolt import attributes
2
+ from jolt.pkgs import rust
3
+ from jolt.plugins import rust
4
+ from jolt.tasks import TaskRegistry
5
+
6
+
7
+ @attributes.requires("requires_git")
8
+ @attributes.requires("requires_rust")
9
+ class CBindgen(rust.Rust):
10
+ name = "cbindgen"
11
+ version = "0.29.2"
12
+ requires_git = ["git:url=https://github.com/mozilla/cbindgen.git,rev=v{version},hash=true"]
13
+ requires_rust = ["rust"]
14
+ srcdir = "{git[cbindgen]}"
15
+
16
+
17
+ TaskRegistry.get().add_task_class(CBindgen)
jolt/pkgs/cista.py ADDED
@@ -0,0 +1,19 @@
1
+ from jolt import attributes, Parameter, Task
2
+ from jolt.plugins import git
3
+ from jolt.tasks import TaskRegistry
4
+
5
+
6
+ @attributes.requires("requires_git")
7
+ class Cista(Task):
8
+ name = "cista"
9
+ version = Parameter("0.16", help="Cista version.")
10
+ requires_git = ["git:url=https://github.com/felixguendling/cista.git,rev=v{version}"]
11
+ srcdir = "{git[cista]}"
12
+
13
+ def publish(self, artifact, tools):
14
+ with tools.cwd(self.srcdir):
15
+ artifact.collect("include/")
16
+ artifact.cxxinfo.incpaths.append("include")
17
+
18
+
19
+ TaskRegistry.get().add_task_class(Cista)
jolt/pkgs/clang.py ADDED
@@ -0,0 +1,44 @@
1
+ from jolt import attributes, Parameter, Task
2
+ from jolt.pkgs import llvm
3
+ from jolt.tasks import TaskRegistry
4
+
5
+
6
+ @attributes.requires("requires_llvm")
7
+ class Clang(Task):
8
+ name = "clang"
9
+ version = Parameter(llvm.VERSION, help="Clang version.")
10
+
11
+ requires_llvm = ["llvm:version={version}"]
12
+
13
+ def publish(self, artifact, tools):
14
+ artifact.environ.LLVM_TOOL_clang = "clang"
15
+ artifact.environ.LLVM_TOOL_clangpp = "clang++"
16
+ artifact.environ.AR = "llvm-ar"
17
+ artifact.environ.CC = "clang"
18
+ artifact.environ.CXX = "clang++"
19
+ artifact.environ.LD = "clang++"
20
+ artifact.environ.NM = "llvm-nm"
21
+ artifact.environ.OBJCOPY = "llvm-objcopy"
22
+ artifact.environ.OBJDUMP = "llvm-objdump"
23
+ artifact.environ.PATH.append("bin")
24
+ artifact.environ.RANLIB = "llvm-ranlib"
25
+ artifact.environ.STRIP = "llvm-strip"
26
+
27
+
28
+ class ClangFormat(llvm.LLVMFromSrc):
29
+ name = "clang-format"
30
+ projects = ["clang", "clang-tools-extra"]
31
+ targets = []
32
+ install = ["install-clang-format"]
33
+
34
+
35
+ class ClangTidy(llvm.LLVMFromSrc):
36
+ name = "clang-tidy"
37
+ projects = ["clang", "clang-tools-extra"]
38
+ targets = []
39
+ install = ["install-clang-tidy"]
40
+
41
+
42
+ TaskRegistry.get().add_task_class(Clang)
43
+ TaskRegistry.get().add_task_class(ClangFormat)
44
+ TaskRegistry.get().add_task_class(ClangTidy)
jolt/pkgs/cli11.py ADDED
@@ -0,0 +1,23 @@
1
+ from jolt import attributes, Parameter
2
+ from jolt.plugins import cmake, fetch
3
+ from jolt.tasks import TaskRegistry
4
+
5
+
6
+ @attributes.requires("requires_src")
7
+ @cmake.requires()
8
+ @cmake.use_ninja()
9
+ class CLI11(cmake.CMake):
10
+ name = "cli11"
11
+ version = Parameter("2.6.1", help="CLI11 version.")
12
+ requires_src = ["fetch:alias=src,url=https://github.com/CLIUtils/CLI11/archive/refs/tags/v{version}.tar.gz"]
13
+ srcdir = "{fetch[src]}/CLI11-{version}"
14
+ options = [
15
+ "CLI11_BUILD_TESTS=OFF",
16
+ ]
17
+
18
+ def publish(self, artifact, tools):
19
+ super().publish(artifact, tools)
20
+ artifact.cxxinfo.incpaths.append("include")
21
+
22
+
23
+ TaskRegistry.get().add_task_class(CLI11)
jolt/pkgs/cmake.py ADDED
@@ -0,0 +1,48 @@
1
+ from jolt import attributes, Alias, Download, Parameter
2
+ from jolt.tasks import TaskRegistry
3
+
4
+
5
+ @attributes.arch
6
+ @attributes.system
7
+ @attributes.common_metadata()
8
+ class CMakeBin(Download):
9
+ name = "cmake/bin"
10
+ version = Parameter("4.2.1", help="CMake version.")
11
+ url = ["https://github.com/Kitware/CMake/releases/download/v{version}/cmake-{version}-{cmake_system}-{cmake_arch}{cmake_ext}"]
12
+ collect = [{"files": "*", "cwd": "cmake-{version}-{cmake_system}-{cmake_arch}{cmake_contents}"}]
13
+
14
+ @property
15
+ def cmake_arch(self):
16
+ if self.system == "darwin":
17
+ return "universal"
18
+ if self.arch == "amd64":
19
+ return "x86_64"
20
+ return self.arch
21
+
22
+ @property
23
+ def cmake_ext(self):
24
+ if self.system == "windows":
25
+ return ".zip"
26
+ return ".tar.gz"
27
+
28
+ @property
29
+ def cmake_system(self):
30
+ if self.system == "darwin":
31
+ return "macos"
32
+ return self.system
33
+
34
+ @property
35
+ def cmake_contents(self):
36
+ if self.system == "darwin":
37
+ return "/CMake.app/Contents"
38
+ return ""
39
+
40
+
41
+ class CMake(Alias):
42
+ name = "cmake"
43
+ version = Parameter("4.2.1", help="CMake version.")
44
+ requires = ["cmake/bin:version={version}"]
45
+
46
+
47
+ TaskRegistry.get().add_task_class(CMake)
48
+ TaskRegistry.get().add_task_class(CMakeBin)