From fdb0fe989c08c6a4133f8efdffe6b7e1f1b4965f89f0e54b4c1d0f0508809b66 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Sun, 7 Jul 2019 13:44:19 +0000 Subject: [PATCH] Accepting request 713180 from home:mcepl:neovim - Upgrade to 1.30.1: * doc: fix incorrect versionchanged (cjihrig) * test: allow UV_ECONNRESET in tcp_try_write_error (cjihrig) * unix: add uv_get_constrained_memory() cygwin stub (cjihrig) * build: fix android cmake build (Ben Noordhuis) * unix: squelch -Wcast-function-type warning (Ben Noordhuis) * build: fix compile error with uClibc (zlargon)* darwin: fall back to F_BARRIERFSYNC (Ben Noordhuis) * darwin: add 32 bit close$NOCANCEL implementation (ken-cunningham-webuse) * build, core, unix: add support for Haiku (Leorize) * darwin,linux: more conservative minimum stack size (Ben Noordhuis) * threadpool: increase UV_THREADPOOL_SIZE limit (Vlad A) * unix: return actual error from `uv_try_write()` (Anna Henningsen) * darwin: fix build error with macos 10.10 (Ben Noordhuis) * unix: make uv_cwd() report UV_ENOBUFS (Ben Noordhuis) * unix: make uv_fs_read() fill all buffers (Ben Noordhuis) * test: give hrtime test a custom 10s timeout (Ben Noordhuis) * fs: fix uv_fs_copyfile if same src and dst (Santiago Gimeno) * build: add cmake option to skip building tests (Niels Lohmann) * doc: add link to nodejs.org (Jenil Christo) * unix: fix a comment typo in signal.c (Evgeny Ermakov) * unix: remove redundant cast in process.c (gengjiawen) * doc: fix wrong mutex function prototypes (Leo Chung) * unix: simplify uv/posix.h include logic (cjihrig) * test: increase test timeout (cjihrig) * linux: fix sscanf() overflows reading from /proc (Ben Noordhuis) * ibmi: read memory and CPU usage info (Xu Meng) * doc: update the cmake testing instruction (zlargon) * unix: fix race condition in uv_async_send() (Ben Noordhuis) OBS-URL: https://build.opensuse.org/request/show/713180 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libuv?expand=0&rev=33 --- fix_tests.patch | 14 ++++------ libuv-1.27.0.tar.gz | 3 --- libuv-1.30.1.tar.gz | 3 +++ libuv.changes | 66 +++++++++++++++++++++++++++++++++++++++++++++ libuv.spec | 2 +- 5 files changed, 75 insertions(+), 13 deletions(-) delete mode 100644 libuv-1.27.0.tar.gz create mode 100644 libuv-1.30.1.tar.gz diff --git a/fix_tests.patch b/fix_tests.patch index b9319e6..72e91b2 100644 --- a/fix_tests.patch +++ b/fix_tests.patch @@ -1,7 +1,5 @@ -Index: libuv-1.24.0/test/test-getnameinfo.c -=================================================================== ---- libuv-1.24.0.orig/test/test-getnameinfo.c -+++ libuv-1.24.0/test/test-getnameinfo.c +--- a/test/test-getnameinfo.c ++++ b/test/test-getnameinfo.c @@ -39,6 +39,8 @@ static void getnameinfo_req(uv_getnamein const char* hostname, const char* service) { @@ -11,11 +9,9 @@ Index: libuv-1.24.0/test/test-getnameinfo.c ASSERT(status == 0); ASSERT(hostname != NULL); ASSERT(service != NULL); -Index: libuv-1.24.0/test/test-list.h -=================================================================== ---- libuv-1.24.0.orig/test/test-list.h -+++ libuv-1.24.0/test/test-list.h -@@ -750,7 +750,7 @@ TASK_LIST_START +--- a/test/test-list.h ++++ b/test/test-list.h +@@ -792,7 +792,7 @@ TASK_LIST_START TEST_ENTRY (getnameinfo_basic_ip4) TEST_ENTRY (getnameinfo_basic_ip4_sync) diff --git a/libuv-1.27.0.tar.gz b/libuv-1.27.0.tar.gz deleted file mode 100644 index 71d6842..0000000 --- a/libuv-1.27.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4afcdc84cd315b77c8e532e7b3fde43d536af0e2e835eafbd0e75518ed26dbed -size 1214154 diff --git a/libuv-1.30.1.tar.gz b/libuv-1.30.1.tar.gz new file mode 100644 index 0000000..4710117 --- /dev/null +++ b/libuv-1.30.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85566c2c4eae7d8e2c2d27d40e728fea29f9086e98e795c5cdce1a790f43de5 +size 1228593 diff --git a/libuv.changes b/libuv.changes index 3d429c3..ede24b6 100644 --- a/libuv.changes +++ b/libuv.changes @@ -1,3 +1,69 @@ +------------------------------------------------------------------- +Wed Jul 3 08:28:41 CEST 2019 - Matej Cepl + +- Upgrade to 1.30.1: + * doc: fix incorrect versionchanged (cjihrig) + * test: allow UV_ECONNRESET in tcp_try_write_error (cjihrig) + * unix: add uv_get_constrained_memory() cygwin stub (cjihrig) + * build: fix android cmake build (Ben Noordhuis) + * unix: squelch -Wcast-function-type warning (Ben Noordhuis) + * build: fix compile error with uClibc (zlargon)* darwin: fall + back to F_BARRIERFSYNC (Ben Noordhuis) + * darwin: add 32 bit close$NOCANCEL implementation + (ken-cunningham-webuse) + * build, core, unix: add support for Haiku (Leorize) + * darwin,linux: more conservative minimum stack size (Ben Noordhuis) + * threadpool: increase UV_THREADPOOL_SIZE limit (Vlad A) + * unix: return actual error from `uv_try_write()` (Anna Henningsen) + * darwin: fix build error with macos 10.10 (Ben Noordhuis) + * unix: make uv_cwd() report UV_ENOBUFS (Ben Noordhuis) + * unix: make uv_fs_read() fill all buffers (Ben Noordhuis) + * test: give hrtime test a custom 10s timeout (Ben Noordhuis) + * fs: fix uv_fs_copyfile if same src and dst (Santiago Gimeno) + * build: add cmake option to skip building tests (Niels Lohmann) + * doc: add link to nodejs.org (Jenil Christo) + * unix: fix a comment typo in signal.c (Evgeny Ermakov) + * unix: remove redundant cast in process.c (gengjiawen) + * doc: fix wrong mutex function prototypes (Leo Chung) + * unix: simplify uv/posix.h include logic (cjihrig) + * test: increase test timeout (cjihrig) + * linux: fix sscanf() overflows reading from /proc (Ben Noordhuis) + * ibmi: read memory and CPU usage info (Xu Meng) + * doc: update the cmake testing instruction (zlargon) + * unix: fix race condition in uv_async_send() (Ben Noordhuis) + * linux: use O_CLOEXEC instead of EPOLL_CLOEXEC (Ben Noordhuis) + * doc: mark uv_async_send() as async-signal-safe (Ben Noordhuis) + * linux: init st_flags and st_gen when using statx (Oscar Waddell) + * linux: read free/total memory from /proc/meminfo (Ben Noordhuis) + * test: test zero-sized uv_fs_sendfile() writes (Ben Noordhuis) + * unix: don't assert on UV_PROCESS_WINDOWS_* flags (Ben Noordhuis) + * linux: set correct mac address for IP-aliases (Santiago Gimeno) + * win,util: fix null pointer dereferencing (Tobias Nießen) + * unix,win: fix `uv_fs_poll_stop()` when active (Anna Henningsen) + * doc: add missing uv_fs_type entries (Michele Caini) + * doc: fix build with sphinx 2.x (FX Coudert) + * unix: don't make statx system call on Android (George Zhao) + * unix: fix clang scan-build warning (Kyle Edwards) + * unix: fall back to kqueue on older macOS systems (ken-cunningham-webuse) + * unix,win: add uv_get_constrained_memory() (Kelvin Jin) + * darwin: fix thread cancellation fd leak (Ben Noordhuis) + * linux: fix thread cancellation fd leak (Ben Noordhuis) + * unix,win: add uv_gettimeofday() (cjihrig) + * unix,win: add uv_fs_{open,read,close}dir() (cjihrig) + * unix: fix uv_interface_addresses() (Andreas Rohner) + * fs: remove macOS-specific copyfile(3) (Rich Trott) + * fs: add test for copyfile() respecting permissions (Rich Trott) + * build: partially revert 5234b1c (Ben Noordhuis) + * zos: fix setsockopt error when using AF_UNIX (Milad Farazmand) + * unix: suppress EINTR/EINPROGRESS in uv_fs_close() (Ben Noordhuis) + * build: use cmake APPLE variable to detect platform (zlargon) + * distcheck: remove duplicate test/ entry (Jameson Nash) + * unix: remove unused cmpxchgl() function (Ben Noordhuis) + * unix: support sockaddr_un in uv_udp_send() (Yury Selivanov) + * unix: guard use of PTHREAD_STACK_MIN (Kamil Rytarowski) + * unix,win: introduce uv_timeval64_t (cjihrig) + * doc: document uv_timeval_t and uv_timeval64_t (cjihrig) + ------------------------------------------------------------------- Thu Mar 21 11:12:46 UTC 2019 - Ondřej Súkup diff --git a/libuv.spec b/libuv.spec index b834c5e..beefc74 100644 --- a/libuv.spec +++ b/libuv.spec @@ -18,7 +18,7 @@ %define somajor 1 Name: libuv -Version: 1.27.0 +Version: 1.30.1 Release: 0 Summary: Asychronous I/O support library License: MIT