watchexec: Bump to 1.21.0

This commit is contained in:
Tee KOBAYASHI 2023-01-09 20:13:47 +09:00 committed by xtkoba
parent c63f19bf83
commit 2f64adf172
2 changed files with 4 additions and 29 deletions

View File

@ -2,28 +2,14 @@ TERMUX_PKG_HOMEPAGE=https://github.com/watchexec/watchexec
TERMUX_PKG_DESCRIPTION="Executes commands in response to file modifications"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=1.20.6
TERMUX_PKG_SRCURL=https://github.com/watchexec/watchexec/archive/refs/tags/cli-v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=fa490944bbc8eafdc585454d27ec6f75988ce7d159db8ee1244b1fc5bbd86935
TERMUX_PKG_VERSION=1.21.0
TERMUX_PKG_SRCURL=https://github.com/watchexec/watchexec/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=ff835eed2be68de97b08eaa2177d9cdcb721f6d727c6803a642ca94d11eec5fa
TERMUX_PKG_AUTO_UPDATE=false
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
termux_setup_rust
: "${CARGO_HOME:=$HOME/.cargo}"
export CARGO_HOME
cd crates/cli
cargo fetch --target $CARGO_TARGET_NAME
local p=git-config-0.7.1-src-values-path.rs.diff
local d
for d in $CARGO_HOME/registry/src/github.com-*/git-config-*; do
patch --silent -p1 -d ${d} < $TERMUX_PKG_BUILDER_DIR/${p} || :
done
}
termux_step_make_install() {
termux_setup_rust
cargo install \
--jobs $TERMUX_MAKE_PROCESSES \
--path crates/cli \

View File

@ -1,11 +0,0 @@
--- a/src/values/path.rs
+++ b/src/values/path.rs
@@ -170,7 +170,7 @@
Err(interpolate::Error::UserInterpolationUnsupported)
}
- #[cfg(not(windows))]
+ #[cfg(not(any(target_os = "windows", target_os = "android")))]
fn interpolate_user(
self,
home_for_user: fn(&str) -> Option<PathBuf>,