[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
35/38: gnu: stunnel: Update to 5.47.
From: |
Tobias Geerinckx-Rice |
Subject: |
35/38: gnu: stunnel: Update to 5.47. |
Date: |
Mon, 25 Jun 2018 22:24:26 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 8d07936aa6617191ebee65bf3ff98b9f911de18f
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Tue Jun 26 04:09:58 2018 +0200
gnu: stunnel: Update to 5.47.
* gnu/packages/web.scm (stunnel): Update to 5.47.
[native-inputs]: Add iproute, netcat, and procps.
[arguments]: Add ‘patch-output-directories’ and ‘patch-tests’ phases.
---
gnu/packages/web.scm | 30 +++++++++++++++++++++++++++---
1 file changed, 27 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index dd1e63e..3507dd5 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -61,6 +61,7 @@
#:use-module (guix build-system ant)
#:use-module (guix build-system scons)
#:use-module (gnu packages)
+ #:use-module (gnu packages admin)
#:use-module (gnu packages adns)
#:use-module (gnu packages apr)
#:use-module (gnu packages check)
@@ -93,6 +94,7 @@
#:use-module (gnu packages libevent)
#:use-module (gnu packages libidn)
#:use-module (gnu packages libunistring)
+ #:use-module (gnu packages linux)
#:use-module (gnu packages lisp)
#:use-module (gnu packages lua)
#:use-module (gnu packages markup)
@@ -4923,7 +4925,7 @@ tools like SSH (Secure Shell) to reach the outside
world.")
(define-public stunnel
(package
(name "stunnel")
- (version "5.46")
+ (version "5.47")
(source
(origin
(method url-fetch)
@@ -4931,12 +4933,34 @@ tools like SSH (Secure Shell) to reach the outside
world.")
version ".tar.gz"))
(sha256
(base32
- "1iw4gap9ysag8iww2ik029scmdllk7jdzcpnnbj7hgbl526b9akn"))))
+ "02qx0b0dd38rfcl9vfd6zq1pcg5gv0z2mxw5z3p2pfbfk7dpbrn4"))))
(build-system gnu-build-system)
+ (native-inputs
+ ;; For tests.
+ `(("iproute" ,iproute)
+ ("netcat" ,netcat)
+ ("procps" ,procps)))
(inputs `(("openssl" ,openssl)))
(arguments
`(#:configure-flags
- (list (string-append "--with-ssl=" (assoc-ref %build-inputs "openssl")))))
+ (list (string-append "--with-ssl=" (assoc-ref %build-inputs "openssl")))
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-output-directories
+ (lambda _
+ ;; Some (not all) Makefiles have a hard-coded incorrect docdir.
+ (substitute* (list "Makefile.in"
+ "doc/Makefile.in"
+ "tools/Makefile.in")
+ (("/doc/stunnel")
+ (string-append "/doc/" ,name "-" ,version)))
+ #t))
+ (add-before 'check 'patch-tests
+ (lambda _
+ (substitute* "tests/make_test"
+ (("/bin/sh ")
+ (string-append (which "sh") " ")))
+ #t)))))
(home-page "https://www.stunnel.org")
(synopsis "TLS proxy for clients or servers")
(description "Stunnel is a proxy designed to add TLS encryption
- 19/38: gnu: unbound: Use INVOKE., (continued)
- 19/38: gnu: unbound: Use INVOKE., Tobias Geerinckx-Rice, 2018/06/25
- 28/38: gnu: irssi: Return #t from all phases., Tobias Geerinckx-Rice, 2018/06/25
- 23/38: gnu: address@hidden: Return #t from all phases., Tobias Geerinckx-Rice, 2018/06/25
- 30/38: gnu: glog: Return #t from all phases., Tobias Geerinckx-Rice, 2018/06/25
- 32/38: gnu: transfig: Return #t from phases., Tobias Geerinckx-Rice, 2018/06/25
- 33/38: gnu: newsboat: Return #t from phases., Tobias Geerinckx-Rice, 2018/06/25
- 29/38: gnu: epic5: Return #t from all phases., Tobias Geerinckx-Rice, 2018/06/25
- 37/38: gnu: python-pynacl: Update to 1.2.1., Tobias Geerinckx-Rice, 2018/06/25
- 34/38: gnu: newsboat: Update to 2.12., Tobias Geerinckx-Rice, 2018/06/25
- 38/38: gnu: python-zope-testing: Update to 4.6.2., Tobias Geerinckx-Rice, 2018/06/25
- 35/38: gnu: stunnel: Update to 5.47.,
Tobias Geerinckx-Rice <=
- 36/38: gnu: python-pathpy: Update to 11.0.1., Tobias Geerinckx-Rice, 2018/06/25