From c08cf0c042a9633173bbbd3fd8abba4186095bc9ef6cddbc9e00ec077ee22963 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Sat, 3 Oct 2015 16:48:16 +0000 Subject: [PATCH] Accepting request 336059 from home:darix:branches:devel:libraries:c_c++ - Update to 1.7.5 OBS-URL: https://build.opensuse.org/request/show/336059 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libuv?expand=0&rev=8 --- libuv.changes | 133 ++++++++++++++++++++++++++++++++++++++++++++++++++ libuv.spec | 2 +- v1.6.1.tar.gz | 3 -- v1.7.5.tar.gz | 3 ++ 4 files changed, 137 insertions(+), 4 deletions(-) delete mode 100644 v1.6.1.tar.gz create mode 100644 v1.7.5.tar.gz diff --git a/libuv.changes b/libuv.changes index b4cb6db..e7bbedb 100644 --- a/libuv.changes +++ b/libuv.changes @@ -1,3 +1,136 @@ +------------------------------------------------------------------- +Sat Oct 3 16:15:53 UTC 2015 - mrueckert@suse.de + +- Update to 1.7.5 + - unix: Support atomic compare & swap xlC on AIX (nmushell) + - unix: Fix including uv-aix.h on AIX (nmushell) + - unix: consolidate rwlock tryrdlock trywrlock errors (Saúl + Ibarra Corretgé) + - unix, win: consolidate mutex trylock errors (Saúl Ibarra + Corretgé) + - darwin: fix memory leak in uv_cpu_info (Jianghua Yang) + - test: add tests for the uv_rwlock implementation (Bert Belder) + - win: redo/fix the uv_rwlock APIs (Bert Belder) + - win: don't fetch function pointers to SRWLock APIs (Bert + Belder) +- Changes for 1.7.4: + - doc: uv_read_start and uv_read_cb clarifications (Ben Trask) + - freebsd: obtain true uptime through clock_gettime() (Jianghua + Yang) + - win, tty: do not convert \r to \r\n (Colin Snover) + - build,gyp: add DragonFly to the list of OSes (Michael Neumann) + - fs: fix bug in sendfile for DragonFly (Michael Neumann) + - doc: add uv_dlsym() return type (Brian White) + - tests: fix fs tests run w/o full getdents support (Jeremy + Whitlock) + - doc: fix typo (Devchandra Meetei Leishangthem) + - doc: fix uv-unix.h location (Sakthipriyan Vairamani) + - unix: fix error check when closing process pipe fd (Ben + Noordhuis) + - test,freebsd: fix ipc_listen_xx_write tests (Santiago Gimeno) + - win: fix unsavory rwlock fallback implementation (Bert Belder) + - doc: clarify repeat timer behavior (Eli Skeggs) +- Changes for 1.7.3: + - threadpool: fix thread starvation bug (Ben Noordhuis) +- Changes for 1.7.2: + - unix, win: make uv_loop_init return on error (Willem Thiart) + - win: reset pipe handle for pipe servers (Saúl Ibarra Corretgé) + - win: fix replacing pipe handle for pipe servers (Saúl Ibarra + Corretgé) + - win: fix setting pipe pending instances after bind (Saúl Ibarra + Corretgé) +- Changes for 1.7.1: + - doc: document the procedure for verifying releases (Saúl Ibarra + Corretgé) + - doc: add note about Windows binaries to the README (Saúl Ibarra + Corretgé) + - doc: use long GPG IDs in MAINTAINERS.md (Saúl Ibarra Corretgé) + - Revert "stream: squelch ECONNRESET error if already closed" + (Saúl Ibarra Corretgé) + - doc: clarify uv_read_stop() is idempotent (Corbin Simpson) + - unix: OpenBSD's setsockopt needs an unsigned char for multicast + (Zachary Hamm) + - test: Fix two memory leaks (Karl Skomski) + - unix,win: return EINVAL on nullptr args in uv_fs_{read,write} + (Karl Skomski) + - win: set accepted TCP sockets as non-inheritable (Saúl Ibarra + Corretgé) + - unix: remove superfluous parentheses in fs macros (Ben + Noordhuis) + - unix: don't copy arguments for sync fs requests (Ben Noordhuis) + - test: plug small memory leak in unix test runner (Ben + Noordhuis) + - unix,windows: allow NULL loop for sync fs requests (Ben + Noordhuis) + - unix,windows: don't assert on unknown error code (Ben + Noordhuis) + - stream: retry write on EPROTOTYPE on OSX (Brian White) + - common: fix use of snprintf on Windows (Saúl Ibarra Corretgé) + - tests: refactored fs watch_dir tests for stability (Jeremy + Whitlock) +- Changes for 1.7.0: + - win,stream: add slot to remember CRT fd (Bert Belder) + - win,pipe: properly close when created from CRT fd (Bert Belder) + - win,pipe: don't close fd 0-2 (Bert Belder) + - win,tty: convert fd -> handle safely (Bert Belder) + - win,tty: properly close when created from CRT fd (Bert Belder) + - win,tty: don't close fd 0-2 (Bert Belder) + - win,fs: don't close fd 0-2 (Bert Belder) + - win: include "malloc.h" (Cheng Zhao) + - windows: MSVC 2015 has C99 inline (Jason Williams) + - dragonflybsd: fixes for nonblocking and cloexec (Michael + Neumann) + - dragonflybsd: use sendfile(2) for uv_fs_sendfile (Michael + Neumann) + - dragonflybsd: fix uv_exepath (Michael Neumann) + - win,fs: Fixes align(8) directive on mingw (Stefano Cristiano) + - unix, win: prevent replacing fd in uv_{udp,tcp,pipe}_t (Saúl + Ibarra Corretgé) + - win: move logic to set socket non-inheritable to + uv_tcp_set_socket (Saúl Ibarra Corretgé) + - unix, win: add ability to create tcp/udp sockets early (Saúl + Ibarra Corretgé) + - test: retry select() on EINTR, honor milliseconds (Ben + Noordhuis) + - unix: consolidate tcp and udp bind error (Saúl Ibarra Corretgé) + - test: conditionally skip udp_ipv6_multicast_join6 (heshamsafi) + - core: add UV_VERSION_HEX macro (Saúl Ibarra Corretgé) + - doc: add section with version-checking macros and functions + (Saúl Ibarra Corretgé) + - tty: cleanup handle if uv_tty_init fails (Saúl Ibarra Corretgé) + - darwin: save a fd when FSEvents is used (Saúl Ibarra Corretgé) + - win: fix returning thread id in uv_thread_self (Saúl Ibarra + Corretgé) + - common: use offsetof for QUEUE_DATA (Saúl Ibarra Corretgé) + - win: remove UV_HANDLE_CONNECTED (A. Hauptmann) + - docs: add Windows specific note for uv_fs_open (Saúl Ibarra + Corretgé) + - doc: add note about uv_fs_scandir (Saúl Ibarra Corretgé) + - test,unix: reduce stack size of watchdog threads (Ben + Noordhuis) + - win: add support for recursive file watching (Saúl Ibarra + Corretgé) + - win,tty: support consoles with non-default colors (John + McNamee) + - doc: add missing variable name (Yosuke Furukawa) + - stream: squelch ECONNRESET error if already closed (Santiago + Gimeno) + - build: remove ancient condition from common.gypi (Saúl Ibarra + Corretgé) + - tests: skip some tests when network is unreachable (Luca Bruno) + - build: proper support for android cross compilation (guworks) + - android: add missing include to pthread-fixes.c (RossBencina) + - test: fix compilation warning (Saúl Ibarra Corretgé) + - doc: add a note about uv_dirent_t.type (Saúl Ibarra Corretgé) + - win,test: fix shared library build (Saúl Ibarra Corretgé) + - test: fix compilation warning (Santiago Gimeno) + - build: add experimental Windows installer (Roger A. Light) + - threadpool: send signal only when queue is empty (chenttuuvv) + - aix: fix uv_exepath with relative paths (Richard Lau) + - build: fix version syntax in AppVeyor file (Saúl Ibarra + Corretgé) + - unix: allow nbufs > IOV_MAX in uv_fs_{read,write} (ronkorving) + ------------------------------------------------------------------- Wed Aug 5 08:53:20 UTC 2015 - mpluskal@suse.com diff --git a/libuv.spec b/libuv.spec index 74d4a83..978df81 100644 --- a/libuv.spec +++ b/libuv.spec @@ -18,7 +18,7 @@ %define somajor 1 Name: libuv -Version: 1.6.1 +Version: 1.7.5 Release: 0 Summary: Cross-platform asychronous I/O License: MIT diff --git a/v1.6.1.tar.gz b/v1.6.1.tar.gz deleted file mode 100644 index fa49e2f..0000000 --- a/v1.6.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f558ede285878d6a69f6a6d43b5df0241f3c35d62ac989477bdbd418badd83d7 -size 1027771 diff --git a/v1.7.5.tar.gz b/v1.7.5.tar.gz new file mode 100644 index 0000000..da1522f --- /dev/null +++ b/v1.7.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11d10f12d68fa655fff18c6021e8e45bc610e7baee006f17247b1830ee316093 +size 1041054