Revert package version to 3.4.1 due to regressions

This commit is contained in:
2026-05-31 17:54:01 +03:00
parent 716c3a6f10
commit 72935a0f65
3 changed files with 33 additions and 3 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
name: rsync name: rsync
description: Open source utility that provides fast incremental file transfer description: Open source utility that provides fast incremental file transfer
version: 3.4.2 version: 3.4.1
revision: 1 revision: 2
url: https://rsync.samba.org/ url: https://rsync.samba.org/
license: GPL3-or-later license: GPL3-or-later
maintainers: maintainers:
@@ -26,4 +26,4 @@ downloads:
- url: https://github.com/RsyncProject/rsync/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz - url: https://github.com/RsyncProject/rsync/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: 74955151aada09e6c54d35507b7101a381e2f30962a90e9e8e7c160279e4a802 checksum: 7dbda2c6b863cd309ffda85c19f0e8754e5cec049b6f860783f8a0ad20c1a503
@@ -0,0 +1,23 @@
From a4b926dcdce96b0f2cc0dc7744e95747b233500a Mon Sep 17 00:00:00 2001
From: Michal Ruprich <[email protected]>
Date: Fri, 17 Jan 2025 12:37:57 +0100
Subject: [PATCH] bool is a keyword in C23
---
wildtest.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/wildtest.c b/wildtest.c
index bea4cebbe..482cdf170 100644
--- a/wildtest.c
+++ b/wildtest.c
@@ -32,7 +32,9 @@ int fnmatch_errors = 0;
int wildmatch_errors = 0;
+#if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 202311L
typedef char bool;
+#endif
int output_iterations = 0;
int explode_mod = 0;
+7
View File
@@ -2,6 +2,13 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
# The prepare function is executed in the root of the temp directory
# This function is used for putting downloaded files to the correct location or applying patches
prepare() {
cd "$BPM_SOURCE"
patch -Np1 -i "$BPM_WORKDIR"/0001-bool-is-a-keyword-in-c23.patch
}
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {