From f80a69be04a0f953333445b7ddb4fb5301fca369 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Wed, 6 Mar 2024 16:43:12 +0800 Subject: neatvnc: upgrade 0.7.2 -> 0.8.0 Changelog: =========== -Apple's Diffie-Hellman authentication (security type 30) has been fixed. -A new client connection no longer causes a DNS lookup. -Clients are now allowed to request more than 32 encodings -Zlib streams are now preserved when a client switches between encodings Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.2.bb | 38 ----------------------- meta-oe/recipes-graphics/neatvnc/neatvnc_0.8.0.bb | 38 +++++++++++++++++++++++ 2 files changed, 38 insertions(+), 38 deletions(-) delete mode 100644 meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.2.bb create mode 100644 meta-oe/recipes-graphics/neatvnc/neatvnc_0.8.0.bb diff --git a/meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.2.bb b/meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.2.bb deleted file mode 100644 index 152409de18..0000000000 --- a/meta-oe/recipes-graphics/neatvnc/neatvnc_0.7.2.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 = "14619e6281136a02e376ad23e3cfaedc8de00ffb" - -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.8.0.bb b/meta-oe/recipes-graphics/neatvnc/neatvnc_0.8.0.bb new file mode 100644 index 0000000000..c9c4a6c27a --- /dev/null +++ b/meta-oe/recipes-graphics/neatvnc/neatvnc_0.8.0.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=master;protocol=https" + +SRCREV = "46432ce8cade0b54a38d4bb42eb07f96c8ff49fd" + +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