authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-10-11 11:37:18 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-10-11 11:37:18 -07:00
log1aff35964015ccd903145fabff4407364f20524a
treecdb4789c8fef9acf32f94db323214ff3d74d2e63
parent3f37f7d5d23b5df6f8f501047b02f6a6ebdae637

update to zig master 0.9.0-dev.1343+75cecef63


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

.circleci/config.yml+1-1
...@@ -15,7 +15,7 @@ jobs:...@@ -15,7 +15,7 @@ jobs:
15 - run: git submodule update --init --recursive15 - run: git submodule update --init --recursive
1616
17 - run: apt -y install xz-utils jq17 - run: apt -y install xz-utils jq
18 - run: ./download_zig.sh 0.9.0-dev.946+6237dc0ab18 - run: ./download_zig.sh 0.9.0-dev.1343+75cecef63
19 - run: zig version19 - run: zig version
20 - run: zig env20 - run: zig env
21 - run: zig build -Dbootstrap21 - run: zig build -Dbootstrap
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 `0.9.0-dev.946+6237dc0ab`20- Zig master `0.9.0-dev.1343+75cecef63`
21- https://github.com/yaml/libyaml21- https://github.com/yaml/libyaml
22- https://github.com/nektro/zig-ansi22- https://github.com/nektro/zig-ansi
23- https://github.com/ziglibs/known-folders23- https://github.com/ziglibs/known-folders
build.zig+1-1
...@@ -1,5 +1,5 @@...@@ -1,5 +1,5 @@
1const std = @import("std");1const std = @import("std");
2const builtin = std.builtin;2const builtin = @import("builtin");
3const deps = @import("./deps.zig");3const deps = @import("./deps.zig");
44
5pub fn build(b: *std.build.Builder) void {5pub fn build(b: *std.build.Builder) void {
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 most recent release Zigmod was verified to work with is `0.9.0-dev.946+6237dc0ab`.13The most recent release Zigmod was verified to work with is `0.9.0-dev.1343+75cecef63`.
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/version.zig+1-1
...@@ -1,6 +1,6 @@...@@ -1,6 +1,6 @@
1const std = @import("std");1const std = @import("std");
2const gpa = std.heap.c_allocator;2const gpa = std.heap.c_allocator;
3const builtin = std.builtin;3const builtin = @import("builtin");
44
5const u = @import("./../util/index.zig");5const u = @import("./../util/index.zig");
66
src/common.zig+2-1
...@@ -1,4 +1,5 @@...@@ -1,4 +1,5 @@
1const std = @import("std");1const std = @import("std");
2const builtin = @import("builtin");
2const gpa = std.heap.c_allocator;3const gpa = std.heap.c_allocator;
34
4const ansi = @import("ansi");5const ansi = @import("ansi");
...@@ -142,7 +143,7 @@ pub fn get_modpath(cachepath: []const u8, d: u.Dep, options: *CollectOptions) ![...@@ -142,7 +143,7 @@ pub fn get_modpath(cachepath: []const u8, d: u.Dep, options: *CollectOptions) ![
142 if ((try u.run_cmd(pv, &.{ "git", "checkout", vers.string })) > 0) {143 if ((try u.run_cmd(pv, &.{ "git", "checkout", vers.string })) > 0) {
143 u.assert(false, "fetch: git: {s}: {s} {s} does not exist", .{ d.path, @tagName(vers.id), vers.string });144 u.assert(false, "fetch: git: {s}: {s} {s} does not exist", .{ d.path, @tagName(vers.id), vers.string });
144 }145 }
145 if (std.builtin.os.tag != .windows and vers.id != .branch) {146 if (builtin.os.tag != .windows and vers.id != .branch) {
146 const pvd = try std.fs.cwd().openDir(pv, .{});147 const pvd = try std.fs.cwd().openDir(pv, .{});
147 try pvd.deleteTree(".git");148 try pvd.deleteTree(".git");
148 }149 }
src/main.zig+1-1
...@@ -1,5 +1,5 @@...@@ -1,5 +1,5 @@
1const std = @import("std");1const std = @import("std");
2const builtin = std.builtin;2const builtin = @import("builtin");
33
4pub const build_options = @import("build_options");4pub const build_options = @import("build_options");
5const zigmod = @import("zigmod");5const zigmod = @import("zigmod");
src/util/module.zig+1-1
...@@ -1,6 +1,6 @@...@@ -1,6 +1,6 @@
1const std = @import("std");1const std = @import("std");
2const gpa = std.heap.c_allocator;2const gpa = std.heap.c_allocator;
3const builtin = std.builtin;3const builtin = @import("builtin");
44
5const u = @import("index.zig");5const u = @import("index.zig");
6const yaml = @import("./yaml.zig");6const yaml = @import("./yaml.zig");
zigmod.lock+5-5
...@@ -1,12 +1,12 @@...@@ -1,12 +1,12 @@
1212
2git https://github.com/yaml/libyaml tag-0.2.52git https://github.com/yaml/libyaml tag-0.2.5
3git https://github.com/nektro/iguanaTLS commit-953ad821fae6c920fb82399493663668cd91bde73git https://github.com/nektro/iguanaTLS commit-954fd016964d44dfe8648985fd7c06f0067be6b0
4git https://github.com/nektro/zig-ansi commit-d4a53bcac5b87abecc65491109ec22aaf5f3dc2f4git https://github.com/nektro/zig-ansi commit-d4a53bcac5b87abecc65491109ec22aaf5f3dc2f
5git https://github.com/ziglibs/known-folders commit-234b589d3cd0c00f2f675f98fd9674e208fd2bd05git https://github.com/ziglibs/known-folders commit-a282c26da51e5d2c01fec5c744e321ae248cf409
6git https://github.com/nektro/zig-licenses commit-c9b8cbf3565675a056ad4e9b57cb4f84020e76806git https://github.com/nektro/zig-licenses commit-c9b8cbf3565675a056ad4e9b57cb4f84020e7680
7git https://github.com/truemedian/zfetch commit-e65c50fb924701d51fd83826b28948c957aad13e7git https://github.com/truemedian/zfetch commit-242a9d88d2baba40e23ba35b15aabe1e34b22110
8git https://github.com/truemedian/hzzp commit-417eb13fefb05835c0534e622b5a6e2dc2fcd3d78git https://github.com/truemedian/hzzp commit-417eb13fefb05835c0534e622b5a6e2dc2fcd3d7
9git https://github.com/MasterQ32/zig-network commit-9fa47b74f4d66f6e136d8e35bcf30bc5e6c450259git https://github.com/MasterQ32/zig-network commit-0439bd7127ecb8f927a5cecb0beeb1569db2fb95
10git https://github.com/MasterQ32/zig-uri commit-52cdd2061bec0579519f0d30280597f3a1db8b7510git https://github.com/MasterQ32/zig-uri commit-52cdd2061bec0579519f0d30280597f3a1db8b75
11git https://github.com/nektro/zig-json commit-41a4656180a7a460598a53061c07adfbf174c1f411git https://github.com/nektro/zig-json commit-41a4656180a7a460598a53061c07adfbf174c1f4
12git https://github.com/nektro/zig-range commit-890ca308fe09b3d5c866d5cfb3b3d7a95dbf939f12git https://github.com/nektro/zig-range commit-890ca308fe09b3d5c866d5cfb3b3d7a95dbf939f
...@@ -16,4 +16,4 @@ git https://github.com/nektro/zig-leven commit-8e9f827117ab1418578b692a2325754cc...@@ -16,4 +16,4 @@ git https://github.com/nektro/zig-leven commit-8e9f827117ab1418578b692a2325754cc
16git https://github.com/nektro/zig-fs-check commit-dcd8da90fcb8bf3c9887e713bf0ec072bc897dd516git https://github.com/nektro/zig-fs-check commit-dcd8da90fcb8bf3c9887e713bf0ec072bc897dd5
17git https://github.com/nektro/zig-inquirer commit-9a068122c59ac2785f330c37bf4412aed644ed3717git https://github.com/nektro/zig-inquirer commit-9a068122c59ac2785f330c37bf4412aed644ed37
18git https://github.com/arqv/ini commit-4b215c2c41cfb0156873bdb0e074b84f5308de4e18git https://github.com/arqv/ini commit-4b215c2c41cfb0156873bdb0e074b84f5308de4e
19git https://github.com/marlersoft/zigwin32 commit-05b6a1b82abcc3358ee53275f5bd10b71c8f6a9419git https://github.com/marlersoft/zigwin32 commit-74942bfb350f38f18b39db47c97c1274f6c418b4