forked from pool/neatvnc
Compare commits
6 Commits
Author | SHA256 | Date | |
---|---|---|---|
|
e269acbfdc | ||
|
9aaba48e23 | ||
|
1a598e9a51 | ||
|
d3fa733938 | ||
|
15270f9dc5 | ||
|
62a03f6a4c |
15
_service
Normal file
15
_service
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<services>
|
||||||
|
<service name="obs_scm" mode="manual">
|
||||||
|
<param name="scm">git</param>
|
||||||
|
<param name="url">https://github.com/any1/neatvnc.git</param>
|
||||||
|
<param name="revision">4c37ae9349f16a255cd3e95ed7931c71e6abf8fc</param>
|
||||||
|
<param name="versionformat">0.9.2</param>
|
||||||
|
</service>
|
||||||
|
<service name="tar" mode="manual"/>
|
||||||
|
<service name="recompress" mode="manual">
|
||||||
|
<param name="file">*.tar</param>
|
||||||
|
<param name="compression">xz</param>
|
||||||
|
</service>
|
||||||
|
<service name="set_version" mode="manual" />
|
||||||
|
</services>
|
13
fix-build-in-15.6.patch
Normal file
13
fix-build-in-15.6.patch
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Index: neatvnc-0.9.2/meson.build
|
||||||
|
===================================================================
|
||||||
|
--- neatvnc-0.9.2.orig/meson.build
|
||||||
|
+++ neatvnc-0.9.2/meson.build
|
||||||
|
@@ -54,7 +54,7 @@ libturbojpeg = dependency('libturbojpeg'
|
||||||
|
gnutls = dependency('gnutls', required: get_option('tls'))
|
||||||
|
nettle = dependency('nettle', required: get_option('nettle'))
|
||||||
|
hogweed = dependency('hogweed', required: get_option('nettle'))
|
||||||
|
-gmp = dependency('gmp', required: get_option('nettle'))
|
||||||
|
+gmp = cc.find_library('gmp')
|
||||||
|
zlib = dependency('zlib')
|
||||||
|
gbm = dependency('gbm', required: get_option('gbm'))
|
||||||
|
libdrm = dependency('libdrm', required: get_option('h264'))
|
3
neatvnc-0.9.2.tar.xz
Normal file
3
neatvnc-0.9.2.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:310f33ff7ba0a2cf248e12e18557efd1374dac4a256ae3ee2f9dcd71d3e4600d
|
||||||
|
size 785168
|
@ -1,3 +1,60 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 30 11:06:23 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.9.2:
|
||||||
|
* This patch release adds missing bounds checks.
|
||||||
|
Two buffer overflow vulnerabilities were reported by Frederik
|
||||||
|
Reiter who also provided patches to fix them.
|
||||||
|
There are potential security implications, but only authenticated
|
||||||
|
clients would be able to exploit these vulnerabilities, if at all.
|
||||||
|
Nevertheless, it is prudent to update as soon as possible.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 30 11:05:56 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.9.1:
|
||||||
|
* Fix a data type mismatch in the clipboard code that caused the
|
||||||
|
build to fail for 32 bit architectures.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 30 11:05:23 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.9.0:
|
||||||
|
Highlights:
|
||||||
|
* A v4l2m2m based H.264 encoder that works on Raspberry Pi 1 to 4,
|
||||||
|
sponsored by Raspberry Pi Ltd.
|
||||||
|
* Extended clipboard for UTF-8 text was implemented by Attila Fidan.
|
||||||
|
* Listening on a pre-bound file descriptor, implemented by Attila Fidan.
|
||||||
|
* The continuous updates extension was implemented by Philipp Zabel.
|
||||||
|
* We now have simple bandwidth estimation and improved frame pacing.
|
||||||
|
* Methods for rating pixel formats and modifiers have according to Neat VNC's
|
||||||
|
preferences have been added.
|
||||||
|
* The Qemu/VMWare LED state extensions have been implemented.
|
||||||
|
* H.264 encoders will now encode the correct colour space into the elementary
|
||||||
|
stream.
|
||||||
|
Bug fixes:
|
||||||
|
* Some memory leaks and reference counting errors have been eradicated.
|
||||||
|
* A race between resizing events and framebuffer updates that would cause a
|
||||||
|
buffer with the previous size to be sent after a resize event has been fixed.
|
||||||
|
* Buffers with 24 bits per pixel will now result in 32 bpp being reported to
|
||||||
|
the client because 24 bpp is not allowed by the protocol. Nvidia users should
|
||||||
|
now be able to use a wider selection of clients as a result of this change.
|
||||||
|
- Update fix-build-in-15.6.patch
|
||||||
|
15e56b8e444532d299598b753f760cf0d4d9a4e2 added the LIBAVFILTER_VERSION_INT
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 23 07:57:14 UTC 2024 - Antonio Larrosa <alarrosa@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.8.1+git20241008.b539421 adding a _service file to
|
||||||
|
get the sources from git. This fixes a FTBFS with ffmpeg-7 in
|
||||||
|
Factory. Note that we can't use @PARENT_TAG@ in the _service
|
||||||
|
file because 0.8.1 was branched from the v0.8 branch so using it
|
||||||
|
would look like going back to 0.8.0.
|
||||||
|
- Add a patch to keep building with older ffmpeg versions too
|
||||||
|
as well as find the gmp dependency, which can't be found using
|
||||||
|
pkgconfig in 15.6:
|
||||||
|
* fix-build-in-15.6.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 2 06:25:29 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
Fri Aug 2 06:25:29 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
|
4
neatvnc.obsinfo
Normal file
4
neatvnc.obsinfo
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
name: neatvnc
|
||||||
|
version: 0.9.2
|
||||||
|
mtime: 1733604143
|
||||||
|
commit: 4c37ae9349f16a255cd3e95ed7931c71e6abf8fc
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package neatvnc
|
# spec file for package neatvnc
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,13 +19,14 @@
|
|||||||
%define libsoname libneatvnc0
|
%define libsoname libneatvnc0
|
||||||
|
|
||||||
Name: neatvnc
|
Name: neatvnc
|
||||||
Version: 0.8.1
|
Version: 0.9.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A VNC server library
|
Summary: A VNC server library
|
||||||
License: ISC
|
License: ISC
|
||||||
Group: System/GUI/Other
|
Group: System/GUI/Other
|
||||||
URL: https://github.com/any1/neatvnc
|
URL: https://github.com/any1/neatvnc
|
||||||
Source0: %url/archive/v%{version}.tar.gz
|
Source0: %{name}-%{version}.tar.xz
|
||||||
|
Patch0: fix-build-in-15.6.patch
|
||||||
|
|
||||||
BuildRequires: meson
|
BuildRequires: meson
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:51ef4d02f1621c947d58f2454e8fd4582a66439f09d409c103424c9d34839757
|
|
||||||
size 661911
|
|
Loading…
Reference in New Issue
Block a user