diff options
author | adam <adam@pkgsrc.org> | 2017-06-24 06:07:44 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2017-06-24 06:07:44 +0000 |
commit | 8d06164371b2fe8f3a6541f3548d138e5e70c328 (patch) | |
tree | 9241857765ff9780aa9ba9816401ea097638546c /devel/libuv/Makefile | |
parent | d08349a5b5f9073d7162acd45e77b5d4a835b7ad (diff) | |
download | pkgsrc-8d06164371b2fe8f3a6541f3548d138e5e70c328.tar.gz |
Version 1.12.0
* test: fix tests on OpenBSD
* test: fix -Wformat warning
* win,fs: avoid double freeing uv_fs_event_t.dirw
* unix: remove unused code in `uv__io_start`
* signal: add uv_signal_start_oneshot method
* unix: factor out reusable POSIX hrtime impl
* unix,win: add uv_os_{get,set,unset}env()
* win: add uv__convert_utf8_to_utf16()
* docs: improve UV_ENOBUFS scenario documentation
* unix: return UV_EINVAL for NULL env name
* unix: filter getifaddrs results consistently
* unix: factor out getifaddrs result filter
* unix: factor out reusable BSD ifaddrs impl
* unix: use union to follow strict aliasing rules
* unix: simplify async watcher dispatch logic
* samples: update timer callback prototype
* unix: make loops and watchers usable after fork()
* win: free uv__loops once empty
* tools: add make_dist_html.py script
* win,sunos: stop handle on uv_fs_event_start() err
* unix,windows: refactor request init logic
* win: fix memory leak inside uv__pipe_getname
* fsevent: support for files without short name
* doc: fix multiple doc typos
* test,osx: fix flaky kill test
* unix: inline uv_pipe_bind() err_bind goto target
* unix,test: deadstore fixes
* win: fix memory leak inside uv_fs_access()
* doc: fix docs/src/fs.rst build warning
* doc: minor grammar fix in Installation section
* doc: suggestions for design page
* doc: libuv does not touch uv_loop_t.data
* github: add ISSUE_TEMPLATE.md
* doc: add link to libuv/help to README
* udp: fix fast path in uv_udp_send() on unix
* test: add test for uv_udp_send() fix
* doc: fix documentation for uv_handle_t.type
* zos: use proper prototype for epoll_init()
* doc: rename docs to "libuv documentation"
* doc: update copyright years
* doc: move TOC to a dedicated document
* doc: move documentation section up
* doc: move "upgrading" to a standalone document
* doc: add initial version of the User Guide
* doc: removed unused file
* doc: update guide/about and mention new maintainership
* doc: remove licensing note from guide/about
* doc: add warning note to user guide
* doc: change license to CC BY 4.0
* doc: remove ubvook reference from README
* doc: add code samples from uvbook
* doc: update supported linux/glibc baseline
* win: avoid leaking pipe handles to child processes
* win,test: support stdout output larger than 1kb
* win: remove __declspec(inline) from atomic op
* test: fix VC++ compilation warning
* build: add -Wstrict-prototypes
* zos: implement uv__io_fork, skip fs event tests
* unix: do not close udp sockets on bind error
* unix: remove FSEventStreamFlushSync() call
* build,openbsd: remove kvm-related code
* test: fix flaky tcp-write-queue-order
* unix,win: add uv_os_gethostname()
* zos: increase timeout for tcp_writealot
* zos: do not inline OOB data by default
* test: fix -Wstrict-prototypes compiler warnings
* unix: factor out reusable no-proctitle impl
* test: factor out fsevents skip explanation
* test: skip fork fsevent cases when lacking support
* unix: factor out reusable no-fsevents impl
* unix: factor out reusable sysinfo memory lookup
* unix: factor out reusable sysinfo loadavg impl
* unix: factor out reusable procfs exepath impl
* unix: add a uv__io_poll impl using POSIX poll(2)
* cygwin: implement support for cygwin and msys2
* cygwin: recognize EOF on named pipe closure
* cygwin: fix uv_pipe_connect report of ENOTSOCK
* cygwin: disable non-functional ipc handle send
* test: skip self-connecting tests on cygwin
* doc: mark uv_loop_fork() as experimental
* doc: add bzoz to maintainers
* doc: fix memory leak in tcp-echo-server example
* win: make uv__get_osfhandle() public
* doc: use valid pipe name in pipe-echo-server
Diffstat (limited to 'devel/libuv/Makefile')
-rw-r--r-- | devel/libuv/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/devel/libuv/Makefile b/devel/libuv/Makefile index 07cf9dcf753..daf34c247d0 100644 --- a/devel/libuv/Makefile +++ b/devel/libuv/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2017/05/22 14:49:04 maya Exp $ +# $NetBSD: Makefile,v 1.16 2017/06/24 06:07:44 adam Exp $ -DISTNAME= libuv-1.11.0 -PKGREVISION= 1 +DISTNAME= libuv-1.12.0 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GITHUB:=libuv/} |