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:...@@ -26,7 +26,7 @@ jobs:
26 - name: Setup Zig26 - name: Setup Zig
27 uses: goto-bus-stop/setup-zig@v127 uses: goto-bus-stop/setup-zig@v1
28 with:28 with:
29 version: "0.10.0-dev.3998+c25ce5bba"29 version: "0.10.0-dev.4099+d3d24874c"
3030
31 - run: zig version31 - run: zig version
32 - run: zig env32 - run: zig env
.github/workflows/push.yml+1-1
...@@ -19,7 +19,7 @@ jobs:...@@ -19,7 +19,7 @@ jobs:
19 - name: Setup Zig19 - name: Setup Zig
20 uses: goto-bus-stop/setup-zig@v120 uses: goto-bus-stop/setup-zig@v1
21 with:21 with:
22 version: "0.10.0-dev.3998+c25ce5bba"22 version: "0.10.0-dev.4099+d3d24874c"
2323
24 - run: zig version24 - run: zig version
25 - run: zig env25 - run: zig env
README.md+1-1
...@@ -17,7 +17,7 @@ A package manager for the Zig programming language....@@ -17,7 +17,7 @@ A package manager for the Zig programming language.
17- https://github.com/nektro/zigmod/releases17- https://github.com/nektro/zigmod/releases
1818
19## Built With19## Built With
20- Zig master (at least `0.10.0-dev.3998+c25ce5bba`)20- Zig master (at least `0.10.0-dev.4099+d3d24874c`)
21- See [`zig.mod`](./zig.mod) and [`zigmod.lock`](./zigmod.lock)21- See [`zig.mod`](./zig.mod) and [`zigmod.lock`](./zigmod.lock)
2222
23### Build from Source23### Build from Source
deps.zig+5-5
...@@ -52,7 +52,7 @@ pub fn fetch(exe: *std.build.LibExeObjStep) void {...@@ -52,7 +52,7 @@ pub fn fetch(exe: *std.build.LibExeObjStep) void {
52 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/MasterQ32/zig-uri", "e879df3a236869f92298fbe2db3c25e6e84cfd4c").step);52 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/MasterQ32/zig-uri", "e879df3a236869f92298fbe2db3c25e6e84cfd4c").step);
53 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/marlersoft/zigwin32", "209f07cc5861c7bd9c3010a37f32bf6244f9a158").step);53 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/marlersoft/zigwin32", "209f07cc5861c7bd9c3010a37f32bf6244f9a158").step);
54 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/nektro/arqv-ini", "1a9b2e90379895e197893b6e19c93bd213ad36e6").step);54 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);
56 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/nektro/zig-ansi", "d4a53bcac5b87abecc65491109ec22aaf5f3dc2f").step);56 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/nektro/zig-ansi", "d4a53bcac5b87abecc65491109ec22aaf5f3dc2f").step);
57 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/nektro/zig-detect-license", "de5c285d999eea68b9189b48bb000243fef0a689").step);57 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/nektro/zig-detect-license", "de5c285d999eea68b9189b48bb000243fef0a689").step);
58 exe.step.dependOn(&GitExactStep.create(b, "https://github.com/nektro/zig-extras", "01fae956e2f17aa992e717e041a3dd457d440b31").step);58 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 {...@@ -104,7 +104,7 @@ pub fn addAllTo(exe: *std.build.LibExeObjStep) void {
104 llc = true;104 llc = true;
105 }105 }
106 for (pkg.c_include_dirs) |item| {106 for (pkg.c_include_dirs) |item| {
107 exe.addIncludeDir(b.fmt("{s}/{s}", .{ root, item }));107 exe.addIncludePath(b.fmt("{s}/{s}", .{ root, item }));
108 llc = true;108 llc = true;
109 }109 }
110 for (pkg.c_source_files) |item| {110 for (pkg.c_source_files) |item| {
...@@ -143,7 +143,7 @@ pub const Package = struct {...@@ -143,7 +143,7 @@ pub const Package = struct {
143};143};
144144
145fn checkMinZig(current: std.SemanticVersion, exe: *std.build.LibExeObjStep) void {145fn 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;
147 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}));147 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}));
148}148}
149149
...@@ -164,9 +164,9 @@ pub const package_data = struct {...@@ -164,9 +164,9 @@ pub const package_data = struct {
164 .entry = "/git/github.com/nektro/arqv-ini/1a9b2e90379895e197893b6e19c93bd213ad36e6/src/ini.zig",164 .entry = "/git/github.com/nektro/arqv-ini/1a9b2e90379895e197893b6e19c93bd213ad36e6/src/ini.zig",
165 };165 };
166 pub var _csbnipaad8n7 = Package{166 pub var _csbnipaad8n7 = Package{
167 .store = "/git/github.com/nektro/iguanaTLS/c9403b8414d7f80b5e2c04c8f1f8780ca1d2827f",167 .store = "/git/github.com/nektro/iguanaTLS/bd003aa75c8bc00e8a61a1be575b9305249dc749",
168 .name = "iguanaTLS",168 .name = "iguanaTLS",
169 .entry = "/git/github.com/nektro/iguanaTLS/c9403b8414d7f80b5e2c04c8f1f8780ca1d2827f/src/main.zig",169 .entry = "/git/github.com/nektro/iguanaTLS/bd003aa75c8bc00e8a61a1be575b9305249dc749/src/main.zig",
170 };170 };
171 pub var _s84v9o48ucb0 = Package{171 pub var _s84v9o48ucb0 = Package{
172 .store = "/git/github.com/nektro/zig-ansi/d4a53bcac5b87abecc65491109ec22aaf5f3dc2f",172 .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....@@ -10,7 +10,7 @@ The rest of this documentation will assume you already have Zig installed.
1010
11As 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.11As 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
15## Download15## Download
16You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source.16You 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...@@ -67,7 +67,7 @@ pub fn create_depszig(alloc: std.mem.Allocator, cachepath: string, dir: std.fs.D
67 \\ llc = true;67 \\ llc = true;
68 \\ }68 \\ }
69 \\ inline for (pkg.c_include_dirs) |item| {69 \\ inline for (pkg.c_include_dirs) |item| {
70 \\ exe.addIncludeDir(@field(dirs, decl.name) ++ "/" ++ item);70 \\ exe.addIncludePath(@field(dirs, decl.name) ++ "/" ++ item);
71 \\ llc = true;71 \\ llc = true;
72 \\ }72 \\ }
73 \\ inline for (pkg.c_source_files) |item| {73 \\ 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...@@ -139,7 +139,7 @@ pub fn create_depszig(alloc: std.mem.Allocator, cachepath: string, dir: std.fs.D
139 \\ llc = true;139 \\ llc = true;
140 \\ }140 \\ }
141 \\ for (pkg.c_include_dirs) |item| {141 \\ for (pkg.c_include_dirs) |item| {
142 \\ exe.addIncludeDir(b.fmt("{s}/{s}", .{ root, item }));142 \\ exe.addIncludePath(b.fmt("{s}/{s}", .{ root, item }));
143 \\ llc = true;143 \\ llc = true;
144 \\ }144 \\ }
145 \\ for (pkg.c_source_files) |item| {145 \\ for (pkg.c_source_files) |item| {
zig.mod+1-1
...@@ -3,7 +3,7 @@ name: zigmod...@@ -3,7 +3,7 @@ name: zigmod
3main: src/lib.zig3main: src/lib.zig
4license: MIT4license: MIT
5description: A package manager for the Zig programming language.5description: A package manager for the Zig programming language.
6min_zig_version: 0.10.0-dev.3998+c25ce5bba6min_zig_version: 0.10.0-dev.4099+d3d24874c
7dependencies:7dependencies:
8 - src: git https://gist.github.com/nektro/d468fea84f8217e4c26ee8fbeeea38cc # yaml8 - src: git https://gist.github.com/nektro/d468fea84f8217e4c26ee8fbeeea38cc # yaml
9 - src: git https://github.com/nektro/zig-ansi9 - 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...@@ -3,7 +3,7 @@ git https://gist.github.com/nektro/d468fea84f8217e4c26ee8fbeeea38cc commit-0911d
3git https://github.com/MasterQ32/zig-uri commit-e879df3a236869f92298fbe2db3c25e6e84cfd4c3git https://github.com/MasterQ32/zig-uri commit-e879df3a236869f92298fbe2db3c25e6e84cfd4c
4git https://github.com/marlersoft/zigwin32 commit-209f07cc5861c7bd9c3010a37f32bf6244f9a1584git https://github.com/marlersoft/zigwin32 commit-209f07cc5861c7bd9c3010a37f32bf6244f9a158
5git https://github.com/nektro/arqv-ini commit-1a9b2e90379895e197893b6e19c93bd213ad36e65git https://github.com/nektro/arqv-ini commit-1a9b2e90379895e197893b6e19c93bd213ad36e6
6git https://github.com/nektro/iguanaTLS commit-c9403b8414d7f80b5e2c04c8f1f8780ca1d2827f6git https://github.com/nektro/iguanaTLS commit-bd003aa75c8bc00e8a61a1be575b9305249dc749
7git https://github.com/nektro/zig-ansi commit-d4a53bcac5b87abecc65491109ec22aaf5f3dc2f7git https://github.com/nektro/zig-ansi commit-d4a53bcac5b87abecc65491109ec22aaf5f3dc2f
8git https://github.com/nektro/zig-detect-license commit-de5c285d999eea68b9189b48bb000243fef0a6898git https://github.com/nektro/zig-detect-license commit-de5c285d999eea68b9189b48bb000243fef0a689
9git https://github.com/nektro/zig-extras commit-01fae956e2f17aa992e717e041a3dd457d440b319git https://github.com/nektro/zig-extras commit-01fae956e2f17aa992e717e041a3dd457d440b31