| author | |
| committer | |
| log | 1aff35964015ccd903145fabff4407364f20524a |
| tree | cdb4789c8fef9acf32f94db323214ff3d74d2e63 |
| parent | 3f37f7d5d23b5df6f8f501047b02f6a6ebdae637 |
9 files changed, 14 insertions(+), 13 deletions(-)
.circleci/config.yml+1-1| ... | ... | @@ -15,7 +15,7 @@ jobs: |
| 15 | 15 | - run: git submodule update --init --recursive |
| 16 | 16 | |
| 17 | 17 | - run: apt -y install xz-utils jq |
| 18 | - run: ./download_zig.sh 0.9.0-dev.946+6237dc0ab | |
| 18 | - run: ./download_zig.sh 0.9.0-dev.1343+75cecef63 | |
| 19 | 19 | - run: zig version |
| 20 | 20 | - run: zig env |
| 21 | 21 | - run: zig build -Dbootstrap |
README.md+1-1| ... | ... | @@ -17,7 +17,7 @@ A package manager for the Zig programming language. |
| 17 | 17 | - https://github.com/nektro/zigmod/releases |
| 18 | 18 | |
| 19 | 19 | ## Built With |
| 20 | - Zig master `0.9.0-dev.946+6237dc0ab` | |
| 20 | - Zig master `0.9.0-dev.1343+75cecef63` | |
| 21 | 21 | - https://github.com/yaml/libyaml |
| 22 | 22 | - https://github.com/nektro/zig-ansi |
| 23 | 23 | - https://github.com/ziglibs/known-folders |
build.zig+1-1| ... | ... | @@ -1,5 +1,5 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | const builtin = std.builtin; | |
| 2 | const builtin = @import("builtin"); | |
| 3 | 3 | const deps = @import("./deps.zig"); |
| 4 | 4 | |
| 5 | 5 | pub 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 | 10 | |
| 11 | 11 | As 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. |
| 12 | 12 | |
| 13 | The most recent release Zigmod was verified to work with is `0.9.0-dev.946+6237dc0ab`. | |
| 13 | The most recent release Zigmod was verified to work with is `0.9.0-dev.1343+75cecef63`. | |
| 14 | 14 | |
| 15 | 15 | ## Download |
| 16 | 16 | You 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 | 1 | const std = @import("std"); |
| 2 | 2 | const gpa = std.heap.c_allocator; |
| 3 | const builtin = std.builtin; | |
| 3 | const builtin = @import("builtin"); | |
| 4 | 4 | |
| 5 | 5 | const u = @import("./../util/index.zig"); |
| 6 | 6 |
src/common.zig+2-1| ... | ... | @@ -1,4 +1,5 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | const builtin = @import("builtin"); | |
| 2 | 3 | const gpa = std.heap.c_allocator; |
| 3 | 4 | |
| 4 | 5 | const ansi = @import("ansi"); |
| ... | ... | @@ -142,7 +143,7 @@ pub fn get_modpath(cachepath: []const u8, d: u.Dep, options: *CollectOptions) ![ |
| 142 | 143 | if ((try u.run_cmd(pv, &.{ "git", "checkout", vers.string })) > 0) { |
| 143 | 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 | 147 | const pvd = try std.fs.cwd().openDir(pv, .{}); |
| 147 | 148 | try pvd.deleteTree(".git"); |
| 148 | 149 | } |
src/main.zig+1-1| ... | ... | @@ -1,5 +1,5 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | const builtin = std.builtin; | |
| 2 | const builtin = @import("builtin"); | |
| 3 | 3 | |
| 4 | 4 | pub const build_options = @import("build_options"); |
| 5 | 5 | const zigmod = @import("zigmod"); |
src/util/module.zig+1-1| ... | ... | @@ -1,6 +1,6 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | 2 | const gpa = std.heap.c_allocator; |
| 3 | const builtin = std.builtin; | |
| 3 | const builtin = @import("builtin"); | |
| 4 | 4 | |
| 5 | 5 | const u = @import("index.zig"); |
| 6 | 6 | const yaml = @import("./yaml.zig"); |
zigmod.lock+5-5| ... | ... | @@ -1,12 +1,12 @@ |
| 1 | 1 | 2 |
| 2 | 2 | git https://github.com/yaml/libyaml tag-0.2.5 |
| 3 | git https://github.com/nektro/iguanaTLS commit-953ad821fae6c920fb82399493663668cd91bde7 | |
| 3 | git https://github.com/nektro/iguanaTLS commit-954fd016964d44dfe8648985fd7c06f0067be6b0 | |
| 4 | 4 | git https://github.com/nektro/zig-ansi commit-d4a53bcac5b87abecc65491109ec22aaf5f3dc2f |
| 5 | git https://github.com/ziglibs/known-folders commit-234b589d3cd0c00f2f675f98fd9674e208fd2bd0 | |
| 5 | git https://github.com/ziglibs/known-folders commit-a282c26da51e5d2c01fec5c744e321ae248cf409 | |
| 6 | 6 | git https://github.com/nektro/zig-licenses commit-c9b8cbf3565675a056ad4e9b57cb4f84020e7680 |
| 7 | git https://github.com/truemedian/zfetch commit-e65c50fb924701d51fd83826b28948c957aad13e | |
| 7 | git https://github.com/truemedian/zfetch commit-242a9d88d2baba40e23ba35b15aabe1e34b22110 | |
| 8 | 8 | git https://github.com/truemedian/hzzp commit-417eb13fefb05835c0534e622b5a6e2dc2fcd3d7 |
| 9 | git https://github.com/MasterQ32/zig-network commit-9fa47b74f4d66f6e136d8e35bcf30bc5e6c45025 | |
| 9 | git https://github.com/MasterQ32/zig-network commit-0439bd7127ecb8f927a5cecb0beeb1569db2fb95 | |
| 10 | 10 | git https://github.com/MasterQ32/zig-uri commit-52cdd2061bec0579519f0d30280597f3a1db8b75 |
| 11 | 11 | git https://github.com/nektro/zig-json commit-41a4656180a7a460598a53061c07adfbf174c1f4 |
| 12 | 12 | git https://github.com/nektro/zig-range commit-890ca308fe09b3d5c866d5cfb3b3d7a95dbf939f |
| ... | ... | @@ -16,4 +16,4 @@ git https://github.com/nektro/zig-leven commit-8e9f827117ab1418578b692a2325754cc |
| 16 | 16 | git https://github.com/nektro/zig-fs-check commit-dcd8da90fcb8bf3c9887e713bf0ec072bc897dd5 |
| 17 | 17 | git https://github.com/nektro/zig-inquirer commit-9a068122c59ac2785f330c37bf4412aed644ed37 |
| 18 | 18 | git https://github.com/arqv/ini commit-4b215c2c41cfb0156873bdb0e074b84f5308de4e |
| 19 | git https://github.com/marlersoft/zigwin32 commit-05b6a1b82abcc3358ee53275f5bd10b71c8f6a94 | |
| 19 | git https://github.com/marlersoft/zigwin32 commit-74942bfb350f38f18b39db47c97c1274f6c418b4 |