Karl Semich
commited on
Commit
•
e193b76
0
Parent(s):
- .gitmodules +3 -0
- git2jsonl +1 -0
- makefile +8 -0
.gitmodules
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
[submodule "git2jsonl"]
|
2 |
+
path = git2jsonl
|
3 |
+
url = https://github.com/xloem/git2jsonl
|
git2jsonl
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit ddd266716b2590ae39b066b39a04bc8db1dc22da
|
makefile
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
default: github/xfce-mirror/xfce4-terminal.rwkv.json
|
2 |
+
|
3 |
+
github/%.rwkv.json: github/%.git/
|
4 |
+
{ git2jsonl/git2jsonl "$^"; git2jsonl/git2jsonl_base64 "$^"; } | sort --random-sort --random-source=/dev/zero > "$@" || { rm "$@"; false; }
|
5 |
+
|
6 |
+
github/%.git/:
|
7 |
+
mkdir -p "$$(dirname "$*")"
|
8 |
+
git clone --mirror https://github.com/"$*" "$@"
|