From 40fe2206338929ded0a57eeca65905bca32f1d78 Mon Sep 17 00:00:00 2001 From: Daniel Lewan Date: Fri, 24 Dec 2021 14:07:35 +0100 Subject: [PATCH] procs: update to 0.11.13. --- srcpkgs/procs/template | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/srcpkgs/procs/template b/srcpkgs/procs/template index cee5b7f47fe9..fad24562d427 100644 --- a/srcpkgs/procs/template +++ b/srcpkgs/procs/template @@ -1,6 +1,6 @@ # Template file for 'procs' pkgname=procs -version=0.11.12 +version=0.11.13 revision=1 build_style=cargo build_helper=qemu @@ -10,19 +10,19 @@ license="MIT" homepage="https://github.com/dalance/procs" changelog="https://raw.githubusercontent.com/dalance/procs/master/CHANGELOG.md" distfiles="https://github.com/dalance/procs/archive/refs/tags/v${version}.tar.gz" -checksum=ff1a293d84cc0160cc92b4530ee93cedf530796e80130df74b0490c3e884efb6 +checksum=b769ddf1b2faeca4e9fb22e8e0248f5d69b4b88bd51fb37c8510d2e6a8e897d3 post_build() { PROCS="target/${RUST_TARGET}/release/procs" - vtargetrun ${PROCS} --completion bash - vtargetrun ${PROCS} --completion fish - vtargetrun ${PROCS} --completion zsh + vtargetrun ${PROCS} --completion-out bash >procs.bash + vtargetrun ${PROCS} --completion-out fish >procs.fish + vtargetrun ${PROCS} --completion-out zsh >procs.zsh } post_install() { vcompletion procs.bash bash vcompletion procs.fish fish - vcompletion _procs zsh + vcompletion procs.zsh zsh vlicense LICENSE }