unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#57782] [PATCH 0/2] Update rsync and stunnel.
@ 2022-09-13 20:33 Greg Hogan
  2022-09-13 20:35 ` [bug#57782] [PATCH 1/2] gnu: rsync: Update to 3.2.6 Greg Hogan
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Greg Hogan @ 2022-09-13 20:33 UTC (permalink / raw)
  To: 57782; +Cc: Greg Hogan

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





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#57782] [PATCH 1/2] gnu: rsync: Update to 3.2.6.
  2022-09-13 20:33 [bug#57782] [PATCH 0/2] Update rsync and stunnel Greg Hogan
@ 2022-09-13 20:35 ` Greg Hogan
  2022-09-13 20:35 ` [bug#57782] [PATCH 2/2] gnu: stunnel: Update to 5.66 Greg Hogan
  2022-09-14 21:19 ` bug#57782: [PATCH 0/2] Update rsync and stunnel Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Greg Hogan @ 2022-09-13 20:35 UTC (permalink / raw)
  To: 57782; +Cc: Greg Hogan

* 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





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#57782] [PATCH 2/2] gnu: stunnel: Update to 5.66.
  2022-09-13 20:33 [bug#57782] [PATCH 0/2] Update rsync and stunnel Greg Hogan
  2022-09-13 20:35 ` [bug#57782] [PATCH 1/2] gnu: rsync: Update to 3.2.6 Greg Hogan
@ 2022-09-13 20:35 ` Greg Hogan
  2022-09-14 21:19 ` bug#57782: [PATCH 0/2] Update rsync and stunnel Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Greg Hogan @ 2022-09-13 20:35 UTC (permalink / raw)
  To: 57782; +Cc: Greg Hogan

* 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





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#57782: [PATCH 0/2] Update rsync and stunnel.
  2022-09-13 20:33 [bug#57782] [PATCH 0/2] Update rsync and stunnel Greg Hogan
  2022-09-13 20:35 ` [bug#57782] [PATCH 1/2] gnu: rsync: Update to 3.2.6 Greg Hogan
  2022-09-13 20:35 ` [bug#57782] [PATCH 2/2] gnu: stunnel: Update to 5.66 Greg Hogan
@ 2022-09-14 21:19 ` Ludovic Courtès
  2 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2022-09-14 21:19 UTC (permalink / raw)
  To: Greg Hogan; +Cc: 57782-done

Hi,

Greg Hogan <code@greghogan.com> skribis:

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

Applied, thanks!

Ludo’.




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-09-14 21:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-13 20:33 [bug#57782] [PATCH 0/2] Update rsync and stunnel Greg Hogan
2022-09-13 20:35 ` [bug#57782] [PATCH 1/2] gnu: rsync: Update to 3.2.6 Greg Hogan
2022-09-13 20:35 ` [bug#57782] [PATCH 2/2] gnu: stunnel: Update to 5.66 Greg Hogan
2022-09-14 21:19 ` bug#57782: [PATCH 0/2] Update rsync and stunnel Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).