Johnny5
2b864bf369
Some checks failed
Generate Checksum / renovate (pull_request) Failing after 46s
Check build / Lint templates (pull_request) Failing after 1m0s
Check build / Build packages (map[arch:aarch64-musl host:x86_64-musl libc:musl platform:linux/amd64 test:0]) (pull_request) Successful in 1m0s
Check build / Build packages (map[arch:aarch64 host:x86_64 libc:glibc platform:linux/amd64 test:0]) (pull_request) Successful in 1m14s
Check build / Build packages (map[arch:armv6l-musl host:x86_64-musl libc:musl platform:linux/amd64 test:0]) (pull_request) Successful in 1m1s
Check build / Build packages (map[arch:armv7l host:x86_64 libc:glibc platform:linux/amd64 test:0]) (pull_request) Successful in 53s
Check build / Build packages (map[arch:i686 host:i686 libc:glibc platform:linux/386 test:1]) (pull_request) Successful in 49s
Check build / Build packages (map[arch:x86_64 host:x86_64 libc:glibc platform:linux/amd64 test:1]) (pull_request) Successful in 50s
Check build / Build packages (map[arch:x86_64-musl host:x86_64-musl libc:musl platform:linux/amd64 test:1]) (pull_request) Successful in 45s
Build/Publish XBPS / Build and publish packages (map[arch:x86_64 host:x86_64 libc:glibc platform:linux/amd64]) (push) Failing after 1m23s
30 lines
871 B
Bash
30 lines
871 B
Bash
# Template file for 'pv-migrate'
|
|
pkgname=pv-migrate
|
|
version=2.1.0 # renovate utkuozdemir/pv-migrate
|
|
revision=2
|
|
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
|
|
|
|
# fix: collect2: fatal error: cannot find 'ld'
|
|
export LDFLAGS="-fuse-ld=bfd"
|
|
|
|
post_build() {
|
|
for shell in bash zsh fish; do
|
|
go run main.go completion $shell >completion.$shell
|
|
done
|
|
}
|
|
|
|
post_install() {
|
|
for shell in bash zsh fish; do
|
|
vcompletion completion.$shell $shell
|
|
done
|
|
}
|