Accepting request 1039682 from home:dirkmueller:Factory
- update to 0.2.38: * Updates to remove compiler and Doxygen warnings. * Fix cross-compile issues from autotools updates. * Update header files to UTF-8 encoding. * Update new maintainer and repository information after moving * the project to github. * Upgrade build system to new autotools versions. * Apply simple patches from SourceForge and debian. - drop 05_MAXPATHLEN.patch 01_Makefile.am.patch 00_fix-configure.in.patch 08_fix-manpage.patch 07_fix-spelling-in-binaries.patch 06_sizeof-FTBFS.patch 09_fix-FTBFS-GCC6.patch 03_fails-to-write.patch : upstream / obsolete OBS-URL: https://build.opensuse.org/request/show/1039682 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/zvbi?expand=0&rev=26
This commit is contained in:
parent
3b4b7da0dd
commit
2f3b0e5f9c
@ -1,97 +0,0 @@
|
||||
Description: fix some warnings in Makefile.in.
|
||||
Author: Joao Eriberto Mota Filho <eriberto@debian.org>
|
||||
Reference: https://autotools.io/forwardporting/autoconf.html
|
||||
Last-Update:2015-05-20
|
||||
Index: zvbi-0.2.35/configure.in
|
||||
===================================================================
|
||||
--- zvbi-0.2.35.orig/configure.in
|
||||
+++ zvbi-0.2.35/configure.in
|
||||
@@ -9,6 +9,8 @@ AM_CONFIG_HEADER(config.h)
|
||||
AM_ACLOCAL_INCLUDE(m4)
|
||||
AM_MAINTAINER_MODE
|
||||
|
||||
+AC_CONFIG_MACRO_DIR([m4])
|
||||
+
|
||||
dnl [current:revision:age]
|
||||
dnl Any change: ++revision
|
||||
dnl Interface added: ++current, revision = 0
|
||||
@@ -35,6 +37,7 @@ dnl sincos() is a GNU extension (a macro
|
||||
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) {
|
||||
@@ -46,7 +49,7 @@ 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])
|
||||
],[
|
||||
@@ -57,6 +60,7 @@ dnl log2() is a GNU extension (a macro,
|
||||
dnl If not present we use a replacement.
|
||||
AC_MSG_CHECKING([for log2])
|
||||
AC_LINK_IFELSE([
|
||||
+AC_LANG_SOURCE([
|
||||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
int main (void) {
|
||||
@@ -65,7 +69,7 @@ scanf ("%f", &x);
|
||||
printf ("%f", log2 (x));
|
||||
return 0;
|
||||
}
|
||||
-],[
|
||||
+])],[
|
||||
AC_MSG_RESULT([yes])
|
||||
AC_DEFINE(HAVE_LOG2, 1, [Define if the log2() function is available])
|
||||
],[
|
||||
@@ -76,6 +80,7 @@ dnl strerror() is not thread safe and th
|
||||
dnl of strerror_r(). If none of them are present we use a replacement.
|
||||
AC_MSG_CHECKING([for strerror_r])
|
||||
AC_COMPILE_IFELSE([
|
||||
+AC_LANG_SOURCE([
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
int main (void) {
|
||||
@@ -94,7 +99,7 @@ int main (void) {
|
||||
printf ("%f", 1.0 + strerror_r (22, malloc (128), 128));
|
||||
return 0;
|
||||
}
|
||||
- ],[
|
||||
+ ])],[
|
||||
AC_MSG_RESULT([yes, SUSV3 version])
|
||||
AC_DEFINE(HAVE_SUSV3_STRERROR_R, 1, [Define to 1 if you have
|
||||
the SUSV3 version of the strerror_r() function.])
|
||||
@@ -182,13 +187,14 @@ dnl (Used in test/date.)
|
||||
dnl
|
||||
AC_MSG_CHECKING([if struct tm has tm_gmtoff])
|
||||
AC_COMPILE_IFELSE([
|
||||
+AC_LANG_SOURCE([
|
||||
#include <time.h>
|
||||
int main (void) {
|
||||
struct tm tm;
|
||||
tm.tm_gmtoff = 0;
|
||||
return 0;
|
||||
}
|
||||
-],[
|
||||
+])],[
|
||||
AC_MSG_RESULT([yes])
|
||||
AC_DEFINE(HAVE_TM_GMTOFF, 1, [Define if struct tm has a tm_gmtoff field])
|
||||
],[
|
||||
@@ -317,10 +323,10 @@ if test "x$enable_v4l" = xyes -o "x$enab
|
||||
dnl if __GNUC__ is defined. These types are required to compile
|
||||
dnl videodev2.h and the Linux DVB headers.
|
||||
AC_MSG_CHECKING([if asm/types.h defines __s64 and __u64])
|
||||
- AC_COMPILE_IFELSE([#include <asm/types.h>
|
||||
+ AC_COMPILE_IFELSE([AC_LANG_SOURCE([#include <asm/types.h>
|
||||
__s64 a = 1;
|
||||
__u64 b = 2;
|
||||
- ], [AC_DEFINE(HAVE_S64_U64, 1,
|
||||
+ ])], [AC_DEFINE(HAVE_S64_U64, 1,
|
||||
[Define if asm/types.h defines __s64 and __u64])
|
||||
AC_MSG_RESULT(yes)],
|
||||
[AC_MSG_RESULT(no)])
|
@ -1,17 +0,0 @@
|
||||
Description: zvbi-chains now load libzvbi-chains.so.0.0.0. (Closes: 283004)
|
||||
Author: Christian Marillat <marillat@debian.org>
|
||||
Reviewed-by: Joao Eriberto Mota Filho <eriberto@debian.org>
|
||||
Last-Update: 2015-05-20
|
||||
Index: zvbi-0.2.35/daemon/Makefile.am
|
||||
===================================================================
|
||||
--- zvbi-0.2.35.orig/daemon/Makefile.am
|
||||
+++ zvbi-0.2.35/daemon/Makefile.am
|
||||
@@ -16,7 +16,7 @@ EXTRA_DIST = \
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
-I$(top_srcdir) \
|
||||
- -DLIBZVBI_CHAINS_PATH=\"libzvbi-chains.so\" \
|
||||
+ -DLIBZVBI_CHAINS_PATH=\"libzvbi-chains.so.0.0.0\" \
|
||||
-D_REENTRANT \
|
||||
-D_GNU_SOURCE
|
||||
|
@ -1,15 +0,0 @@
|
||||
Description: fix write output to a file. (Closes: #603128)
|
||||
Author: Christian Marillat <marillat@debian.org>
|
||||
Last-Update: 2010-11-26
|
||||
Index: zvbi-0.2.35/contrib/atsc-cc.c
|
||||
===================================================================
|
||||
--- zvbi-0.2.35.orig/contrib/atsc-cc.c
|
||||
+++ zvbi-0.2.35/contrib/atsc-cc.c
|
||||
@@ -1848,6 +1848,7 @@ cr_new_line (struct caption_recorder *
|
||||
cr->ucs_buffer,
|
||||
cr->ucs_buffer_length,
|
||||
/* repl_char */ '?');
|
||||
+ fflush(fp);
|
||||
}
|
||||
}
|
||||
|
@ -1,23 +0,0 @@
|
||||
Description: fix unconditional MAXPATHLEN use. (Closes: #676130)
|
||||
Author: Christian Marillat <marillat@debian.org>
|
||||
Last-Update: 2012-06-14
|
||||
Index: zvbi-0.2.35/src/proxy-msg.c
|
||||
===================================================================
|
||||
--- zvbi-0.2.35.orig/src/proxy-msg.c
|
||||
+++ zvbi-0.2.35/src/proxy-msg.c
|
||||
@@ -1039,7 +1039,6 @@ int vbi_proxy_msg_accept_connection( int
|
||||
static char * vbi_proxy_msg_resolve_symlinks( const char * p_dev_name )
|
||||
{
|
||||
struct stat stbuf;
|
||||
- char link_name[MAXPATHLEN + 1];
|
||||
char * p_path;
|
||||
char * p_tmp;
|
||||
char * p_tmp2;
|
||||
@@ -1054,6 +1053,7 @@ static char * vbi_proxy_msg_resolve_syml
|
||||
res = lstat(p_path, &stbuf);
|
||||
if ((res == 0) && S_ISLNK(stbuf.st_mode))
|
||||
{
|
||||
+ char link_name[stbuf.st_size + 1];
|
||||
name_len = readlink(p_path, link_name, sizeof(link_name));
|
||||
if ((name_len > 0) && (name_len < (int) sizeof(link_name)))
|
||||
{
|
@ -1,17 +0,0 @@
|
||||
Description: Fix and FTBFS on ia64, s390x, alpha, and ppc64.
|
||||
Author: Jackson Doak <noskcaj@ubuntu.com>
|
||||
Bug-Debian: http://bugs.debian.org/726186
|
||||
Last-Update: 2013-10-15
|
||||
Index: zvbi-0.2.35/test/test-packet-830.cc
|
||||
===================================================================
|
||||
--- zvbi-0.2.35.orig/test/test-packet-830.cc
|
||||
+++ zvbi-0.2.35/test/test-packet-830.cc
|
||||
@@ -115,7 +115,7 @@ assert_decode_teletext_8301_cni (unsigne
|
||||
unsigned int cni2;
|
||||
|
||||
memcpy (buffer2, buffer, sizeof (buffer2));
|
||||
- memset_rand (cni, sizeof (cni));
|
||||
+ memset_rand (cni, sizeof(*cni));
|
||||
cni2 = *cni;
|
||||
|
||||
assert (TRUE == vbi_decode_teletext_8301_cni (cni, buffer));
|
@ -1,29 +0,0 @@
|
||||
Description: fix some spelling errors found in final binaries.
|
||||
Author: Joao Eriberto Mota Filho <eriberto@debian.org>
|
||||
Last-Update: 2015-04-12
|
||||
Index: zvbi-0.2.35/src/proxy-client.c
|
||||
===================================================================
|
||||
--- zvbi-0.2.35.orig/src/proxy-client.c
|
||||
+++ zvbi-0.2.35/src/proxy-client.c
|
||||
@@ -763,7 +763,7 @@ static vbi_bool proxy_client_start_acq(
|
||||
}
|
||||
else if (vpc->endianSwap)
|
||||
{ /* endian swapping currently unsupported */
|
||||
- asprintf(&vpc->p_errorstr, _("Incompatible server architecture (endianess mismatch)."));
|
||||
+ asprintf(&vpc->p_errorstr, _("Incompatible server architecture (endianness mismatch)."));
|
||||
goto failure;
|
||||
}
|
||||
else
|
||||
Index: zvbi-0.2.35/daemon/proxyd.c
|
||||
===================================================================
|
||||
--- zvbi-0.2.35.orig/daemon/proxyd.c
|
||||
+++ zvbi-0.2.35/daemon/proxyd.c
|
||||
@@ -852,7 +852,7 @@ static void vbi_proxyd_stop_acq_thread(
|
||||
{
|
||||
ret = pthread_join(p_proxy_dev->thread_id, NULL);
|
||||
if (ret == 0)
|
||||
- dprintf(DBG_MSG, "stop_acq_thread: acq thread killed sucessfully\n");
|
||||
+ dprintf(DBG_MSG, "stop_acq_thread: acq thread killed successfully\n");
|
||||
else
|
||||
dprintf(DBG_MSG, "stop_acq_thread: pthread_join failed: %d (%s)\n", errno, strerror(errno));
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
Description: fix some hyphens used as minus sign.
|
||||
Author: Joao Eriberto Mota Filho <eriberto@debian.org>
|
||||
Last-Update: 2015-05-04
|
||||
Index: zvbi-0.2.35/contrib/zvbi-atsc-cc.1
|
||||
===================================================================
|
||||
--- zvbi-0.2.35.orig/contrib/zvbi-atsc-cc.1
|
||||
+++ zvbi-0.2.35/contrib/zvbi-atsc-cc.1
|
||||
@@ -193,9 +193,9 @@ timezone, title. Multiple \fB-f\fP optio
|
||||
is "all".
|
||||
.SH EXAMPLES
|
||||
.nf
|
||||
-zvbi-atsc-cc -c NJN-HD
|
||||
+zvbi-atsc-cc \-c NJN-HD
|
||||
.P
|
||||
-zvbi-atsc-cc --cc1-file wnyw.txt WNYW-DT --cc1-file wwor.txt WWOR-DT
|
||||
+zvbi-atsc-cc \-\-cc1-file wnyw.txt WNYW-DT \-\-cc1-file wwor.txt WWOR-DT
|
||||
.P
|
||||
(NJN-HD, WNYW-DT and WWOR-DT are TV stations in New York. WNYW-DT
|
||||
and WWOR-DT can be captured simultaneously because they share a
|
||||
Index: zvbi-0.2.35/contrib/zvbi-ntsc-cc.1
|
||||
===================================================================
|
||||
--- zvbi-0.2.35.orig/contrib/zvbi-ntsc-cc.1
|
||||
+++ zvbi-0.2.35/contrib/zvbi-ntsc-cc.1
|
||||
@@ -6,7 +6,7 @@ zvbi-ntsc-cc - closed caption decoder
|
||||
.SH DESCRIPTION
|
||||
.B zvbi-ntsc-cc
|
||||
reads vbi data from /dev/vbi and decodes the enclosed cc data.
|
||||
-Start it with '-h' to get a list of cmd line options.
|
||||
+Start it with '\-h' to get a list of cmd line options.
|
||||
.SH AUTHORS
|
||||
timecop@japan.co.jp
|
||||
.br
|
@ -1,34 +0,0 @@
|
||||
Description: fix a FTBFS with GCC-6 (narrowing conversion)
|
||||
Author: Breno Leitao <brenohl@br.ibm.com>
|
||||
Last-Update: 2016-07-17
|
||||
Index: zvbi-0.2.35/test/test-dvb_mux.cc
|
||||
===================================================================
|
||||
--- zvbi-0.2.35.orig/test/test-dvb_mux.cc
|
||||
+++ zvbi-0.2.35/test/test-dvb_mux.cc
|
||||
@@ -137,7 +137,7 @@ is_good_service (vbi_service_set servi
|
||||
static const vbi_service_set
|
||||
all_services [] = {
|
||||
0,
|
||||
- -1,
|
||||
+ UINT_MAX,
|
||||
VBI_SLICED_2xCAPTION_525,
|
||||
VBI_SLICED_CAPTION_525,
|
||||
VBI_SLICED_CAPTION_525_F1,
|
||||
@@ -1279,7 +1279,7 @@ test_multiplex_sliced_service_checks
|
||||
|
||||
/* Verify the service filter. */
|
||||
|
||||
- if (-1u == service
|
||||
+ if (UINT_MAX == service
|
||||
|| (VBI_SLICED_TELETEXT_B_625
|
||||
== (VBI_SLICED_TELETEXT_B_625 & service))) {
|
||||
assert_multiplex_sliced (buffer, buffer_size,
|
||||
@@ -3237,7 +3237,7 @@ static void
|
||||
test_dvb_mux_cor_pts (void)
|
||||
{
|
||||
static const int64_t ptss [] = {
|
||||
- 0x8000000000000000ll, -1, 0, 0x7FFFFFFFFFFFFFFFll,
|
||||
+ 0, -1, 0, 0x7FFFFFFFFFFFFFFFll,
|
||||
};
|
||||
DVBPESMuxTest mx;
|
||||
unsigned int i;
|
3
v0.2.38.tar.gz
Normal file
3
v0.2.38.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:df647b402ad6fc8363440c2f98c27fb58120f89d1a4ae7ca87739572d43c058d
|
||||
size 1261307
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fc883c34111a487c4a783f91b1b2bb5610d8d8e58dcba80c7ab31e67e4765318
|
||||
size 1047761
|
16
zvbi.changes
16
zvbi.changes
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 2 22:29:41 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 0.2.38:
|
||||
* Updates to remove compiler and Doxygen warnings.
|
||||
* Fix cross-compile issues from autotools updates.
|
||||
* Update header files to UTF-8 encoding.
|
||||
* Update new maintainer and repository information after moving
|
||||
* the project to github.
|
||||
* Upgrade build system to new autotools versions.
|
||||
* Apply simple patches from SourceForge and debian.
|
||||
|
||||
- drop 05_MAXPATHLEN.patch 01_Makefile.am.patch 00_fix-configure.in.patch
|
||||
08_fix-manpage.patch 07_fix-spelling-in-binaries.patch 06_sizeof-FTBFS.patch
|
||||
09_fix-FTBFS-GCC6.patch 03_fails-to-write.patch : upstream / obsolete
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 14 09:18:49 UTC 2018 - daniel.molkentin@suse.com
|
||||
|
||||
|
41
zvbi.spec
41
zvbi.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package zvbi
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -12,7 +12,7 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
@ -20,22 +20,14 @@
|
||||
%define libname lib%{name}%{sover}
|
||||
%define libchains lib%{name}-chains%{sover}
|
||||
Name: zvbi
|
||||
Version: 0.2.35
|
||||
Version: 0.2.38
|
||||
Release: 0
|
||||
Summary: Linux "VBI proxy"
|
||||
License: LGPL-2.1+ AND GPL-2.0+
|
||||
License: GPL-2.0-or-later AND LGPL-2.1-or-later
|
||||
Group: Productivity/Multimedia/Other
|
||||
Url: http://zapping.sf.net/
|
||||
Source: https://sourceforge.net/projects/zapping/files/zvbi/%{version}/zvbi-%{version}.tar.bz2
|
||||
URL: https://github.com/zapping-vbi/zvbi/
|
||||
Source: https://github.com/zapping-vbi/zvbi/archive/refs/tags/v%{version}.tar.gz
|
||||
Source2: baselibs.conf
|
||||
Patch00: 00_fix-configure.in.patch
|
||||
Patch01: 01_Makefile.am.patch
|
||||
Patch03: 03_fails-to-write.patch
|
||||
Patch05: 05_MAXPATHLEN.patch
|
||||
Patch06: 06_sizeof-FTBFS.patch
|
||||
Patch07: 07_fix-spelling-in-binaries.patch
|
||||
Patch08: 08_fix-manpage.patch
|
||||
Patch09: 09_fix-FTBFS-GCC6.patch
|
||||
Patch10: 10_fix_private_libs.patch
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
@ -100,14 +92,6 @@ sliced VBI data, and to interpret the data of several popular services.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
%patch3 -p1
|
||||
%patch5 -p1
|
||||
%patch6 -p1
|
||||
%patch7 -p1
|
||||
%patch8 -p1
|
||||
%patch9 -p1
|
||||
%patch10 -p1
|
||||
|
||||
%build
|
||||
@ -122,7 +106,7 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
||||
|
||||
%check
|
||||
# This requires timezone package to be installed
|
||||
make %{?_smp_mflags} check
|
||||
%make_build check
|
||||
|
||||
%post -n %{libname} -p /sbin/ldconfig
|
||||
%post -n %{libchains} -p /sbin/ldconfig
|
||||
@ -130,15 +114,16 @@ make %{?_smp_mflags} check
|
||||
%postun -n %{libchains} -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%doc AUTHORS BUGS COPYING ChangeLog NEWS README TODO
|
||||
%license COPYING
|
||||
%doc AUTHORS BUGS ChangeLog NEWS README.md TODO
|
||||
%{_bindir}/zvbi-atsc-cc
|
||||
%{_bindir}/zvbi-chains
|
||||
%{_bindir}/zvbi-ntsc-cc
|
||||
%{_sbindir}/zvbid
|
||||
%{_mandir}/man1/zvbi-atsc-cc.1%{ext_man}
|
||||
%{_mandir}/man1/zvbi-chains.1%{ext_man}
|
||||
%{_mandir}/man1/zvbi-ntsc-cc.1%{ext_man}
|
||||
%{_mandir}/man1/zvbid.1%{ext_man}
|
||||
%{_mandir}/man1/zvbi-atsc-cc.1%{?ext_man}
|
||||
%{_mandir}/man1/zvbi-chains.1%{?ext_man}
|
||||
%{_mandir}/man1/zvbi-ntsc-cc.1%{?ext_man}
|
||||
%{_mandir}/man1/zvbid.1%{?ext_man}
|
||||
|
||||
%files lang -f %{name}.lang
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user