New package: pv-migrate
Generate Checksum / renovate (pull_request) Has been skipped Details
Check build / Lint templates (pull_request) Failing after 33s Details
Check build / Build packages (map[arch:aarch64-musl host:x86_64-musl libc:musl platform:linux/amd64 test:0]) (pull_request) Failing after 41s Details
Check build / Build packages (map[arch:aarch64 host:x86_64 libc:glibc platform:linux/amd64 test:0]) (pull_request) Failing after 45s Details
Check build / Build packages (map[arch:armv6l-musl host:x86_64-musl libc:musl platform:linux/amd64 test:0]) (pull_request) Failing after 42s Details
Check build / Build packages (map[arch:x86_64-musl host:x86_64-musl libc:musl platform:linux/amd64 test:1]) (pull_request) Failing after 40s Details
Check build / Build packages (map[arch:x86_64 host:x86_64 libc:glibc platform:linux/amd64 test:1]) (pull_request) Failing after 42s Details
Check build / Build packages (map[arch:i686 host:i686 libc:glibc platform:linux/386 test:1]) (pull_request) Failing after 45s Details
Check build / Build packages (map[arch:armv7l host:x86_64 libc:glibc platform:linux/amd64 test:0]) (pull_request) Failing after 50s Details

This commit is contained in:
Luca Bilke 2024-05-24 15:59:16 +02:00
parent d45cf908e5
commit 79648abb34
No known key found for this signature in database
GPG Key ID: B753481DA0B6FA47
3 changed files with 25 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Template file for 'go'
pkgname=go
version=1.22.0
version=1.22.3
revision=1
create_wrksrc=yes
build_wrksrc=go

View File

@ -0,0 +1,22 @@
# Template file for 'pv-migrate'
pkgname=pv-migrate
version=2.0.1 # renovate utkuozdemir/pv-migrate
revision=1
archs="x86_64* i686"
build_style=go
go_import_path="github.com/utkuozdemir/pv-migrate"
go_package="./cmd/pv-migrate"
hostmakedepends="go"
short_desc="CLI tool to easily migrate Kubernetes persistent volumes"
maintainer="Luca Bilke <luca@bil.ke>"
license="Apache-2.0"
homepage="https://github.com/utkuozdemir/pv-migrate"
distfiles="https://github.com/utkuozdemir/pv-migrate/archive/v${version}.tar.gz"
checksum=37cfb0b7bfa581b32047fe6dbc9b834b4323629a5c946060dc897fe9bcef8e7c
post_install() {
for shell in bash zsh fish; do
${PKGDESTDIR}/usr/bin/${pkgname} completion "$shell" >"${pkgname}.$shell"
vcompletion "${pkgname}.$shell" "$shell"
done
}

View File

@ -16,7 +16,7 @@ checksum=e292c4427d801b426a53e24cff10aed16de5bcbf2a5207edfee30d8c4d363135
post_install() {
for shell in bash zsh fish; do
${PKGDESTDIR}/usr/bin/velero completion "$shell" >"velero.$shell"
vcompletion "velero.$shell" "$shell"
${PKGDESTDIR}/usr/bin/${pkgname} completion "$shell" >"${pkgname}.$shell"
vcompletion "${pkgname}.$shell" "$shell"
done
}