GNU bug report logs - #57782
[PATCH 0/2] Update rsync and stunnel.

Previous Next

Package: guix-patches;

Reported by: Greg Hogan <code <at> greghogan.com>

Date: Tue, 13 Sep 2022 20:34:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 57782 in the body.
You can then email your comments to 57782 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#57782; Package guix-patches. (Tue, 13 Sep 2022 20:34:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Greg Hogan <code <at> greghogan.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 13 Sep 2022 20:34:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: guix-patches <at> gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH 0/2] Update rsync and stunnel.
Date: Tue, 13 Sep 2022 20:33:19 +0000
stunnel has no dependent packages and the only dependent build failures
for rsync are ocaml packages which look to match failures at
ci.guix.gnu.org.

I am not familiar with openssl support in rsync, but the rsync-ssl
script is currently installed without enabling openssl.

Greg Hogan (2):
  gnu: rsync: Update to 3.2.6.
  gnu: stunnel: Update to 5.66.

 gnu/packages/rsync.scm | 10 +++++-----
 gnu/packages/web.scm   |  4 ++--
 2 files changed, 7 insertions(+), 7 deletions(-)

-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#57782; Package guix-patches. (Tue, 13 Sep 2022 20:36:02 GMT) Full text and rfc822 format available.

Message #8 received at 57782 <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 57782 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH 1/2] gnu: rsync: Update to 3.2.6.
Date: Tue, 13 Sep 2022 20:35:39 +0000
* gnu/packages/rsync.scm (rsync): Update to 3.2.6.
[arguments]<#:configure-flags> Remove '--disable-openssl'.
[inputs]: Add openssl.
---
 gnu/packages/rsync.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/rsync.scm b/gnu/packages/rsync.scm
index 5f549ef234..98cd33baef 100644
--- a/gnu/packages/rsync.scm
+++ b/gnu/packages/rsync.scm
@@ -29,6 +29,7 @@ (define-module (gnu packages rsync)
   #:use-module (gnu packages digest)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages popt)
+  #:use-module (gnu packages tls)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix download)
@@ -39,27 +40,26 @@ (define-module (gnu packages rsync)
 (define-public rsync
   (package
    (name "rsync")
-   (version "3.2.5")
+   (version "3.2.6")
    (source (origin
             (method url-fetch)
             (uri (string-append "https://rsync.samba.org/ftp/rsync/src/rsync-"
                                 version ".tar.gz"))
             (sha256
              (base32
-              "1flsqq01dmbz0m2vwn4sj46zb9yxlrfc6xy3gf393xyd6lbd5i1a"))))
+              "1lslaj1s7mpgf4v5lxhhiyy4ffmxaxy9cbplx8gx8dvqnax6aczv"))))
    (build-system gnu-build-system)
    (arguments
     `(#:configure-flags
       ;; The bundled copies are preferred by default.
       (list "--without-included-zlib"
-            "--without-included-popt"
-            ;; Avoid these dependencies for now.
-            "--disable-openssl")))
+            "--without-included-popt")))
    (native-inputs
     (list perl))
    (inputs
     (list acl
           lz4
+          openssl
           popt
           xxhash
           zlib
-- 
2.37.3





Information forwarded to guix-patches <at> gnu.org:
bug#57782; Package guix-patches. (Tue, 13 Sep 2022 20:36:02 GMT) Full text and rfc822 format available.

Message #11 received at 57782 <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 57782 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH 2/2] gnu: stunnel: Update to 5.66.
Date: Tue, 13 Sep 2022 20:35:40 +0000
* gnu/packages/web.scm (stunnel): Update to 5.66.
---
 gnu/packages/web.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index dd9540a9cb..89da652f87 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -5800,14 +5800,14 @@ (define-public httptunnel
 (define-public stunnel
   (package
   (name "stunnel")
-  (version "5.61")
+  (version "5.66")
   (source
     (origin
       (method url-fetch)
       (uri (string-append "https://www.stunnel.org/downloads/stunnel-"
                           version ".tar.gz"))
       (sha256
-       (base32 "0yjx07r5wc987s4z0wm37381fa3az2s4mrhyjxypx3rd92k0rsli"))))
+       (base32 "172pkzp8qilj0gd92bhdi96739gjpgbcav5c7a4gd98s9mq7i0am"))))
   (build-system gnu-build-system)
   (arguments
    (list #:configure-flags
-- 
2.37.3





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Wed, 14 Sep 2022 21:20:02 GMT) Full text and rfc822 format available.

Notification sent to Greg Hogan <code <at> greghogan.com>:
bug acknowledged by developer. (Wed, 14 Sep 2022 21:20:02 GMT) Full text and rfc822 format available.

Message #16 received at 57782-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Greg Hogan <code <at> greghogan.com>
Cc: 57782-done <at> debbugs.gnu.org
Subject: Re: bug#57782: [PATCH 0/2] Update rsync and stunnel.
Date: Wed, 14 Sep 2022 23:19:00 +0200
Hi,

Greg Hogan <code <at> greghogan.com> skribis:

>   gnu: rsync: Update to 3.2.6.
>   gnu: stunnel: Update to 5.66.

Applied, thanks!

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 13 Oct 2022 11:24:14 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 190 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.