From d334e3f2e0d311c967fc838d8d0abeaffce3672b Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Thu, 9 Nov 2023 12:36:38 +0800 Subject: neatvnc: upgrade 0.7.0 -> 0.7.1 Changelog: ============ server: Fix double-free on failed Apple DH crypto: Initialise AES-ECB decode context correctly server: Remove DNS lookup Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.0.bb | 38 ----------------------- meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.1.bb | 38 +++++++++++++++++++++++ 2 files changed, 38 insertions(+), 38 deletions(-) delete mode 100644 meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.0.bb create mode 100644 meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.1.bb (limited to 'meta-oe') diff --git a/meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.0.bb b/meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.0.bb deleted file mode 100644 index c8ac09f234..0000000000 --- a/meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.0.bb +++ /dev/null @@ -1,38 +0,0 @@ -SUMMARY = "A liberally licensed VNC server library" -DESCRIPTION = "This is a liberally licensed VNC server library that's intended to be fast and neat." -HOMEPAGE = "https://github.com/any1/neatvnc" -LICENSE = "ISC" -LIC_FILES_CHKSUM = "file://COPYING;md5=94fc374e7174f41e3afe0f027ee59ff7" - -SRC_URI = "git://github.com/any1/neatvnc;branch=v0.7;protocol=https" - -SRCREV = "112391140a76f0b362fa0df92fc1183c4a48ef3d" - -S = "${WORKDIR}/git" - -DEPENDS = "libdrm pixman aml zlib" - -PACKAGECONFIG ??= "" -PACKAGECONFIG[tls] = "-Dtls=enabled,-Dtls=disabled,gnutls" -PACKAGECONFIG[jpeg] = "-Djpeg=enabled,-Djpeg=disabled,libjpeg-turbo" -PACKAGECONFIG[examples] = "-Dexamples=true,-Dexamples=false,libpng" -PACKAGECONFIG[benchmarks] = "-Dbenchmarks=true,-Dbenchmarks=false,libpng" - -PACKAGE_BEFORE_PN += "${PN}-examples" -ALLOW_EMPTY:${PN}-examples = "1" -FILES:${PN}-examples = "${bindir}" - -NEATVNC_EXAMPLES = "draw png-server" - -inherit meson pkgconfig - -do_install:append () { - if ${@bb.utils.contains('PACKAGECONFIG', 'examples', 'true', 'false', d)}; then - install -d ${D}${bindir} - for bin in ${NEATVNC_EXAMPLES}; do - install -m 0755 ${B}/examples/$bin ${D}${bindir} - done - fi -} - -BBCLASSEXTEND = "native" diff --git a/meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.1.bb b/meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.1.bb new file mode 100644 index 0000000000..99e63318a1 --- /dev/null +++ b/meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.1.bb @@ -0,0 +1,38 @@ +SUMMARY = "A liberally licensed VNC server library" +DESCRIPTION = "This is a liberally licensed VNC server library that's intended to be fast and neat." +HOMEPAGE = "https://github.com/any1/neatvnc" +LICENSE = "ISC" +LIC_FILES_CHKSUM = "file://COPYING;md5=94fc374e7174f41e3afe0f027ee59ff7" + +SRC_URI = "git://github.com/any1/neatvnc;branch=v0.7;protocol=https" + +SRCREV = "b5b330b22c6a0fdeb718a9e7ee0732cc406863fa" + +S = "${WORKDIR}/git" + +DEPENDS = "libdrm pixman aml zlib" + +PACKAGECONFIG ??= "" +PACKAGECONFIG[tls] = "-Dtls=enabled,-Dtls=disabled,gnutls" +PACKAGECONFIG[jpeg] = "-Djpeg=enabled,-Djpeg=disabled,libjpeg-turbo" +PACKAGECONFIG[examples] = "-Dexamples=true,-Dexamples=false,libpng" +PACKAGECONFIG[benchmarks] = "-Dbenchmarks=true,-Dbenchmarks=false,libpng" + +PACKAGE_BEFORE_PN += "${PN}-examples" +ALLOW_EMPTY:${PN}-examples = "1" +FILES:${PN}-examples = "${bindir}" + +NEATVNC_EXAMPLES = "draw png-server" + +inherit meson pkgconfig + +do_install:append () { + if ${@bb.utils.contains('PACKAGECONFIG', 'examples', 'true', 'false', d)}; then + install -d ${D}${bindir} + for bin in ${NEATVNC_EXAMPLES}; do + install -m 0755 ${B}/examples/$bin ${D}${bindir} + done + fi +} + +BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf