From 4b0139ba5fe6aa313fada315c475f1b979bd24a0 Mon Sep 17 00:00:00 2001 From: wangmy Date: Tue, 15 Mar 2022 19:22:19 +0800 Subject: libuv: upgrade 1.43.0 -> 1.44.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit License-Update: the following message removed from LICENSE: android-ifaddrs.h, android-ifaddrs.c, copyright Berkeley Software Design Inc, Kenneth MacKay and Emergya (Cloud4all, FP7/2007-2013, grant agreement n° 289016). Three clause BSD license. Changes since version 1.43.0: ============================= * process: simplify uv__write_int calls * macos: don't use thread-unsafe strtok() * process: fix hang after NOTE_EXIT * darwin: remove EPROTOTYPE error workaround * doc: fix v1.43.0 changelog entries * win: replace CRITICAL_SECTION+Semaphore with SRWLock * darwin: translate EPROTOTYPE to ECONNRESET * android: use libc getifaddrs() * unix: fix STATIC_ASSERT to check what it means to check * unix: ensure struct msghdr is zeroed in recvmmsg * test: test with maximum recvmmsg buffer * unix: don't allow too small thread stack size * bsd: ensure mutex is initialized * doc: add gengjiawen as maintainer * process: monitor for exit with kqueue on BSDs * test: fix flaky uv_fs_lutime test * build: fix cmake install locations * thread,win: fix C90 style nit * build: rename CFLAGS to AM_CFLAGS * doc/guide: update content and sample code * process,bsd: handle kevent NOTE_EXIT failure * test: remove flaky test ipc_closed_handle * darwin: bump minimum supported version to 10.15 * win: return fractional seconds in uv_uptime() * build: export uv_a for cmake * loop: add pending work to loop-alive check * win: use GetTickCount64 for uptime again * win: restrict system DLL load paths * win,errors: remap ERROR_ACCESS_DENIED to UV_EACCES * bench: add 'uv_queue_work' ping-pong measurement * build: fix error C4146 on MSVC * test: fix benchmark-ping-udp * win,fs: consider broken pipe error a normal EOF * document the values of enum uv_stdio_flags * win,loop: add missing uv_update_time * win,fs: avoid closing an invalid handle * fix oopsie from * doc: clarify android api level * win: fix style nits [NFC] * test: fix flaky udp_mmsg test * test: fix ipc_send_recv_pipe flakiness * doc: checkout -> check out * core: change uv_get_password uid/gid to unsigned * hurd: unbreak build on GNU/Hurd * freebsd: use copy_file_range() in uv_fs_sendfile() * test: use closefd in runner-unix.c * Reland "macos: use posix_spawn instead of fork" * android: fix build error when no ifaddrs.h * unix,win: add uv_available_parallelism() * process: remove OpenBSD from kevent list * zos: fix build breakage * process: only use F_DUPFD_CLOEXEC if it is defined * win,poll: add the MSAFD GUID for AF_UNIX * unix: simplify uv__cloexec_fcntl() * doc: add secondary GPG ID for vtjnash * unix: remove uv__cloexec_ioctl() (From OE-Core rev: 87fd543aa802de1c9d4b234096fff8a1cf929f9a) Signed-off-by: Wang Mingyu Signed-off-by: Richard Purdie --- meta/recipes-connectivity/libuv/libuv_1.43.0.bb | 21 --------------------- meta/recipes-connectivity/libuv/libuv_1.44.1.bb | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+), 21 deletions(-) delete mode 100644 meta/recipes-connectivity/libuv/libuv_1.43.0.bb create mode 100644 meta/recipes-connectivity/libuv/libuv_1.44.1.bb (limited to 'meta') diff --git a/meta/recipes-connectivity/libuv/libuv_1.43.0.bb b/meta/recipes-connectivity/libuv/libuv_1.43.0.bb deleted file mode 100644 index 4ae4262fb9..0000000000 --- a/meta/recipes-connectivity/libuv/libuv_1.43.0.bb +++ /dev/null @@ -1,21 +0,0 @@ -SUMMARY = "A multi-platform support library with a focus on asynchronous I/O" -HOMEPAGE = "https://github.com/libuv/libuv" -DESCRIPTION = "libuv is a multi-platform support library with a focus on asynchronous I/O. It was primarily developed for use by Node.js, but it's also used by Luvit, Julia, pyuv, and others." -BUGTRACKER = "https://github.com/libuv/libuv/issues" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=a68902a430e32200263d182d44924d47" - -SRCREV = "988f2bfc4defb9a85a536a3e645834c161143ee0" -SRC_URI = "git://github.com/libuv/libuv;branch=v1.x;protocol=https" -UPSTREAM_CHECK_GITTAGREGEX = "v(?P\d+(\.\d+)+)" - -S = "${WORKDIR}/git" - -inherit autotools - -do_configure() { - ${S}/autogen.sh || bbnote "${PN} failed to autogen.sh" - oe_runconf -} - -BBCLASSEXTEND = "native" diff --git a/meta/recipes-connectivity/libuv/libuv_1.44.1.bb b/meta/recipes-connectivity/libuv/libuv_1.44.1.bb new file mode 100644 index 0000000000..4c96d80a65 --- /dev/null +++ b/meta/recipes-connectivity/libuv/libuv_1.44.1.bb @@ -0,0 +1,21 @@ +SUMMARY = "A multi-platform support library with a focus on asynchronous I/O" +HOMEPAGE = "https://github.com/libuv/libuv" +DESCRIPTION = "libuv is a multi-platform support library with a focus on asynchronous I/O. It was primarily developed for use by Node.js, but it's also used by Luvit, Julia, pyuv, and others." +BUGTRACKER = "https://github.com/libuv/libuv/issues" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=ad93ca1fffe931537fcf64f6fcce084d" + +SRCREV = "e8b7eb6908a847ffbe6ab2eec7428e43a0aa53a2" +SRC_URI = "git://github.com/libuv/libuv;branch=v1.x;protocol=https" +UPSTREAM_CHECK_GITTAGREGEX = "v(?P\d+(\.\d+)+)" + +S = "${WORKDIR}/git" + +inherit autotools + +do_configure() { + ${S}/autogen.sh || bbnote "${PN} failed to autogen.sh" + oe_runconf +} + +BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf