forked from pool/libuv
Accepting request 560211 from home:avindra
- Update to version 1.18.0 * unix,win: add uv_os_getpid() * unix: remove incorrect assertion in uv_shutdown() * aix: fix -Wmaybe-uninitialized warning * win,doc: remove note about SIGWINCH on Windows * doc: fix IRC URL in CONTRIBUTING.md - 1.17.0 * ibmi: add support for new platform * unix: keep track of bound sockets sent via spawn * unix: avoid malloc() call in uv_spawn() * zos: add strnlen() implementation * test: add threadpool init/teardown test * test: avoid malloc() in threadpool test * test: lower number of tasks in threadpool test * test: fix test-spawn compilation * doc: clarify the description of uv_loop_alive() * win: issue memory barrier in uv_thread_join() * win: map UV_FS_O_EXLOCK to a share mode of 0 * win: fix build on case-sensitive file systems * win: fix test runner build with mingw64 * win: remove unused variable in test/test-fs.c - 1.16.1 * unix: move net/if.h include * win: fix undeclared NDIS_IF_MAX_STRING_SIZE - 1.16.0 * unix,win: add fs open flags, map O_DIRECT|O_DSYNC * win, fs: fix non-symlink reparse points * test: fix -Wstrict-prototypes warnings * unix, windows: map ENOTTY errno * unix: fall back to fsync() if F_FULLFSYNC fails * unix: do not close invalid kqueue fd after fork * zos: reset epoll data after fork * zos: skip fork_threadpool_queue_work_simple * test: keep platform_output as first test * unix,win: add uv_os_getppid() * test: fix const qualification compiler warning * doc: mark uv_default_loop() as not thread safe * win, pipe: null-initialize stream->shutdown_req * tty, win: get SetWinEventHook pointer at startup * test: no extra new line in skipped test output * pipe: allow access from other users * unix,win: add uv_if_{indextoname,indextoiid} * win: fix non-English dlopen error message * win: change st_blksize from `2048` to `4096` - Small spec file cleanup OBS-URL: https://build.opensuse.org/request/show/560211 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libuv?expand=0&rev=23
This commit is contained in:
parent
79c86383cf
commit
a5a4cf30a1
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:17afc94ec307be28fe8d4316679171219770df4f993905a79643c7583e106489
|
||||
size 1158746
|
3
libuv-1.18.0.tar.gz
Normal file
3
libuv-1.18.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:772f93776ba68a357b515cda1515ce898674ef6cde30826d0cac64ce9950ebb0
|
||||
size 1167950
|
@ -1,3 +1,52 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 24 22:24:45 UTC 2017 - avindra@opensuse.org
|
||||
|
||||
- Update to version 1.18.0
|
||||
* unix,win: add uv_os_getpid()
|
||||
* unix: remove incorrect assertion in uv_shutdown()
|
||||
* aix: fix -Wmaybe-uninitialized warning
|
||||
* win,doc: remove note about SIGWINCH on Windows
|
||||
* doc: fix IRC URL in CONTRIBUTING.md
|
||||
- 1.17.0
|
||||
* ibmi: add support for new platform
|
||||
* unix: keep track of bound sockets sent via spawn
|
||||
* unix: avoid malloc() call in uv_spawn()
|
||||
* zos: add strnlen() implementation
|
||||
* test: add threadpool init/teardown test
|
||||
* test: avoid malloc() in threadpool test
|
||||
* test: lower number of tasks in threadpool test
|
||||
* test: fix test-spawn compilation
|
||||
* doc: clarify the description of uv_loop_alive()
|
||||
* win: issue memory barrier in uv_thread_join()
|
||||
* win: map UV_FS_O_EXLOCK to a share mode of 0
|
||||
* win: fix build on case-sensitive file systems
|
||||
* win: fix test runner build with mingw64
|
||||
* win: remove unused variable in test/test-fs.c
|
||||
- 1.16.1
|
||||
* unix: move net/if.h include
|
||||
* win: fix undeclared NDIS_IF_MAX_STRING_SIZE
|
||||
- 1.16.0
|
||||
* unix,win: add fs open flags, map O_DIRECT|O_DSYNC
|
||||
* win, fs: fix non-symlink reparse points
|
||||
* test: fix -Wstrict-prototypes warnings
|
||||
* unix, windows: map ENOTTY errno
|
||||
* unix: fall back to fsync() if F_FULLFSYNC fails
|
||||
* unix: do not close invalid kqueue fd after fork
|
||||
* zos: reset epoll data after fork
|
||||
* zos: skip fork_threadpool_queue_work_simple
|
||||
* test: keep platform_output as first test
|
||||
* unix,win: add uv_os_getppid()
|
||||
* test: fix const qualification compiler warning
|
||||
* doc: mark uv_default_loop() as not thread safe
|
||||
* win, pipe: null-initialize stream->shutdown_req
|
||||
* tty, win: get SetWinEventHook pointer at startup
|
||||
* test: no extra new line in skipped test output
|
||||
* pipe: allow access from other users
|
||||
* unix,win: add uv_if_{indextoname,indextoiid}
|
||||
* win: fix non-English dlopen error message
|
||||
* win: change st_blksize from `2048` to `4096`
|
||||
- Small spec file cleanup
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 1 08:50:48 UTC 2017 - mpluskal@suse.com
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
%define somajor 1
|
||||
Name: libuv
|
||||
Version: 1.15.0
|
||||
Version: 1.18.0
|
||||
Release: 0
|
||||
Summary: Asychronous I/O support library
|
||||
License: MIT
|
||||
@ -62,7 +62,7 @@ primarily developed for use by Node.js, but it is also used by
|
||||
Mozilla's Rust language, Luvit, Julia, pyuv, and others.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
./autogen.sh
|
||||
|
Loading…
Reference in New Issue
Block a user