authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-09-25 17:36:28 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-09-25 17:36:28 -07:00
logb47ad60a009653139dc811ce5c66f9b8f53cd34b
treeb83c03e445b73ccc8b0f723de4aaaf730eec4dcf
parentb8940707b9827955700cca5519a7d567a9e9a38b

update to zig master 0.10.0-dev.4099+d3d24874c


9 files changed, 13 insertions(+), 13 deletions(-)

.github/workflows/nightly.yml+1-1
......@@ -26,7 +26,7 @@ jobs:
2626 - name: Setup Zig
2727 uses: goto-bus-stop/setup-zig@v1
2828 with:
29 version: "0.10.0-dev.3998+c25ce5bba"
29 version: "0.10.0-dev.4099+d3d24874c"
3030
3131 - run: zig version
3232 - run: zig env
.github/workflows/push.yml+1-1
......@@ -19,7 +19,7 @@ jobs:
1919 - name: Setup Zig
2020 uses: goto-bus-stop/setup-zig@v1
2121 with:
22 version: "0.10.0-dev.3998+c25ce5bba"
22 version: "0.10.0-dev.4099+d3d24874c"
2323
2424 - run: zig version
2525 - run: zig env
README.md+1-1
......@@ -17,7 +17,7 @@ A package manager for the Zig programming language.
1717- https://github.com/nektro/zigmod/releases
1818
1919## Built With
20- Zig master (at least `0.10.0-dev.3998+c25ce5bba`)
20- Zig master (at least `0.10.0-dev.4099+d3d24874c`)
2121- See [`zig.mod`](./zig.mod) and [`zigmod.lock`](./zigmod.lock)
2222
2323### Build from Source
deps.zig+5-5
......@@ -52,7 +52,7 @@ pub fn fetch(exe: *std.build.LibExeObjStep) void {
5252 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/MasterQ32/zig-uri", "e879df3a236869f92298fbe2db3c25e6e84cfd4c").step);
5353 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/marlersoft/zigwin32", "209f07cc5861c7bd9c3010a37f32bf6244f9a158").step);
5454 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/nektro/arqv-ini", "1a9b2e90379895e197893b6e19c93bd213ad36e6").step);
55 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/nektro/iguanaTLS", "c9403b8414d7f80b5e2c04c8f1f8780ca1d2827f").step);
55 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/nektro/iguanaTLS", "bd003aa75c8bc00e8a61a1be575b9305249dc749").step);
5656 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/nektro/zig-ansi", "d4a53bcac5b87abecc65491109ec22aaf5f3dc2f").step);
5757 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/nektro/zig-detect-license", "de5c285d999eea68b9189b48bb000243fef0a689").step);
5858 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/nektro/zig-extras", "01fae956e2f17aa992e717e041a3dd457d440b31").step);
......@@ -104,7 +104,7 @@ pub fn addAllTo(exe: *std.build.LibExeObjStep) void {
104104 llc = true;
105105 }
106106 for (pkg.c_include_dirs) |item| {
107 exe.addIncludeDir(b.fmt("{s}/{s}", .{ root, item }));
107 exe.addIncludePath(b.fmt("{s}/{s}", .{ root, item }));
108108 llc = true;
109109 }
110110 for (pkg.c_source_files) |item| {
......@@ -143,7 +143,7 @@ pub const Package = struct {
143143};
144144
145145fn checkMinZig(current: std.SemanticVersion, exe: *std.build.LibExeObjStep) void {
146 const min = std.SemanticVersion.parse("0.10.0-dev.3998+c25ce5bba") catch return;
146 const min = std.SemanticVersion.parse("0.10.0-dev.4099+d3d24874c") catch return;
147147 if (current.order(min).compare(.lt)) @panic(exe.builder.fmt("Your Zig version v{} does not meet the minimum build requirement of v{}", .{current, min}));
148148}
149149
......@@ -164,9 +164,9 @@ pub const package_data = struct {
164164 .entry = "/git/github.com/nektro/arqv-ini/1a9b2e90379895e197893b6e19c93bd213ad36e6/src/ini.zig",
165165 };
166166 pub var _csbnipaad8n7 = Package{
167 .store = "/git/github.com/nektro/iguanaTLS/c9403b8414d7f80b5e2c04c8f1f8780ca1d2827f",
167 .store = "/git/github.com/nektro/iguanaTLS/bd003aa75c8bc00e8a61a1be575b9305249dc749",
168168 .name = "iguanaTLS",
169 .entry = "/git/github.com/nektro/iguanaTLS/c9403b8414d7f80b5e2c04c8f1f8780ca1d2827f/src/main.zig",
169 .entry = "/git/github.com/nektro/iguanaTLS/bd003aa75c8bc00e8a61a1be575b9305249dc749/src/main.zig",
170170 };
171171 pub var _s84v9o48ucb0 = Package{
172172 .store = "/git/github.com/nektro/zig-ansi/d4a53bcac5b87abecc65491109ec22aaf5f3dc2f",
docs/README.md+1-1
......@@ -10,7 +10,7 @@ The rest of this documentation will assume you already have Zig installed.
1010
1111As Zig is still in development itself, if you plan to contribute to Zigmod you will need a master download of Zig. Those can be obtained from https://ziglang.org/download/#release-master.
1212
13The earliest Zig release this Zigmod was verified to work with is `0.10.0-dev.3998+c25ce5bba`.
13The earliest Zig release this Zigmod was verified to work with is `0.10.0-dev.4099+d3d24874c`.
1414
1515## Download
1616You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source.
src/cmd/fetch.zig+1-1
......@@ -67,7 +67,7 @@ pub fn create_depszig(alloc: std.mem.Allocator, cachepath: string, dir: std.fs.D
6767 \\ llc = true;
6868 \\ }
6969 \\ inline for (pkg.c_include_dirs) |item| {
70 \\ exe.addIncludeDir(@field(dirs, decl.name) ++ "/" ++ item);
70 \\ exe.addIncludePath(@field(dirs, decl.name) ++ "/" ++ item);
7171 \\ llc = true;
7272 \\ }
7373 \\ inline for (pkg.c_source_files) |item| {
src/cmd/generate.zig+1-1
......@@ -139,7 +139,7 @@ pub fn create_depszig(alloc: std.mem.Allocator, cachepath: string, dir: std.fs.D
139139 \\ llc = true;
140140 \\ }
141141 \\ for (pkg.c_include_dirs) |item| {
142 \\ exe.addIncludeDir(b.fmt("{s}/{s}", .{ root, item }));
142 \\ exe.addIncludePath(b.fmt("{s}/{s}", .{ root, item }));
143143 \\ llc = true;
144144 \\ }
145145 \\ for (pkg.c_source_files) |item| {
zig.mod+1-1
......@@ -3,7 +3,7 @@ name: zigmod
33main: src/lib.zig
44license: MIT
55description: A package manager for the Zig programming language.
6min_zig_version: 0.10.0-dev.3998+c25ce5bba
6min_zig_version: 0.10.0-dev.4099+d3d24874c
77dependencies:
88 - src: git https://gist.github.com/nektro/d468fea84f8217e4c26ee8fbeeea38cc # yaml
99 - src: git https://github.com/nektro/zig-ansi
zigmod.lock+1-1
......@@ -3,7 +3,7 @@ git https://gist.github.com/nektro/d468fea84f8217e4c26ee8fbeeea38cc commit-0911d
33git https://github.com/MasterQ32/zig-uri commit-e879df3a236869f92298fbe2db3c25e6e84cfd4c
44git https://github.com/marlersoft/zigwin32 commit-209f07cc5861c7bd9c3010a37f32bf6244f9a158
55git https://github.com/nektro/arqv-ini commit-1a9b2e90379895e197893b6e19c93bd213ad36e6
6git https://github.com/nektro/iguanaTLS commit-c9403b8414d7f80b5e2c04c8f1f8780ca1d2827f
6git https://github.com/nektro/iguanaTLS commit-bd003aa75c8bc00e8a61a1be575b9305249dc749
77git https://github.com/nektro/zig-ansi commit-d4a53bcac5b87abecc65491109ec22aaf5f3dc2f
88git https://github.com/nektro/zig-detect-license commit-de5c285d999eea68b9189b48bb000243fef0a689
99git https://github.com/nektro/zig-extras commit-01fae956e2f17aa992e717e041a3dd457d440b31