* [ptxdist] [PATCH 1/2] weston: support neatvnc 0.9
@ 2025-02-26 12:06 Philipp Zabel
2025-02-26 12:06 ` [ptxdist] [PATCH 2/2] neatvnc: version bump 0.8.1 -> 0.9.3 Philipp Zabel
2025-03-07 9:49 ` [ptxdist] [APPLIED] weston: support neatvnc 0.9 Michael Olbrich
0 siblings, 2 replies; 4+ messages in thread
From: Philipp Zabel @ 2025-02-26 12:06 UTC (permalink / raw)
To: ptxdist; +Cc: Philipp Zabel
Backport a trivial upstream patch to allow updating Neat VNC.
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
...1-vnc-Allow-neatvnc-in-version-0.9.0.patch | 25 +++++++++++++++++++
patches/weston-14.0.1/series | 4 +++
2 files changed, 29 insertions(+)
create mode 100644 patches/weston-14.0.1/0001-vnc-Allow-neatvnc-in-version-0.9.0.patch
create mode 100644 patches/weston-14.0.1/series
diff --git a/patches/weston-14.0.1/0001-vnc-Allow-neatvnc-in-version-0.9.0.patch b/patches/weston-14.0.1/0001-vnc-Allow-neatvnc-in-version-0.9.0.patch
new file mode 100644
index 000000000000..3c801bf73f7f
--- /dev/null
+++ b/patches/weston-14.0.1/0001-vnc-Allow-neatvnc-in-version-0.9.0.patch
@@ -0,0 +1,25 @@
+From: Philipp Zabel <p.zabel@pengutronix.de>
+Date: Tue, 19 Nov 2024 17:06:19 +0100
+Subject: [PATCH] vnc: Allow neatvnc in version 0.9.0
+
+Neat VNC 0.9.0 is backwards compatible.
+
+Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
+(cherry picked from commit b4386289d614f26e89e1c6eb17e048826e925ed1)
+---
+ libweston/backend-vnc/meson.build | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libweston/backend-vnc/meson.build b/libweston/backend-vnc/meson.build
+index 39b15cf90201..cf67c51cbf77 100644
+--- a/libweston/backend-vnc/meson.build
++++ b/libweston/backend-vnc/meson.build
+@@ -3,7 +3,7 @@ if not get_option('backend-vnc')
+ endif
+
+ config_h.set('BUILD_VNC_COMPOSITOR', '1')
+-dep_neatvnc = dependency('neatvnc', version: ['>= 0.7.0', '< 0.9.0'], required: false, fallback: ['neatvnc', 'neatvnc_dep'])
++dep_neatvnc = dependency('neatvnc', version: ['>= 0.7.0', '< 0.10.0'], required: false, fallback: ['neatvnc', 'neatvnc_dep'])
+ if not dep_neatvnc.found()
+ error('VNC backend requires neatvnc which was not found. Or, you can use \'-Dbackend-vnc=false\'.')
+ endif
diff --git a/patches/weston-14.0.1/series b/patches/weston-14.0.1/series
new file mode 100644
index 000000000000..14304df22d00
--- /dev/null
+++ b/patches/weston-14.0.1/series
@@ -0,0 +1,4 @@
+# generated by git-ptx-patches
+#tag:base --start-number 1
+0001-vnc-Allow-neatvnc-in-version-0.9.0.patch
+# 5bc17d516893a37a9676e6c86003022f - git-ptx-patches magic
--
2.39.5
^ permalink raw reply [flat|nested] 4+ messages in thread
* [ptxdist] [PATCH 2/2] neatvnc: version bump 0.8.1 -> 0.9.3
2025-02-26 12:06 [ptxdist] [PATCH 1/2] weston: support neatvnc 0.9 Philipp Zabel
@ 2025-02-26 12:06 ` Philipp Zabel
2025-03-07 9:49 ` [ptxdist] [APPLIED] " Michael Olbrich
2025-03-07 9:49 ` [ptxdist] [APPLIED] weston: support neatvnc 0.9 Michael Olbrich
1 sibling, 1 reply; 4+ messages in thread
From: Philipp Zabel @ 2025-02-26 12:06 UTC (permalink / raw)
To: ptxdist; +Cc: Philipp Zabel
https://github.com/any1/neatvnc/releases/tag/v0.9.0
https://github.com/any1/neatvnc/releases/tag/v0.9.1
https://github.com/any1/neatvnc/releases/tag/v0.9.2
https://github.com/any1/neatvnc/releases/tag/v0.9.3
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
rules/neatvnc.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules/neatvnc.make b/rules/neatvnc.make
index af4ba140baae..1fff93d1f0b2 100644
--- a/rules/neatvnc.make
+++ b/rules/neatvnc.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_NEATVNC) += neatvnc
#
# Paths and names
#
-NEATVNC_VERSION := 0.8.1
-NEATVNC_MD5 := 8192c54b0435a9b6bcf7aa8e580dfb20
+NEATVNC_VERSION := 0.9.3
+NEATVNC_MD5 := 7c079be798256004b96c6f53b61d146f
NEATVNC := neatvnc-$(NEATVNC_VERSION)
NEATVNC_SUFFIX := tar.gz
NEATVNC_URL := https://github.com/any1/neatvnc/archive/refs/tags/v$(NEATVNC_VERSION).$(NEATVNC_SUFFIX)
--
2.39.5
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [ptxdist] [APPLIED] weston: support neatvnc 0.9
2025-02-26 12:06 [ptxdist] [PATCH 1/2] weston: support neatvnc 0.9 Philipp Zabel
2025-02-26 12:06 ` [ptxdist] [PATCH 2/2] neatvnc: version bump 0.8.1 -> 0.9.3 Philipp Zabel
@ 2025-03-07 9:49 ` Michael Olbrich
1 sibling, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2025-03-07 9:49 UTC (permalink / raw)
To: ptxdist; +Cc: Philipp Zabel
Thanks, applied as c92068cf2cd57a9881a438883ca4289df07f7327.
Michael
[sent from post-receive hook]
On Fri, 07 Mar 2025 10:49:49 +0100, Philipp Zabel <p.zabel@pengutronix.de> wrote:
> Backport a trivial upstream patch to allow updating Neat VNC.
>
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> Message-Id: <20250226120622.2797629-1-p.zabel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/patches/weston-14.0.1/0001-vnc-Allow-neatvnc-in-version-0.9.0.patch b/patches/weston-14.0.1/0001-vnc-Allow-neatvnc-in-version-0.9.0.patch
> new file mode 100644
> index 000000000000..3c801bf73f7f
> --- /dev/null
> +++ b/patches/weston-14.0.1/0001-vnc-Allow-neatvnc-in-version-0.9.0.patch
> @@ -0,0 +1,25 @@
> +From: Philipp Zabel <p.zabel@pengutronix.de>
> +Date: Tue, 19 Nov 2024 17:06:19 +0100
> +Subject: [PATCH] vnc: Allow neatvnc in version 0.9.0
> +
> +Neat VNC 0.9.0 is backwards compatible.
> +
> +Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> +(cherry picked from commit b4386289d614f26e89e1c6eb17e048826e925ed1)
> +---
> + libweston/backend-vnc/meson.build | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/libweston/backend-vnc/meson.build b/libweston/backend-vnc/meson.build
> +index 39b15cf90201..cf67c51cbf77 100644
> +--- a/libweston/backend-vnc/meson.build
> ++++ b/libweston/backend-vnc/meson.build
> +@@ -3,7 +3,7 @@ if not get_option('backend-vnc')
> + endif
> +
> + config_h.set('BUILD_VNC_COMPOSITOR', '1')
> +-dep_neatvnc = dependency('neatvnc', version: ['>= 0.7.0', '< 0.9.0'], required: false, fallback: ['neatvnc', 'neatvnc_dep'])
> ++dep_neatvnc = dependency('neatvnc', version: ['>= 0.7.0', '< 0.10.0'], required: false, fallback: ['neatvnc', 'neatvnc_dep'])
> + if not dep_neatvnc.found()
> + error('VNC backend requires neatvnc which was not found. Or, you can use \'-Dbackend-vnc=false\'.')
> + endif
> diff --git a/patches/weston-14.0.1/series b/patches/weston-14.0.1/series
> new file mode 100644
> index 000000000000..14304df22d00
> --- /dev/null
> +++ b/patches/weston-14.0.1/series
> @@ -0,0 +1,4 @@
> +# generated by git-ptx-patches
> +#tag:base --start-number 1
> +0001-vnc-Allow-neatvnc-in-version-0.9.0.patch
> +# 5bc17d516893a37a9676e6c86003022f - git-ptx-patches magic
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-03-07 9:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-02-26 12:06 [ptxdist] [PATCH 1/2] weston: support neatvnc 0.9 Philipp Zabel
2025-02-26 12:06 ` [ptxdist] [PATCH 2/2] neatvnc: version bump 0.8.1 -> 0.9.3 Philipp Zabel
2025-03-07 9:49 ` [ptxdist] [APPLIED] " Michael Olbrich
2025-03-07 9:49 ` [ptxdist] [APPLIED] weston: support neatvnc 0.9 Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox