Update libuv to 1.30.1. All consumers are happy with this version.
There are only new dynamic export changes so I bumped minor version.
OK with the py-libuv port?
Index: Makefile
===================================================================
RCS file: /cvs/ports/devel/libuv/Makefile,v
retrieving revision 1.12
diff -u -p -u -p -r1.12 Makefile
--- Makefile 12 Jul 2019 21:02:14 -0000 1.12
+++ Makefile 24 Jul 2019 13:30:36 -0000
@@ -4,13 +4,12 @@
COMMENT = multi-platform library for asynchronous I/O
-VER = 1.24.1
+VER = 1.30.1
DISTNAME = libuv-v${VER}
PKGNAME = libuv-${VER}
CATEGORIES = devel
-REVISION = 0
-SHARED_LIBS = uv 2.0 # 1.0
+SHARED_LIBS = uv 2.1 # 1.0
HOMEPAGE = https://libuv.org/
Index: distinfo
===================================================================
RCS file: /cvs/ports/devel/libuv/distinfo,v
retrieving revision 1.3
diff -u -p -u -p -r1.3 distinfo
--- distinfo 4 Jan 2019 08:53:54 -0000 1.3
+++ distinfo 24 Jul 2019 13:30:36 -0000
@@ -1,2 +1,2 @@
-SHA256 (libuv-v1.24.1.tar.gz) = PdPut7ACFLAibaVbOImNP5SB0M90TUL6+Cdx4PGfKwo=
-SIZE (libuv-v1.24.1.tar.gz) = 1195550
+SHA256 (libuv-v1.30.1.tar.gz) = RoMW+oQdEUEU8We0XR9D1GoqGFLYRkM2pKu79biLR4s=
+SIZE (libuv-v1.30.1.tar.gz) = 1219579
Index: patches/patch-test_test-fs_c
===================================================================
RCS file: patches/patch-test_test-fs_c
diff -N patches/patch-test_test-fs_c
--- patches/patch-test_test-fs_c 4 Jan 2019 08:53:54 -0000 1.3
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,26 +0,0 @@
-$OpenBSD: patch-test_test-fs_c,v 1.3 2019/01/04 08:53:54 pascal Exp $
-
-Workaround for a minor bug:
-https://github.com/libuv/libuv/issues/1216
-
-Index: test/test-fs.c
---- test/test-fs.c.orig
-+++ test/test-fs.c
-@@ -1768,7 +1768,7 @@ TEST_IMPL(fs_realpath) {
- uv_fs_t req;
-
- loop = uv_default_loop();
-- ASSERT(0 == uv_fs_realpath(loop, &req, "no_such_file", dummy_cb));
-+ ASSERT(0 == uv_fs_realpath(loop, &req, "no_such_dir/no_such_file",
dummy_cb));
- ASSERT(0 == uv_run(loop, UV_RUN_DEFAULT));
- ASSERT(dummy_cb_count == 1);
- ASSERT(req.ptr == NULL);
-@@ -1784,7 +1784,7 @@ TEST_IMPL(fs_realpath) {
- ASSERT(req.result == UV_ENOENT);
- uv_fs_req_cleanup(&req);
-
-- ASSERT(UV_ENOENT == uv_fs_realpath(NULL, &req, "no_such_file", NULL));
-+ ASSERT(UV_ENOENT == uv_fs_realpath(NULL, &req, "no_such_dir/no_such_file",
NULL));
- ASSERT(req.ptr == NULL);
- ASSERT(req.result == UV_ENOENT);
- uv_fs_req_cleanup(&req);