Compare commits
3 Commits
27196b9abd
...
827f1e3945
| Author | SHA1 | Date | |
|---|---|---|---|
| 827f1e3945 | |||
| a236043eec | |||
| 7941291e45 |
@@ -25,7 +25,7 @@ build() {
|
||||
|
||||
package() {
|
||||
install -Dm755 target/release/sqlx "$pkgdir/usr/bin/sqlx"
|
||||
ln -sf /usr/bin/sqlx "$pkgdir/usr/bin/cargo-sqlx"
|
||||
install -Dm755 target/release/cargo-sqlx "$pkgdir/usr/bin/cargo-sqlx"
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
|
||||
33
systemfd/APKBUILD
Normal file
33
systemfd/APKBUILD
Normal file
@@ -0,0 +1,33 @@
|
||||
# Maintainer: Galen Abell <galen@galenabell.com>
|
||||
# renovate: datasource=github-tags packageName=mitsuhiko/systemfd
|
||||
pkgname=systemfd
|
||||
pkgver=0.4.6
|
||||
pkgrel=0
|
||||
pkgdesc="Auto-reloading dev tool with socket activation"
|
||||
url="https://github.com/mitsuhiko/systemfd"
|
||||
arch="all"
|
||||
license="Apache-2.0"
|
||||
makedepends="cargo cargo-auditable"
|
||||
options="net"
|
||||
source="$pkgname-$pkgver.tar.gz::https://github.com/mitsuhiko/systemfd/archive/refs/tags/$pkgver.tar.gz"
|
||||
|
||||
prepare() {
|
||||
default_prepare
|
||||
|
||||
cargo fetch --target="$CTARGET" --locked
|
||||
}
|
||||
|
||||
build() {
|
||||
cargo auditable build --frozen --release
|
||||
}
|
||||
|
||||
check() {
|
||||
cargo test --release
|
||||
}
|
||||
|
||||
package() {
|
||||
install -Dm755 target/release/systemfd "$pkgdir/usr/bin/systemfd"
|
||||
}
|
||||
sha512sums="
|
||||
9ae48781ee39cc2097421e7bfadcf6c3a3aefb4df0a3da0ac5c84fc495b598d86cb940a38427d4fb20f4ae51cfa74923b4cf2f0f79ccae238a4f3ed46b4bc7e0 systemfd-0.4.6.tar.gz
|
||||
"
|
||||
49
talosctl/APKBUILD
Normal file
49
talosctl/APKBUILD
Normal file
@@ -0,0 +1,49 @@
|
||||
# Maintainer: Galen Abell <galen@galenabell.com>
|
||||
# renovate: datasource=github-tags packageName=siderolabs/talos
|
||||
pkgname=talosctl
|
||||
pkgver=1.9.5
|
||||
pkgrel=0
|
||||
pkgdesc="Kubernetes Linux distribution"
|
||||
url="https://talos.dev"
|
||||
arch="all"
|
||||
license="MPL-2.0"
|
||||
makedepends="go"
|
||||
options="net"
|
||||
subpackages="
|
||||
$pkgname-bash-completion
|
||||
$pkgname-zsh-completion
|
||||
$pkgname-fish-completion
|
||||
"
|
||||
source="talos-$pkgver.tar.gz::https://github.com/siderolabs/talos/archive/refs/tags/v$pkgver.tar.gz"
|
||||
builddir="$srcdir/talos-$pkgver"
|
||||
|
||||
export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"
|
||||
export GOTMPDIR="${GOTMPDIR:-"$srcdir"}"
|
||||
export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}"
|
||||
|
||||
build() {
|
||||
go build -v ./cmd/talosctl
|
||||
|
||||
for shell in bash fish zsh; do
|
||||
./talosctl completion $shell >talosctl.$shell
|
||||
done
|
||||
}
|
||||
|
||||
check() {
|
||||
go test ./cmd/talosctl/...
|
||||
}
|
||||
|
||||
package() {
|
||||
install -Dm755 talosctl -t "$pkgdir"/usr/bin
|
||||
|
||||
install -Dm644 talosctl.bash \
|
||||
"$pkgdir"/usr/share/bash-completion/completions/talosctl
|
||||
install -Dm644 talosctl.zsh \
|
||||
"$pkgdir"/usr/share/zsh/site-functions/_talosctl
|
||||
install -Dm644 talosctl.fish \
|
||||
"$pkgdir"/usr/share/fish/vendor_completions.d/talosctl.fish
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
67bbe25d299b7b9b0a1f8857e84e7d87441e7ec270ebb2561598948828d7f26e113d41462e9f4d30d92cc2ed5acda71ed5542f1445b62872e2707a47fed87893 talos-1.9.5.tar.gz
|
||||
"
|
||||
Reference in New Issue
Block a user