rsync: Bump to 3.2.7

This commit is contained in:
Tee KOBAYASHI 2022-10-26 00:05:53 +09:00 committed by xtkoba
parent 0308265675
commit 0e70bdf452
2 changed files with 2 additions and 29 deletions

View File

@ -2,10 +2,9 @@ TERMUX_PKG_HOMEPAGE=https://rsync.samba.org/
TERMUX_PKG_DESCRIPTION="Utility that provides fast incremental file transfer"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=3.2.6
TERMUX_PKG_REVISION=1
TERMUX_PKG_VERSION=3.2.7
TERMUX_PKG_SRCURL=https://rsync.samba.org/ftp/rsync/src/rsync-${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=fb3365bab27837d41feaf42e967c57bd3a47bc8f10765a3671efd6a3835454d3
TERMUX_PKG_SHA256=4e7d9d3f6ed10878c58c5fb724a67dacf4b6aac7340b13e488fb2dc41346f2bb
TERMUX_PKG_DEPENDS="libiconv, liblz4, libpopt, openssh | dropbear, openssl, openssl-tool, zlib, zstd"
TERMUX_PKG_BUILD_IN_SRC=true

View File

@ -1,26 +0,0 @@
https://github.com/WayneD/rsync/commit/464555ea923b32f3504678d05bc7de9205e5c8da
From 464555ea923b32f3504678d05bc7de9205e5c8da Mon Sep 17 00:00:00 2001
From: Wayne Davison <wayne@opencoder.net>
Date: Tue, 13 Sep 2022 20:56:32 -0700
Subject: [PATCH] Fix really silly bug with --relative rules.
---
exclude.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/exclude.c b/exclude.c
index 4bf85cb37..b21207bab 100644
--- a/exclude.c
+++ b/exclude.c
@@ -494,9 +494,9 @@ void add_implied_include(const char *arg, int skip_daemon_module)
maybe_add_literal_brackets_rule(rule, arg_len);
if (relative_paths && slash_cnt) {
filter_rule const *ent;
- int found = 0;
slash_cnt = 1;
for (p = new_pat + 1; (p = strchr(p, '/')) != NULL; p++) {
+ int found = 0;
*p = '\0';
for (ent = implied_filter_list.head; ent; ent = ent->next) {
if (ent != rule && strcmp(ent->pattern, new_pat) == 0) {