Source-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.38.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/337d8887f99a
branches:  trunk
changeset: 432561:337d8887f99a
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat May 23 09:27:10 2020 +0000

description:
libuv: updated to 1.38.0

Version 1.38.0
* test: skip poll_duplex and poll_unidirectional on PASE
* linux: make cpu_times consistently be milliseconds
* win: DRY uv_poll_start() and uv_poll_stop()
* win: DRY uv_poll_close()
* unix,win: add uv_library_shutdown()
* unix: yield cpu when spinlocking on async handle
* win: remove dep on GetQueuedCompletionStatusEx
* doc: correct source lines
* build,android: fix typo
* doc: uv_cancel() handles uv_random_t requests
* doc: fix unescaped character
* build,cmake: fix compilation on old MinGW
* build: remove unnessesary MSVC warnings
* win: make uv_udp_init_ex() accept UV_UDP_RECVMMSG
* unix: simplify uv__udp_init_ex()
* win: remove MAX_PATH limitations
* build, win: add long path aware manifest
* doc: check/idle/prepare functions always succeed
* darwin: fix build with non-apple compilers
* win: support environment variables > 32767 chars
* unix: fully initialize struct msghdr
* doc: add uv_replace_allocator thread safety warning
* unix: fix int overflow when copying large files
* fs: report original error
* win, fs: add IO_REPARSE_TAG_APPEXECLINK support
* doc: fix formatting
* unix: fix memory leak when uv_loop_init() fails
* unix: shrink uv_udp_set_source_membership() stack
* unix,win: fix wrong sizeof argument to memcpy()
* build: check for libraries not provided by libc
* doc: fix the order of arguments to calloc()
* unix: don't abort when getrlimit() fails
* test: support common user profile on IBMi
* build: test on more platforms via QEMU in CI

diffstat:

 devel/libuv/Makefile                   |   4 ++--
 devel/libuv/distinfo                   |  12 ++++++------
 devel/libuv/patches/patch-configure.ac |  18 +++++++++---------
 3 files changed, 17 insertions(+), 17 deletions(-)

diffs (61 lines):

diff -r fcb3f5cc68b0 -r 337d8887f99a devel/libuv/Makefile
--- a/devel/libuv/Makefile      Sat May 23 09:19:46 2020 +0000
+++ b/devel/libuv/Makefile      Sat May 23 09:27:10 2020 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.61 2020/04/20 07:59:34 adam Exp $
+# $NetBSD: Makefile,v 1.62 2020/05/23 09:27:10 adam Exp $
 
-DISTNAME=      libuv-1.37.0
+DISTNAME=      libuv-1.38.0
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=libuv/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}
diff -r fcb3f5cc68b0 -r 337d8887f99a devel/libuv/distinfo
--- a/devel/libuv/distinfo      Sat May 23 09:19:46 2020 +0000
+++ b/devel/libuv/distinfo      Sat May 23 09:27:10 2020 +0000
@@ -1,11 +1,11 @@
-$NetBSD: distinfo,v 1.56 2020/04/20 07:59:34 adam Exp $
+$NetBSD: distinfo,v 1.57 2020/05/23 09:27:10 adam Exp $
 
-SHA1 (libuv-1.37.0.tar.gz) = 68cedc24648cde3c70d8c382714dc846deee191d
-RMD160 (libuv-1.37.0.tar.gz) = 4222d6ebaac5bf22a1a942b30c362b03588751e8
-SHA512 (libuv-1.37.0.tar.gz) = ae0d864f5455696507b3a7680170d26e0e333aaeeb74dc2647fc9774a89912ba8ac2be056dbd5cd2b0224ec36ef7bb223fbc851a77302be82c531f8ea01545e0
-Size (libuv-1.37.0.tar.gz) = 1249701 bytes
+SHA1 (libuv-1.38.0.tar.gz) = 612052697972341ffdc226307c43f455dc3716a9
+RMD160 (libuv-1.38.0.tar.gz) = 81291cc8951eda3b64152b8a730801ba40977438
+SHA512 (libuv-1.38.0.tar.gz) = da9af33ec17f46f2390661f84e942115c442e665cb63ba5637eb12d2cb0b034889e0d816f261abe7fff3b4d0b44ab8bb63c81f3ec1917325cf0ca93e01921641
+Size (libuv-1.38.0.tar.gz) = 1261216 bytes
 SHA1 (patch-autogen.sh) = a5f48189bfb17624c545a80626ea311b7755d232
-SHA1 (patch-configure.ac) = 06500ab342d1af50f03bc92f2cb4a2ec28db84cc
+SHA1 (patch-configure.ac) = 1b215764f1b326df0a89a20cd07e295e55469781
 SHA1 (patch-src_unix_fs.c) = 15b464be3e31c0934732c537c4163b5b96665f63
 SHA1 (patch-src_unix_netbsd.c) = 4bea4eda43c4256b5281bc798a46d29690917d27
 SHA1 (patch-src_unix_thread.c) = 7a9a5d19025bb7bb8968a9f5c5e0c67f37021b89
diff -r fcb3f5cc68b0 -r 337d8887f99a devel/libuv/patches/patch-configure.ac
--- a/devel/libuv/patches/patch-configure.ac    Sat May 23 09:19:46 2020 +0000
+++ b/devel/libuv/patches/patch-configure.ac    Sat May 23 09:27:10 2020 +0000
@@ -1,15 +1,15 @@
-$NetBSD: patch-configure.ac,v 1.2 2019/08/22 10:28:25 wiz Exp $
+$NetBSD: patch-configure.ac,v 1.3 2020/05/23 09:27:10 adam Exp $
 
 Add feature-test for pthread_condattr_setclock absent in netbsd-6-0
 https://github.com/libuv/libuv/pull/2436
 
---- configure.ac.orig  2017-02-01 00:38:56.000000000 +0000
+--- configure.ac.orig  2020-05-17 15:34:37.000000000 +0000
 +++ configure.ac
-@@ -46,6 +46,7 @@ AC_CHECK_LIB([kvm], [kvm_open])
- AC_CHECK_LIB([nsl], [gethostbyname])
- AC_CHECK_LIB([perfstat], [perfstat_cpu])
- AC_CHECK_LIB([pthread], [pthread_mutex_init])
+@@ -43,6 +43,7 @@ AX_PTHREAD([
+     CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
+ ])
+ AC_CHECK_LIB([dl], [dlopen])
 +AC_CHECK_LIB([pthread], [pthread_condattr_setclock], AC_DEFINE(HAVE_PTHREAD_CONDATTR_SETCLOCK))
- AC_CHECK_LIB([rt], [clock_gettime])
- AC_CHECK_LIB([sendfile], [sendfile])
- AC_CHECK_LIB([socket], [socket])
+ AC_SEARCH_LIBS([kstat_lookup], [kstat])
+ AC_SEARCH_LIBS([gethostbyname], [nsl])
+ AC_SEARCH_LIBS([perfstat_cpu], [perfstat])



Home | Main Index | Thread Index | Old Index