watchexec: update to 1.23.0

This commit is contained in:
cinerea0 2023-09-01 01:26:20 -04:00 committed by classabbyamp
parent 9bbac16e05
commit 050f46ea9d

View file

@ -1,15 +1,16 @@
# Template file for 'watchexec' # Template file for 'watchexec'
pkgname=watchexec pkgname=watchexec
version=1.22.3 version=1.23.0
revision=1 revision=1
build_wrksrc="crates/cli"
build_style=cargo 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" short_desc="Executes commands in response to file modifications"
maintainer="cinerea0 <cinerea0@protonmail.com>" maintainer="cinerea0 <cinerea0@protonmail.com>"
license="Apache-2.0" license="Apache-2.0"
homepage="https://github.com/watchexec/watchexec" homepage="https://github.com/watchexec/watchexec"
distfiles="https://github.com/watchexec/watchexec/archive/refs/tags/v${version}.tar.gz" distfiles="https://github.com/watchexec/watchexec/archive/refs/tags/v${version}.tar.gz"
checksum=698ed1dc178279594542f325b23f321c888c9c12c1960fe11c0ca48ba6edad76 checksum=2a321962669979feef44ea7a6220819d5c916ca939eba41b033ea346a44caa90
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
XBPS_CROSS_RUSTFLAGS+=" -latomic" XBPS_CROSS_RUSTFLAGS+=" -latomic"
@ -17,8 +18,8 @@ fi
post_install() { post_install() {
for shell in bash fish zsh; do for shell in bash fish zsh; do
vcompletion ${wrksrc}/completions/${shell} ${shell} vcompletion completions/${shell} ${shell}
done done
vman ${wrksrc}/doc/watchexec.1 vman doc/watchexec.1
} }