mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
e702d809e5
Important bugs fixed loop: better align order-of-events behavior between platforms #3598 zos: fix fs event not fired if the watched file is moved/removed/recreated #3540 win: Fix pipe resource leak if closed during connect (and other bugs) #3611 zos: don't error when killing a zombie process #3625 Regressions fixed macos: avoid posix_spawnp() cwd bug #3597 kqueue: skip EVFILT_PROC events when invalidating events for an fd. #3629 (From OE-Core rev: c785f1d3a7f8ef2c7047fad7a2a483c5ebd658e0) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit ccd589604c2d7648dcd3541c61a2b48e692ca258) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
793 B
BlitzBasic
22 lines
793 B
BlitzBasic
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 = "0c1fa696aa502eb749c2c4735005f41ba00a27b8"
|
|
SRC_URI = "git://github.com/libuv/libuv;branch=v1.x;protocol=https"
|
|
UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools
|
|
|
|
do_configure() {
|
|
${S}/autogen.sh || bbnote "${PN} failed to autogen.sh"
|
|
oe_runconf
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|