From c9ab568ca17b8421a4e622a3af9ed279d2ccb9d5 Mon Sep 17 00:00:00 2001 From: cinerea0 Date: Fri, 1 Sep 2023 01:26:20 -0400 Subject: [PATCH] watchexec: update to 1.23.0 --- srcpkgs/watchexec/template | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/srcpkgs/watchexec/template b/srcpkgs/watchexec/template index 4b8cf746d80665..1ac295a0869786 100644 --- a/srcpkgs/watchexec/template +++ b/srcpkgs/watchexec/template @@ -1,15 +1,16 @@ # Template file for 'watchexec' pkgname=watchexec -version=1.22.3 +version=1.23.0 revision=1 -build_wrksrc="crates/cli" build_style=cargo +make_install_args="--path crates/cli" +make_check_args="-- --skip scopes" # test fails in chroot short_desc="Executes commands in response to file modifications" maintainer="cinerea0 " license="Apache-2.0" homepage="https://github.com/watchexec/watchexec" distfiles="https://github.com/watchexec/watchexec/archive/refs/tags/v${version}.tar.gz" -checksum=698ed1dc178279594542f325b23f321c888c9c12c1960fe11c0ca48ba6edad76 +checksum=2a321962669979feef44ea7a6220819d5c916ca939eba41b033ea346a44caa90 if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then XBPS_CROSS_RUSTFLAGS+=" -latomic" @@ -17,8 +18,8 @@ fi post_install() { for shell in bash fish zsh; do - vcompletion ${wrksrc}/completions/${shell} ${shell} + vcompletion completions/${shell} ${shell} done - vman ${wrksrc}/doc/watchexec.1 + vman doc/watchexec.1 }