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.26.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/127d992bd7ab
branches:  trunk
changeset: 319318:127d992bd7ab
user:      adam <adam%pkgsrc.org@localhost>
date:      Mon Feb 11 10:46:56 2019 +0000

description:
libuv: updated to 1.26.0

Changes 1.26.0:
* doc: fix uv_get_free_memory doc
* unix: fix epoll cpu 100% issue
* openbsd,tcp: special handling of EINVAL on connect
* win: simplify registry closing in uv_cpu_info()
* src,include: define UV_MAXHOSTNAMESIZE
* win: return product name in uv_os_uname() version
* thread: allow specifying stack size for new thread
* win: fix duplicate tty vt100 fn key
* unix: don't attempt to invalidate invalid fd

diffstat:

 devel/libuv/Makefile                        |   4 ++--
 devel/libuv/distinfo                        |  12 ++++++------
 devel/libuv/patches/patch-src_unix_thread.c |  19 ++++++++++++++++---
 3 files changed, 24 insertions(+), 11 deletions(-)

diffs (64 lines):

diff -r 0e71d6813107 -r 127d992bd7ab devel/libuv/Makefile
--- a/devel/libuv/Makefile      Mon Feb 11 10:45:20 2019 +0000
+++ b/devel/libuv/Makefile      Mon Feb 11 10:46:56 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.44 2019/01/19 15:33:35 adam Exp $
+# $NetBSD: Makefile,v 1.45 2019/02/11 10:46:56 adam Exp $
 
-DISTNAME=      libuv-1.25.0
+DISTNAME=      libuv-1.26.0
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=libuv/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}
diff -r 0e71d6813107 -r 127d992bd7ab devel/libuv/distinfo
--- a/devel/libuv/distinfo      Mon Feb 11 10:45:20 2019 +0000
+++ b/devel/libuv/distinfo      Mon Feb 11 10:46:56 2019 +0000
@@ -1,12 +1,12 @@
-$NetBSD: distinfo,v 1.40 2019/01/19 15:33:35 adam Exp $
+$NetBSD: distinfo,v 1.41 2019/02/11 10:46:56 adam Exp $
 
-SHA1 (libuv-1.25.0.tar.gz) = 9a62e98aa5d28953856cdcc6f0c52f86b9582419
-RMD160 (libuv-1.25.0.tar.gz) = 7323dcf81f1fccbd86fc3b8c0b9b97b6a1ff31df
-SHA512 (libuv-1.25.0.tar.gz) = d1024f9193e2ad69cc670441b74ff7c63ca7d295e9a7a43c90da6781a39352687465bfe7e852d6e9085c21821bf8d11c10139c7229759fdce567d809c605acfd
-Size (libuv-1.25.0.tar.gz) = 1207205 bytes
+SHA1 (libuv-1.26.0.tar.gz) = f66a92493e0e22d6e41b2fef7eb4e45b8f754d77
+RMD160 (libuv-1.26.0.tar.gz) = db4d6065f78d98cc43ea0082d425d81a0c4cdbd2
+SHA512 (libuv-1.26.0.tar.gz) = c38e36d4d700090f48f9d997302968d9fe2382d21695b2d5b30776149f1739f66cd03458937a11309efe326bdad8c12abe8bf0f0e210d30cc2de4d9ab651d1e3
+Size (libuv-1.26.0.tar.gz) = 1209551 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) = d4d76d2549f079af2200c16bb020e962d242dc02
+SHA1 (patch-src_unix_thread.c) = 752ad5e97965b7e8781c96fac34612628c0015c6
diff -r 0e71d6813107 -r 127d992bd7ab devel/libuv/patches/patch-src_unix_thread.c
--- a/devel/libuv/patches/patch-src_unix_thread.c       Mon Feb 11 10:45:20 2019 +0000
+++ b/devel/libuv/patches/patch-src_unix_thread.c       Mon Feb 11 10:46:56 2019 +0000
@@ -1,10 +1,23 @@
-$NetBSD: patch-src_unix_thread.c,v 1.4 2018/02/22 08:44:15 adam Exp $
+$NetBSD: patch-src_unix_thread.c,v 1.5 2019/02/11 10:46:56 adam Exp $
 
+Fix for systems without PTHREAD_STACK_MIN.
 Use feature test for pthread_condattr_setclock, absent in netbsd-6-0
 
---- src/unix/thread.c.orig     2018-02-21 20:25:38.000000000 +0000
+--- src/unix/thread.c.orig     2019-02-10 16:44:47.000000000 +0000
 +++ src/unix/thread.c
-@@ -568,7 +568,7 @@ int uv_cond_init(uv_cond_t* cond) {
+@@ -219,9 +219,11 @@ int uv_thread_create_ex(uv_thread_t* tid
+     pagesize = (size_t)getpagesize();
+     /* Round up to the nearest page boundary. */
+     stack_size = (stack_size + pagesize - 1) &~ (pagesize - 1);
++#ifdef PTHREAD_STACK_MIN
+     if (stack_size < PTHREAD_STACK_MIN)
+       stack_size = PTHREAD_STACK_MIN;
++#endif
+   }
+ 
+   if (stack_size > 0) {
+     attr = &attr_storage;
+@@ -685,7 +687,7 @@ int uv_cond_init(uv_cond_t* cond) {
    if (err)
      return UV__ERR(err);
  



Home | Main Index | Thread Index | Old Index