simplotask: update to 1.20.0

This commit is contained in:
Nikolay Korotkiy
2026-02-18 20:37:22 +04:00
committed by Renee Otten
parent 7425a4619a
commit 33d8c46f99
+21 -4
View File
@@ -3,7 +3,7 @@
PortSystem 1.0
PortGroup golang 1.0
go.setup github.com/umputun/spot 1.19.3 v
go.setup github.com/umputun/spot 1.20.0 v
name simplotask
revision 0
categories sysutils
@@ -19,9 +19,9 @@ build.pre_args-append \
REV=v${version}
build.args build
checksums rmd160 c585a14649fa75cf591ae1de415c47c246d13ca3 \
sha256 9f2318dfafb5f1be74e79a3d6a949fa869c83c0fc346cd819dcf226c12fdcf01 \
size 54740837
checksums rmd160 d66f0d2beef519eb4379511dd1cf3cc82f42c7b6 \
sha256 7a989e7220c6c7e66f2032304c3cd2d53256c15be669989036edb610025c719e \
size 54769263
destroot {
xinstall -m 0755 ${worksrcpath}/.bin/spot ${destroot}${prefix}/bin
@@ -30,4 +30,21 @@ destroot {
xinstall -d ${destroot}${prefix}/share/man/man1
xinstall -m 0644 ${worksrcpath}/spot.1 \
${destroot}${prefix}/share/man/man1/
set src_completion_dir ${worksrcpath}/completions
set bash_completion_dir ${destroot}${prefix}/etc/bash_completion.d
xinstall -d ${bash_completion_dir}
xinstall -m 644 ${src_completion_dir}/spot.bash ${bash_completion_dir}/spot
xinstall -m 644 ${src_completion_dir}/spot-secrets.bash ${bash_completion_dir}/spot-secrets
set fish_completion_dir ${destroot}${prefix}/share/fish/vendor_completions.d
xinstall -d ${fish_completion_dir}
xinstall -m 644 ${src_completion_dir}/spot.fish ${fish_completion_dir}/
xinstall -m 644 ${src_completion_dir}/spot-secrets.fish ${fish_completion_dir}/
set zsh_completion_dir ${destroot}${prefix}/share/zsh/site-functions
xinstall -d ${zsh_completion_dir}
xinstall -m 644 ${src_completion_dir}/spot.zsh ${zsh_completion_dir}/_spot
xinstall -m 644 ${src_completion_dir}/spot-secrets.zsh ${zsh_completion_dir}/_spot-secrets
}