Skip to content

Commit ab6c2a9

Browse files
authored
add more packages (#446)
1 parent 5fdd0ae commit ab6c2a9

15 files changed

Lines changed: 725 additions & 0 deletions

packages/curlie/static.stable.yaml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#!/SBUILD
2+
_disabled: false
3+
4+
pkg: "curlie"
5+
pkg_id: "rs.curlie"
6+
pkgver: "1.8.2"
7+
pkg_type: "static"
8+
ghcr_pkg: "rs/curlie"
9+
category:
10+
- "ConsoleOnly"
11+
- "Network"
12+
- "Utility"
13+
description: "Frontend to cURL that adds the ease of use of HTTPie"
14+
homepage:
15+
- "https://curlie.io"
16+
maintainer:
17+
- "QaidVoid (contact@qaidvoid.dev)"
18+
license:
19+
- "MIT"
20+
build_asset:
21+
- url: "https://github.com/rs/curlie/releases/download/v${PKGVER}/curlie_${PKGVER}_linux_${ARCH_ALT}.tar.gz"
22+
out: "curlie.tar.gz"
23+
note:
24+
- "Official binary from https://github.com/rs/curlie"
25+
- "[PORTABLE] (Portable Static Binary)"
26+
- "[NO_DESKTOP_INTEGRATION]"
27+
provides:
28+
- "curlie"
29+
repology:
30+
- "curlie"
31+
src_url:
32+
- "https://github.com/rs/curlie"
33+
tag:
34+
- "http"
35+
- "curl"
36+
- "cli"
37+
x_exec:
38+
host:
39+
- "x86_64-linux"
40+
- "aarch64-linux"
41+
shell: "sh"
42+
pkgver: |
43+
curl -qfsSL "https://api.github.com/repos/rs/curlie/releases/latest" | jq -r '.tag_name' | tr -d 'v'
44+
run: |
45+
tar -xf "curlie.tar.gz" -C "$SBUILD_TMPDIR/"
46+
mv "$SBUILD_TMPDIR/curlie" "$SBUILD_OUTDIR/$PKG"
47+
mv "$SBUILD_TMPDIR/LICENSE" "$SBUILD_OUTDIR/LICENSE"
48+
rm -rf "curlie.tar.gz"

packages/dive/static.stable.yaml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#!/SBUILD
2+
_disabled: false
3+
4+
pkg: "dive"
5+
pkg_id: "wagoodman.dive"
6+
pkgver: "0.13.1"
7+
pkg_type: "static"
8+
ghcr_pkg: "wagoodman/dive"
9+
category:
10+
- "ConsoleOnly"
11+
- "System"
12+
- "Utility"
13+
description: "A tool for exploring each layer in a Docker image"
14+
homepage:
15+
- "https://github.com/wagoodman/dive"
16+
maintainer:
17+
- "QaidVoid (contact@qaidvoid.dev)"
18+
license:
19+
- "MIT"
20+
build_asset:
21+
- url: "https://github.com/wagoodman/dive/releases/download/v${PKGVER}/dive_${PKGVER}_linux_${ARCH_ALT}.tar.gz"
22+
out: "dive.tar.gz"
23+
note:
24+
- "Official binary from https://github.com/wagoodman/dive"
25+
- "[PORTABLE] (Portable Static Binary)"
26+
- "[NO_DESKTOP_INTEGRATION]"
27+
provides:
28+
- "dive"
29+
repology:
30+
- "dive"
31+
src_url:
32+
- "https://github.com/wagoodman/dive"
33+
tag:
34+
- "docker"
35+
- "image"
36+
- "layers"
37+
x_exec:
38+
host:
39+
- "x86_64-linux"
40+
- "aarch64-linux"
41+
shell: "sh"
42+
pkgver: |
43+
curl -qfsSL "https://api.github.com/repos/wagoodman/dive/releases/latest" | jq -r '.tag_name' | tr -d 'v'
44+
run: |
45+
tar -xf "dive.tar.gz" -C "$SBUILD_TMPDIR/"
46+
mv "$SBUILD_TMPDIR/dive" "$SBUILD_OUTDIR/$PKG"
47+
mv "$SBUILD_TMPDIR/LICENSE" "$SBUILD_OUTDIR/LICENSE"
48+
rm -rf "dive.tar.gz"

packages/gh/static.stable.yaml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#!/SBUILD
2+
_disabled: false
3+
4+
pkg: "gh"
5+
pkg_id: "github.cli"
6+
pkgver: "2.87.0"
7+
pkg_type: "static"
8+
ghcr_pkg: "github/cli"
9+
category:
10+
- "ConsoleOnly"
11+
- "Development"
12+
- "RevisionControl"
13+
description: "GitHub CLI tool"
14+
homepage:
15+
- "https://cli.github.com"
16+
maintainer:
17+
- "QaidVoid (contact@qaidvoid.dev)"
18+
license:
19+
- "MIT"
20+
build_asset:
21+
- url: "https://github.com/cli/cli/releases/download/v${PKGVER}/gh_${PKGVER}_linux_${ARCH_ALT}.tar.gz"
22+
out: "gh.tar.gz"
23+
note:
24+
- "Official binary from https://github.com/cli/cli"
25+
- "[PORTABLE] (Portable Static Binary)"
26+
- "[NO_DESKTOP_INTEGRATION]"
27+
provides:
28+
- "gh"
29+
repology:
30+
- "github-cli"
31+
src_url:
32+
- "https://github.com/cli/cli"
33+
tag:
34+
- "github"
35+
- "git"
36+
- "cli"
37+
x_exec:
38+
host:
39+
- "x86_64-linux"
40+
- "aarch64-linux"
41+
shell: "sh"
42+
pkgver: |
43+
curl -qfsSL "https://api.github.com/repos/cli/cli/releases/latest" | jq -r '.tag_name' | tr -d 'v'
44+
run: |
45+
tar -xf "gh.tar.gz" -C "$SBUILD_TMPDIR/"
46+
mv "$SBUILD_TMPDIR/gh_${PKGVER}_linux_${ARCH_ALT}/bin/gh" "$SBUILD_OUTDIR/$PKG"
47+
mv "$SBUILD_TMPDIR/gh_${PKGVER}_linux_${ARCH_ALT}/LICENSE" "$SBUILD_OUTDIR/LICENSE"
48+
rm -rf "gh.tar.gz"
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#!/SBUILD
2+
_disabled: false
3+
4+
pkg: "grpcurl"
5+
pkg_id: "fullstorydev.grpcurl"
6+
pkgver: "1.9.3"
7+
pkg_type: "static"
8+
ghcr_pkg: "fullstorydev/grpcurl"
9+
category:
10+
- "ConsoleOnly"
11+
- "Network"
12+
- "Development"
13+
description: "CLI tool for interacting with gRPC servers"
14+
homepage:
15+
- "https://github.com/fullstorydev/grpcurl"
16+
maintainer:
17+
- "QaidVoid (contact@qaidvoid.dev)"
18+
license:
19+
- "MIT"
20+
note:
21+
- "Official binary from https://github.com/fullstorydev/grpcurl"
22+
- "[PORTABLE] (Portable Static Binary)"
23+
- "[NO_DESKTOP_INTEGRATION]"
24+
provides:
25+
- "grpcurl"
26+
repology:
27+
- "grpcurl"
28+
src_url:
29+
- "https://github.com/fullstorydev/grpcurl"
30+
tag:
31+
- "grpc"
32+
- "api"
33+
- "cli"
34+
x_exec:
35+
host:
36+
- "x86_64-linux"
37+
- "aarch64-linux"
38+
shell: "sh"
39+
pkgver: |
40+
curl -qfsSL "https://api.github.com/repos/fullstorydev/grpcurl/releases/latest" | jq -r '.tag_name' | tr -d 'v'
41+
run: |
42+
case "$(uname -m)" in
43+
x86_64) _ARCH="x86_64" ;;
44+
aarch64) _ARCH="arm64" ;;
45+
esac
46+
soar dl "https://github.com/fullstorydev/grpcurl/releases/download/v${PKGVER}/grpcurl_${PKGVER}_linux_${_ARCH}.tar.gz" --output "$SBUILD_TMPDIR/grpcurl.tar.gz"
47+
tar -xf "$SBUILD_TMPDIR/grpcurl.tar.gz" -C "$SBUILD_TMPDIR/"
48+
mv "$SBUILD_TMPDIR/grpcurl" "$SBUILD_OUTDIR/$PKG"
49+
mv "$SBUILD_TMPDIR/LICENSE" "$SBUILD_OUTDIR/LICENSE"

packages/lf/static.stable.yaml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#!/SBUILD
2+
_disabled: false
3+
4+
pkg: "lf"
5+
pkg_id: "gokcehan.lf"
6+
pkgver: "r41"
7+
pkg_type: "static"
8+
ghcr_pkg: "gokcehan/lf"
9+
category:
10+
- "ConsoleOnly"
11+
- "FileManager"
12+
- "Utility"
13+
description: "Terminal file manager"
14+
homepage:
15+
- "https://github.com/gokcehan/lf"
16+
maintainer:
17+
- "QaidVoid (contact@qaidvoid.dev)"
18+
license:
19+
- "MIT"
20+
build_asset:
21+
- url: "https://raw.githubusercontent.com/gokcehan/lf/master/LICENSE"
22+
out: "LICENSE"
23+
- url: "https://github.com/gokcehan/lf/releases/download/${PKGVER}/lf-linux-${ARCH_ALT}.tar.gz"
24+
out: "lf.tar.gz"
25+
note:
26+
- "Official binary from https://github.com/gokcehan/lf"
27+
- "[PORTABLE] (Portable Static Binary)"
28+
- "[NO_DESKTOP_INTEGRATION]"
29+
provides:
30+
- "lf"
31+
repology:
32+
- "lf"
33+
src_url:
34+
- "https://github.com/gokcehan/lf"
35+
tag:
36+
- "file-manager"
37+
- "terminal"
38+
- "cli"
39+
x_exec:
40+
host:
41+
- "x86_64-linux"
42+
- "aarch64-linux"
43+
shell: "sh"
44+
pkgver: |
45+
curl -qfsSL "https://api.github.com/repos/gokcehan/lf/releases/latest" | jq -r '.tag_name'
46+
run: |
47+
tar -xf "lf.tar.gz" -C "$SBUILD_TMPDIR/"
48+
mv "$SBUILD_TMPDIR/lf" "$SBUILD_OUTDIR/$PKG"
49+
rm -rf "lf.tar.gz"
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#!/SBUILD
2+
_disabled: false
3+
4+
pkg: "miniserve"
5+
pkg_id: "svenstaro.miniserve"
6+
pkgver: "0.33.0"
7+
pkg_type: "static"
8+
ghcr_pkg: "svenstaro/miniserve"
9+
category:
10+
- "ConsoleOnly"
11+
- "Network"
12+
- "Utility"
13+
description: "CLI tool to serve files and dirs over HTTP"
14+
homepage:
15+
- "https://github.com/svenstaro/miniserve"
16+
maintainer:
17+
- "QaidVoid (contact@qaidvoid.dev)"
18+
license:
19+
- "MIT"
20+
build_asset:
21+
- url: "https://raw.githubusercontent.com/svenstaro/miniserve/master/LICENSE"
22+
out: "LICENSE"
23+
- url: "https://github.com/svenstaro/miniserve/releases/download/v${PKGVER}/miniserve-${PKGVER}-${ARCH}-unknown-linux-musl"
24+
out: "miniserve"
25+
note:
26+
- "Official binary from https://github.com/svenstaro/miniserve"
27+
- "[PORTABLE] (Portable Static Binary)"
28+
- "[NO_DESKTOP_INTEGRATION]"
29+
provides:
30+
- "miniserve"
31+
repology:
32+
- "miniserve"
33+
src_url:
34+
- "https://github.com/svenstaro/miniserve"
35+
tag:
36+
- "http"
37+
- "server"
38+
- "file-sharing"
39+
x_exec:
40+
host:
41+
- "x86_64-linux"
42+
- "aarch64-linux"
43+
shell: "sh"
44+
pkgver: |
45+
curl -qfsSL "https://api.github.com/repos/svenstaro/miniserve/releases/latest" | jq -r '.tag_name' | tr -d 'v'
46+
run: |
47+
chmod +x "$SBUILD_OUTDIR/$PKG"

packages/navi/static.stable.yaml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#!/SBUILD
2+
_disabled: false
3+
4+
pkg: "navi"
5+
pkg_id: "denisidoro.navi"
6+
pkgver: "2.24.0"
7+
pkg_type: "static"
8+
ghcr_pkg: "denisidoro/navi"
9+
category:
10+
- "ConsoleOnly"
11+
- "Utility"
12+
description: "Interactive cheatsheet tool for the command-line"
13+
homepage:
14+
- "https://github.com/denisidoro/navi"
15+
maintainer:
16+
- "QaidVoid (contact@qaidvoid.dev)"
17+
license:
18+
- "Apache-2.0"
19+
build_asset:
20+
- url: "https://raw.githubusercontent.com/denisidoro/navi/master/LICENSE"
21+
out: "LICENSE"
22+
- url: "https://github.com/denisidoro/navi/releases/download/v${PKGVER}/navi-v${PKGVER}-x86_64-unknown-linux-musl.tar.gz"
23+
out: "navi.tar.gz"
24+
note:
25+
- "Official binary from https://github.com/denisidoro/navi"
26+
- "[PORTABLE] (Portable Static Binary)"
27+
- "[NO_DESKTOP_INTEGRATION]"
28+
provides:
29+
- "navi"
30+
repology:
31+
- "navi"
32+
src_url:
33+
- "https://github.com/denisidoro/navi"
34+
tag:
35+
- "cheatsheet"
36+
- "shell"
37+
- "cli"
38+
x_exec:
39+
host:
40+
- "x86_64-linux"
41+
shell: "sh"
42+
pkgver: |
43+
curl -qfsSL "https://api.github.com/repos/denisidoro/navi/releases/latest" | jq -r '.tag_name' | tr -d 'v'
44+
run: |
45+
tar -xf "navi.tar.gz" -C "$SBUILD_TMPDIR/"
46+
mv "$SBUILD_TMPDIR/navi" "$SBUILD_OUTDIR/$PKG"
47+
rm -rf "navi.tar.gz"
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
#!/SBUILD
2+
_disabled: false
3+
4+
pkg: "nerdctl"
5+
pkg_id: "containerd.nerdctl"
6+
pkgver: "2.2.1"
7+
pkg_type: "static"
8+
ghcr_pkg: "containerd/nerdctl"
9+
category:
10+
- "ConsoleOnly"
11+
- "System"
12+
- "Utility"
13+
description: "Docker-compatible CLI for containerd"
14+
homepage:
15+
- "https://github.com/containerd/nerdctl"
16+
maintainer:
17+
- "QaidVoid (contact@qaidvoid.dev)"
18+
license:
19+
- "Apache-2.0"
20+
build_asset:
21+
- url: "https://raw.githubusercontent.com/containerd/nerdctl/main/LICENSE"
22+
out: "LICENSE"
23+
- url: "https://github.com/containerd/nerdctl/releases/download/v${PKGVER}/nerdctl-${PKGVER}-linux-${ARCH_ALT}.tar.gz"
24+
out: "nerdctl.tar.gz"
25+
note:
26+
- "Official binary from https://github.com/containerd/nerdctl"
27+
- "[PORTABLE] (Portable Static Binary)"
28+
- "[NO_DESKTOP_INTEGRATION]"
29+
provides:
30+
- "nerdctl"
31+
repology:
32+
- "nerdctl"
33+
src_url:
34+
- "https://github.com/containerd/nerdctl"
35+
tag:
36+
- "container"
37+
- "docker"
38+
- "cli"
39+
x_exec:
40+
host:
41+
- "x86_64-linux"
42+
- "aarch64-linux"
43+
shell: "sh"
44+
pkgver: |
45+
curl -qfsSL "https://api.github.com/repos/containerd/nerdctl/releases/latest" | jq -r '.tag_name' | tr -d 'v'
46+
run: |
47+
tar -xf "nerdctl.tar.gz" -C "$SBUILD_TMPDIR/"
48+
mv "$SBUILD_TMPDIR/nerdctl" "$SBUILD_OUTDIR/$PKG"
49+
rm -rf "nerdctl.tar.gz"

0 commit comments

Comments
 (0)