[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#38509] [PATCH] gnu: libuv: Update to 1.34.0
From: |
Andrew Miloradovsky |
Subject: |
[bug#38509] [PATCH] gnu: libuv: Update to 1.34.0 |
Date: |
Fri, 6 Dec 2019 11:57:13 +0300 |
* gnu/packages/libevent.scm (libuv): Update to 1.34.0 (from 1.30.1)
---
gnu/packages/libevent.scm | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/libevent.scm b/gnu/packages/libevent.scm
index 465ed95eb2..aabc780bfe 100644
--- a/gnu/packages/libevent.scm
+++ b/gnu/packages/libevent.scm
@@ -99,22 +99,21 @@ limited support for fork events.")
(define-public libuv
(package
(name "libuv")
- (version "1.30.1")
+ (version "1.34.0")
(source (origin
(method url-fetch)
(uri (string-append "https://dist.libuv.org/dist/v" version
"/libuv-v" version ".tar.gz"))
(sha256
(base32
- "12s7ifwgbfxblhv46inqa8c2lsnl8cgmvd37y4a4248xhkx1d0s6"))))
+ "0j416x38cp6gh5isn3fwv331aw6bpfmrk8xgm07rq5py47kyqg52"))))
(build-system gnu-build-system)
- (arguments
- '(;; XXX: Some tests want /dev/tty, attempt to make connections, etc.
- #:tests? #f))
+ (arguments '(#:tests? #f))
+ ;; tests 122-124 (getnameinfo_basic_ip*) fail
+ ;; https://github.com/libuv/libuv/issues/2531
(native-inputs `(("autoconf" ,autoconf-wrapper)
("automake" ,automake)
("libtool" ,libtool)
-
;; libuv.pc is installed only when pkg-config is found.
("pkg-config" ,pkg-config)))
(home-page "https://github.com/libuv/libuv")
--
2.24.0
- [bug#38509] [PATCH] gnu: libuv: Update to 1.34.0,
Andrew Miloradovsky <=