pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/libuv libuv: updated to 1.19.2



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9e47b9a634d8
branches:  trunk
changeset: 375812:9e47b9a634d8
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu Feb 22 08:44:14 2018 +0000

description:
libuv: updated to 1.19.2

Version 1.19.2

Changes since version 1.19.1:
* test: fix incorrect asserts
* test: fix a typo in test-fork.c
* build: remove long-obsolete gyp workarounds
* build: split off tests into separate gyp file
* test: check uv_cond_timedwait more carefully
* include,src: introduce UV__ERR() macro
* build: add url field to libuv.pc
* doc: mark IBM i as Tier 3 support
* win,build: correct C2059 errors
* zos: fix timeout for condition variable
* win: CREATE_NO_WINDOW when stdio is not inherited
* build: fix commmon.gypi comment
* doc: document uv_timer_start() on an active timer
* doc: add note about handle movability
* doc: fix syntax error in loop documentation
* osx,stream: retry sending handle on EMSGSIZE error
* unix: delay fs req register until after validation
* test: add tests for bad inputs
* unix,win: ensure req->bufs is freed
* test: add additional fs memory management checks

diffstat:

 devel/libuv/Makefile                        |   6 +++---
 devel/libuv/distinfo                        |  12 ++++++------
 devel/libuv/patches/patch-src_unix_thread.c |   8 ++++----
 3 files changed, 13 insertions(+), 13 deletions(-)

diffs (60 lines):

diff -r 831d300f7b2d -r 9e47b9a634d8 devel/libuv/Makefile
--- a/devel/libuv/Makefile      Thu Feb 22 00:09:44 2018 +0000
+++ b/devel/libuv/Makefile      Thu Feb 22 08:44:14 2018 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.30 2018/01/20 11:30:28 adam Exp $
+# $NetBSD: Makefile,v 1.31 2018/02/22 08:44:14 adam Exp $
 
-DISTNAME=      libuv-1.19.1
+DISTNAME=      libuv-1.19.2
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=libuv/}
 
 MAINTAINER=    agc%pkgsrc.org@localhost
-HOMEPAGE=      https://github.com/libuv/libuv/
+HOMEPAGE=      https://github.com/libuv/libuv
 COMMENT=       Cross-platform asychronous I/O
 LICENSE=       mit AND 2-clause-bsd AND isc AND modified-bsd
 
diff -r 831d300f7b2d -r 9e47b9a634d8 devel/libuv/distinfo
--- a/devel/libuv/distinfo      Thu Feb 22 00:09:44 2018 +0000
+++ b/devel/libuv/distinfo      Thu Feb 22 08:44:14 2018 +0000
@@ -1,12 +1,12 @@
-$NetBSD: distinfo,v 1.28 2018/01/20 11:30:28 adam Exp $
+$NetBSD: distinfo,v 1.29 2018/02/22 08:44:14 adam Exp $
 
-SHA1 (libuv-1.19.1.tar.gz) = 4e05192e819d83814856eb4b7fed7ca09a350150
-RMD160 (libuv-1.19.1.tar.gz) = 8bef8c32dfd47d35467ab8c79ab558f25c777249
-SHA512 (libuv-1.19.1.tar.gz) = b903dd460c4bbb11011821d1e1f6c92474462cb6ff0dd8185604eb7726cc61c545dc3f59f5b418e9b31d6512beacdf4fcbdb868dd0004e688a6e34f3feb17eb2
-Size (libuv-1.19.1.tar.gz) = 1174572 bytes
+SHA1 (libuv-1.19.2.tar.gz) = 990973a95d848aa7b5e9a79b73fbf2af3d579af8
+RMD160 (libuv-1.19.2.tar.gz) = be0a64e1722e5f256c2d89588b19855abaaff5b9
+SHA512 (libuv-1.19.2.tar.gz) = 4fa879e34c51ae428ebf72ce80873b8d12994ae1560f9d3577a693653bfd5bd4b4fda7ff457b98b5e60fc82546658300401d6545d677f31d2cd66be3d82e02da
+Size (libuv-1.19.2.tar.gz) = 1176076 bytes
 SHA1 (patch-autogen.sh) = a5f48189bfb17624c545a80626ea311b7755d232
 SHA1 (patch-configure.ac) = e6636d522dc9218fc9aee62846426645473cb6cd
 SHA1 (patch-src_unix_darwin.c) = 489f73fe81b9dea2acc72a669bf667c560c1deea
 SHA1 (patch-src_unix_fs.c) = 21fffa99df9528aedee0c6fe299d28ff5110d2ba
 SHA1 (patch-src_unix_netbsd.c) = 3386e702e3acc29bba6f3f5f612db728473b2a73
-SHA1 (patch-src_unix_thread.c) = 1ae58ceacc721421019c14eed5830c0a6dcf1768
+SHA1 (patch-src_unix_thread.c) = d4d76d2549f079af2200c16bb020e962d242dc02
diff -r 831d300f7b2d -r 9e47b9a634d8 devel/libuv/patches/patch-src_unix_thread.c
--- a/devel/libuv/patches/patch-src_unix_thread.c       Thu Feb 22 00:09:44 2018 +0000
+++ b/devel/libuv/patches/patch-src_unix_thread.c       Thu Feb 22 08:44:14 2018 +0000
@@ -1,12 +1,12 @@
-$NetBSD: patch-src_unix_thread.c,v 1.3 2017/08/17 20:06:47 adam Exp $
+$NetBSD: patch-src_unix_thread.c,v 1.4 2018/02/22 08:44:15 adam Exp $
 
 Use feature test for pthread_condattr_setclock, absent in netbsd-6-0
 
---- src/unix/thread.c.orig     2017-08-16 14:11:33.000000000 +0000
+--- src/unix/thread.c.orig     2018-02-21 20:25:38.000000000 +0000
 +++ src/unix/thread.c
-@@ -528,7 +528,7 @@ int uv_cond_init(uv_cond_t* cond) {
+@@ -568,7 +568,7 @@ int uv_cond_init(uv_cond_t* cond) {
    if (err)
-     return -err;
+     return UV__ERR(err);
  
 -#if !(defined(__ANDROID_API__) && __ANDROID_API__ < 21)
 +#if defined(HAVE_PTHREAD_CONDATTR_SETCLOCK)



Home | Main Index | Thread Index | Old Index