Compare commits
20 Commits
Author | SHA256 | Date | |
---|---|---|---|
137d0dc571 | |||
b6eb1b4b5e | |||
29b2eff513 | |||
987af38e10 | |||
d6f1084418 | |||
b56fb0334a | |||
9a50ad59e4 | |||
f4e7251cfb | |||
76bcb2c650 | |||
9a7f1d46ec | |||
e3ea2cf1b1 | |||
c26eb5ac46 | |||
11e01d7f09 | |||
4d95867e92 | |||
|
91e6cd9e6c | ||
|
1894636665 | ||
|
0588b1e2ab | ||
|
ce93ae33e9 | ||
|
43a2012718 | ||
|
a8fba1a79b |
BIN
v0.2.42.tar.gz
(Stored with Git LFS)
BIN
v0.2.42.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
v0.2.44.tar.gz
(Stored with Git LFS)
Normal file
BIN
v0.2.44.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -1,42 +0,0 @@
|
||||
Index: zvbi-0.2.42/configure.ac
|
||||
===================================================================
|
||||
--- zvbi-0.2.42.orig/configure.ac
|
||||
+++ zvbi-0.2.42/configure.ac
|
||||
@@ -82,7 +82,7 @@ AC_CHECK_FUNCS([alarm dup2 gethostbyaddr
|
||||
inet_ntoa localtime_r memmove memset mkdir modf munmap
|
||||
nl_langinfo putenv select setenv setlocale socket strcasecmp
|
||||
strchr strdup strerror strncasecmp strndup strrchr strstr
|
||||
- strtol strtoul tzset strptime getaddrinfo])
|
||||
+ strtol strtoul tzset strptime getaddrinfo sincos])
|
||||
|
||||
AM_CONDITIONAL(HAVE_STRPTIME, [test "x$HAVE_STRPTIME" = xyes])
|
||||
|
||||
@@ -105,28 +105,6 @@ dnl autoconf 2.71 required additional qu
|
||||
dnl "Noteworthy changes in autoconf version 2.66 through 2.68"
|
||||
dnl <https://autotools.info/forwardporting/autoconf.html>
|
||||
|
||||
-dnl sincos() is a GNU extension (a macro, not a function).
|
||||
-dnl If not present we use a replacement.
|
||||
-AC_MSG_CHECKING([for sincos])
|
||||
-AC_LINK_IFELSE([AC_LANG_SOURCE([
|
||||
-#include <stdio.h>
|
||||
-#include <math.h>
|
||||
-int main (void) {
|
||||
-double s, c;
|
||||
-/* Make sure the compiler does not optimize sincos() away
|
||||
- so the linker can confirm its availability. */
|
||||
-scanf ("%f", &s);
|
||||
-sincos (s, &s, &c);
|
||||
-printf ("%f %f", s, c);
|
||||
-return 0;
|
||||
-}
|
||||
-])],[
|
||||
- AC_MSG_RESULT([yes])
|
||||
- AC_DEFINE(HAVE_SINCOS, 1, [Define if the sincos() function is available])
|
||||
-],[
|
||||
- AC_MSG_RESULT([no])
|
||||
-])
|
||||
-
|
||||
dnl log2() is a GNU extension (a macro, not a function).
|
||||
dnl If not present we use a replacement.
|
||||
AC_MSG_CHECKING([for log2])
|
29
zvbi.changes
29
zvbi.changes
@@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 12 07:03:24 UTC 2025 - pgajdos@suse.com
|
||||
|
||||
- version update to 0.2.44
|
||||
* configure.ac: Add comments to help eith debugging gettext.
|
||||
* doc/Doxyfile.in: Bump version from 1.9.4 to 1.9.8.
|
||||
* src/conv.c: Check src_length to avoid an unitinialized heap read.
|
||||
* src/conv.c, src/io-sim.c, src/search.c: Avoid integer overflow leading to heap overflow.
|
||||
* src/export.c, src/misc.*: Use standard va_copy(), not GNU __va_copy().
|
||||
* src/teletext.c: Fix accidental G3 character modification.
|
||||
* src/vbi.c: Add support for a larger range of framerates, from 12.5fps to 60fps.
|
||||
- fixes:
|
||||
CVE-2025-2173 [bsc#1239222]
|
||||
CVE-2025-2174 [bsc#1239299]
|
||||
CVE-2025-2175 [bsc#1239312]
|
||||
CVE-2025-2176 [bsc#1239319]
|
||||
CVE-2025-2177 [bsc#1239320]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 11 10:45:18 UTC 2025 - pgajdos@suse.com
|
||||
|
||||
- version update to 0.2.43
|
||||
* Fix building and enable testing for Windows platforms.
|
||||
* Fix building for musl.
|
||||
* Add options to disable tests and examples.
|
||||
* Fix for static declaration of ‘sincos’ follows non-static declaration.
|
||||
- Drop obsoleted patch:
|
||||
zvbi-gcc14.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 14 06:04:33 UTC 2024 - pgajdos@suse.com
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package zvbi
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -20,7 +20,7 @@
|
||||
%define libname lib%{name}%{sover}
|
||||
%define libchains lib%{name}-chains%{sover}
|
||||
Name: zvbi
|
||||
Version: 0.2.42
|
||||
Version: 0.2.44
|
||||
Release: 0
|
||||
Summary: Linux "VBI proxy"
|
||||
License: GPL-2.0-or-later AND LGPL-2.1-or-later
|
||||
@@ -28,8 +28,6 @@ Group: Productivity/Multimedia/Other
|
||||
URL: https://github.com/zapping-vbi/zvbi/
|
||||
Source: https://github.com/zapping-vbi/zvbi/archive/refs/tags/v%{version}.tar.gz
|
||||
Source2: baselibs.conf
|
||||
# https://github.com/zapping-vbi/zvbi/commit/ae74ae513714f81b9b8abdb12e1b235d16fad74e
|
||||
Patch0: zvbi-gcc14.patch
|
||||
Patch10: 10_fix_private_libs.patch
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
|
Reference in New Issue
Block a user