From 716c3a6f10ba1e52e6acd49c48c9276ac29a38a3 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 2 May 2026 18:24:46 +0300 Subject: [PATCH] Update package version to 3.4.2 --- pkg.info | 25 +++++++++++++++++++++++-- source.sh | 14 ++------------ 2 files changed, 25 insertions(+), 14 deletions(-) diff --git a/pkg.info b/pkg.info index 86ef1cc..692c082 100644 --- a/pkg.info +++ b/pkg.info @@ -1,8 +1,29 @@ name: rsync description: Open source utility that provides fast incremental file transfer -version: 3.4.1 +version: 3.4.2 +revision: 1 url: https://rsync.samba.org/ license: GPL3-or-later +maintainers: + - enumdev@enumerated.dev architecture: any -depends: ["acl","lz4","openssl","popt","zlib","zstd"] type: source +keep: + - etc/rsyncd.conf +depends: + - acl + - lz4 + - openssl + - popt + - xxhash + - zlib + - zstd +optional_depends: + - python3:For rrsync +make_depends: + - python-commonmark +downloads: + - url: https://github.com/RsyncProject/rsync/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 74955151aada09e6c54d35507b7101a381e2f30962a90e9e8e7c160279e4a802 diff --git a/source.sh b/source.sh index 37a8976..cd49503 100644 --- a/source.sh +++ b/source.sh @@ -2,27 +2,17 @@ # 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 -DOWNLOAD="https://github.com/RsyncProject/rsync/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz" -FILENAME="${DOWNLOAD##*/}" - -# The prepare function is executed in the root of the temp directory -# This function is used for downloading files and putting them into the correct location -prepare() { - wget "$DOWNLOAD" - tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" -} - # The build function is executed in the source directory # This function is used to compile the source code build() { - ./configure --prefix=/usr --disable-xxhash --enable-ipv6 --with-included-popt=no --with-included-zlib=no + ./configure --prefix=/usr --enable-ipv6 --disable-debug --with-rrsync --with-included-popt=no --with-included-zlib=no make } # The check function is executed in the source directory # This function is used to run tests to verify the package has been compiled correctly check() { - make check + make test } # The package function is executed in the source directory