Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit 453e2f0

Browse files
authored
VENDOR EVERYTHING (#166)
* VENDOR EVERYTHING * OH YEAH REMOVE SUBMODULES HAHAHAHAHAHAHAH * update build docs and handle build deps with their own dependencies
1 parent d5878dd commit 453e2f0

File tree

17,011 files changed

+1470292
-178
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

17,011 files changed

+1470292
-178
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
zig-cache
22
zig-out
3-
deps.zig
4-
.gyro
53
build_runner.zig
4+
.gyro/redirects
5+
tests/.gyro
6+
tests/deps.zig

.gitmodules

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +0,0 @@
1-
[submodule "libs/zig-clap"]
2-
path = libs/zig-clap
3-
url = https://github.com/Hejsil/zig-clap.git
4-
branch = zig-master
5-
[submodule "libs/zzz"]
6-
path = libs/zzz
7-
url = https://github.com/mattnite/zzz.git
8-
[submodule "libs/zig-uri"]
9-
path = libs/zig-uri
10-
url = https://github.com/MasterQ32/zig-uri.git
11-
[submodule "libs/version"]
12-
path = libs/version
13-
url = https://github.com/mattnite/version.git
14-
[submodule "libs/tar"]
15-
path = libs/tar
16-
url = https://github.com/mattnite/tar.git
17-
[submodule "libs/glob"]
18-
path = libs/glob
19-
url = https://github.com/mattnite/glob
20-
[submodule "libs/known-folders"]
21-
path = libs/known-folders
22-
url = https://github.com/ziglibs/known-folders
23-
[submodule "libs/zig-zlib"]
24-
path = libs/zig-zlib
25-
url = https://github.com/mattnite/zig-zlib.git
26-
[submodule "libs/zig-mbedtls"]
27-
path = libs/zig-mbedtls
28-
url = https://github.com/mattnite/zig-mbedtls.git
29-
[submodule "libs/zig-libssh2"]
30-
path = libs/zig-libssh2
31-
url = https://github.com/mattnite/zig-libssh2.git
32-
[submodule "libs/zig-libgit2"]
33-
path = libs/zig-libgit2
34-
url = https://github.com/mattnite/zig-libgit2.git
35-
[submodule "libs/zig-libcurl"]
36-
path = libs/zig-libcurl
37-
url = https://github.com/mattnite/zig-libcurl.git

.gyro/glob-mattnite-github.com-7d17d551/ok

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
zig-cache
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Matthew Knight
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# glob
2+
small library for globing file paths
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
const Builder = @import("std").build.Builder;
2+
3+
pub fn build(b: *Builder) void {
4+
const mode = b.standardReleaseOptions();
5+
const lib = b.addStaticLibrary("glob", "src/main.zig");
6+
lib.setBuildMode(mode);
7+
lib.install();
8+
9+
var main_tests = b.addTest("src/main.zig");
10+
main_tests.setBuildMode(mode);
11+
12+
const test_step = b.step("test", "Run library tests");
13+
test_step.dependOn(&main_tests.step);
14+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
pkgs:
2+
glob:
3+
version: 0.0.0
4+
author: mattnite
5+
description: "small library for globing file paths"
6+
license: MIT
7+
source_url: "https://github.com/mattnite/glob"
8+
tags:
9+
filesystem
10+
11+
files:
12+
build.zig
13+
README.md
14+
LICENSE

0 commit comments

Comments
 (0)