pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/net/openrsync
Module Name: pkgsrc
Committed By: vins
Date: Mon Aug 31 14:02:05 UTC 2026
Modified Files:
pkgsrc/net/openrsync: Makefile distinfo
pkgsrc/net/openrsync/patches: patch-compats.c patch-extern.h
Log Message:
net/openrsync: update to openrsync-0.20260730
Sync with upstream, pulling another year of commits.
Noteworthy changes:
* Many portability fixes (with specific regard to NetBSD)
* Various bug fixes.
* Several improvents merged from Apple.
Refer to the github history for more details.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/net/openrsync/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/net/openrsync/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/openrsync/patches/patch-compats.c
cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/openrsync/patches/patch-extern.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/net/openrsync/Makefile
diff -u pkgsrc/net/openrsync/Makefile:1.4 pkgsrc/net/openrsync/Makefile:1.5
--- pkgsrc/net/openrsync/Makefile:1.4 Sun Nov 30 11:46:38 2025
+++ pkgsrc/net/openrsync/Makefile Mon Aug 31 14:02:04 2026
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.4 2025/11/30 11:46:38 vins Exp $
+# $NetBSD: Makefile,v 1.5 2026/08/31 14:02:04 vins Exp $
-DISTNAME= openrsync-0.20250127
-PKGREVISION= 1
+DISTNAME= openrsync-0.20260730
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GITHUB:=kristapsdz/}
-GITHUB_TAG= a257c0f495af2b5ee6b41efc6724850a445f87ed
+GITHUB_TAG= 8235c68f11b4fad5e24849a01d04ea153c29ee28
MAINTAINER= vins%NetBSD.org@localhost
HOMEPAGE= https://github.com/kristapsdz/openrsync
Index: pkgsrc/net/openrsync/distinfo
diff -u pkgsrc/net/openrsync/distinfo:1.6 pkgsrc/net/openrsync/distinfo:1.7
--- pkgsrc/net/openrsync/distinfo:1.6 Sun Nov 30 11:46:38 2025
+++ pkgsrc/net/openrsync/distinfo Mon Aug 31 14:02:05 2026
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.6 2025/11/30 11:46:38 vins Exp $
+$NetBSD: distinfo,v 1.7 2026/08/31 14:02:05 vins Exp $
-BLAKE2s (openrsync-0.20250127-a257c0f495af2b5ee6b41efc6724850a445f87ed.tar.gz) = b9fa62c20f47ff781a7f6236cf2fc4bca9c6a3483b681c8da9bfa1d8df2146d9
-SHA512 (openrsync-0.20250127-a257c0f495af2b5ee6b41efc6724850a445f87ed.tar.gz) =
424d7e5816f969e8148be1e0967f499eedb3314e0ab6c9389d725ba8f8fe355d642cfe8697745601b76e78d616a4b1cba2f704aaa1542869558b2a18408a8561
-Size (openrsync-0.20250127-a257c0f495af2b5ee6b41efc6724850a445f87ed.tar.gz) = 152816 bytes
-SHA1 (patch-compats.c) = f812ef21d3be9c0d58059d20a7d9230b4976dabf
-SHA1 (patch-extern.h) = bebb4a9bc77968cbc6c875288e5813417e3ea479
+BLAKE2s (openrsync-0.20260730-8235c68f11b4fad5e24849a01d04ea153c29ee28.tar.gz) = 5cc1990d11909f2bc24b3676cd0be8c6bd1ba4780d4e1ec36e6e83298b4cac49
+SHA512 (openrsync-0.20260730-8235c68f11b4fad5e24849a01d04ea153c29ee28.tar.gz) =
f1854a74eb595a32895f5e31e96fbda197143a5e9a09bcf7aa1a45ff3d475607d3fe1cad8a805ec296a012ffb4f588d73fe577909bcc47ef2ac27e0a4ef1f0a3
+Size (openrsync-0.20260730-8235c68f11b4fad5e24849a01d04ea153c29ee28.tar.gz) = 282973 bytes
+SHA1 (patch-compats.c) = eefbf4b97dd24843e8b885bbbeedbfc254c05d58
+SHA1 (patch-extern.h) = 84a674860e370b88e835bd630e068788b67bd6ba
Index: pkgsrc/net/openrsync/patches/patch-compats.c
diff -u pkgsrc/net/openrsync/patches/patch-compats.c:1.1 pkgsrc/net/openrsync/patches/patch-compats.c:1.2
--- pkgsrc/net/openrsync/patches/patch-compats.c:1.1 Sun Nov 30 11:46:38 2025
+++ pkgsrc/net/openrsync/patches/patch-compats.c Mon Aug 31 14:02:05 2026
@@ -1,14 +1,14 @@
-$NetBSD: patch-compats.c,v 1.1 2025/11/30 11:46:38 vins Exp $
+$NetBSD: patch-compats.c,v 1.2 2026/08/31 14:02:05 vins Exp $
Prevent incompatble pointer types for memset.
---- compats.c.orig 2025-01-27 04:36:41.000000000 +0000
+--- compats.c.orig 2026-07-30 04:55:04.000000000 +0000
+++ compats.c
@@ -2145,7 +2145,7 @@ explicit_bzero(void *p, size_t n)
* Indirect memset through a volatile pointer to hopefully avoid
* dead-store optimisation eliminating the call.
*/
--static void (* volatile ssh_memset)(void *, int, size_t) = memset;
+-static void * (* volatile ssh_memset)(void *, int, size_t) = memset;
+static void * (* ssh_memset)(void *, int, size_t) = memset;
void
Index: pkgsrc/net/openrsync/patches/patch-extern.h
diff -u pkgsrc/net/openrsync/patches/patch-extern.h:1.3 pkgsrc/net/openrsync/patches/patch-extern.h:1.4
--- pkgsrc/net/openrsync/patches/patch-extern.h:1.3 Sun Nov 30 11:46:38 2025
+++ pkgsrc/net/openrsync/patches/patch-extern.h Mon Aug 31 14:02:05 2026
@@ -1,14 +1,14 @@
-$NetBSD: patch-extern.h,v 1.3 2025/11/30 11:46:38 vins Exp $
+$NetBSD: patch-extern.h,v 1.4 2026/08/31 14:02:05 vins Exp $
-Add missing include.
+Add missing header for uint*_t types.
---- extern.h.orig 2025-11-30 12:37:24.789764856 +0000
+--- extern.h.orig 2026-08-31 04:45:33.623155744 +0000
+++ extern.h
-@@ -17,6 +17,7 @@
- #ifndef EXTERN_H
- #define EXTERN_H
-
-+#include <stdint.h>
- #include "md4.h"
+@@ -21,6 +21,7 @@
+ #include <fts.h> /* FTSENT */
+ #include <stdbool.h>
+ #include <stdio.h> /* FILE */
++#include <stdint.h> /* uint8_t */
+ #include <time.h> /* struct timespec, gettimeofday(), etc. */
#if !HAVE_PLEDGE
Home |
Main Index |
Thread Index |
Old Index