SHA256
1
0
forked from pool/libdvdnav

Accepting request 265679 from multimedia:libs

- Update to version 5.0.1:
  + removed assert on unknown VM commands, fixing playback of
    some DVDs
  + fixed a double free in dvdnav_free_dup
  + fixed an integer overflow, a data race condition and return
    inconsistency
- Version 5.0.0:
  + Android support
  + fixed numerous crashes, assertions and corruptions
  + rewrite of the build-system, including silent rules
  + clean code, simplify and remove warnings
  + fix compilation in C++ applications
  + removal of remap .MAP files unused feature
  + remove the dvdnavmini library
  + fix compilation on OS/2 and Hurd

OBS-URL: https://build.opensuse.org/request/show/265679
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libdvdnav?expand=0&rev=23
This commit is contained in:
Stephan Kulow 2014-12-21 11:00:48 +00:00 committed by Git OBS Bridge
commit d727a91a42
5 changed files with 35 additions and 21 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7fca272ecc3241b6de41bbbf7ac9a303ba25cb9e0c82aa23901d3104887f2372
size 109856

3
libdvdnav-5.0.1.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:72b1cb8266f163d4a1481b92c7b6c53e6dc9274d2a6befb08ffc351fe7a4a2a9
size 354568

View File

@ -1,11 +1,10 @@
--- src/Makefile.am.orig 2011-12-04 00:09:32.836001024 +0100
+++ src/Makefile.am 2011-12-04 00:09:49.615001024 +0100
@@ -4,7 +4,7 @@
--- Makefile.am.orig 2014-09-29 09:17:41.211405435 +0200
+++ Makefile.am 2014-12-17 23:19:33.173493347 +0100
@@ -1,6 +1,6 @@
ACLOCAL_AMFLAGS = -Im4
includedir = ${prefix}/include/dvdnav
-AM_CPPFLAGS = -I$(top_srcdir)/src $(THREAD_CFLAGS) $(DVDREAD_CFLAGS)
+AM_CPPFLAGS = -I$(top_srcdir)/src $(THREAD_CFLAGS) $(DVDREAD_CFLAGS) -fno-strict-aliasing
-AM_CPPFLAGS = $(THREAD_CFLAGS) $(DVDREAD_CFLAGS) \
+AM_CPPFLAGS = $(THREAD_CFLAGS) $(DVDREAD_CFLAGS) -fno-strict-aliasing \
-I$(top_srcdir)/src/vm
dist_doc_DATA = AUTHORS ChangeLog COPYING README TODO
EXTRA_DIST = README.MAP FELLOWSHIP.map

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Wed Dec 17 22:50:47 UTC 2014 - joerg.lorenzen@ki.tng.de
- Update to version 5.0.1:
+ removed assert on unknown VM commands, fixing playback of
some DVDs
+ fixed a double free in dvdnav_free_dup
+ fixed an integer overflow, a data race condition and return
inconsistency
- Version 5.0.0:
+ Android support
+ fixed numerous crashes, assertions and corruptions
+ rewrite of the build-system, including silent rules
+ clean code, simplify and remove warnings
+ fix compilation in C++ applications
+ removal of remap .MAP files unused feature
+ remove the dvdnavmini library
+ fix compilation on OS/2 and Hurd
-------------------------------------------------------------------
Mon Mar 10 19:33:51 UTC 2014 - dimstar@opensuse.org

View File

@ -21,9 +21,10 @@ Summary: DVD Navigation Library
License: GPL-2.0+
Group: Productivity/Multimedia/Other
Url: http://www.mplayerhq.hu/
Version: 4.2.1
Version: 5.0.1
Release: 0
Source0: http://dvdnav.mplayerhq.hu/releases/libdvdnav-%{version}.tar.xz
Source0: http://download.videolan.org/videolan/libdvdnav/%{version}/libdvdnav-%{version}.tar.bz2
Source1000: baselibs.conf
Patch1: libdvdnav-strict-aliasing.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: libdvdread-devel >= 4.2.0
@ -57,7 +58,7 @@ This library contains functions to display DVD video menus.
%build
autoreconf -f -i -v
%configure --disable-static --with-pic
%configure --disable-static --with-pic --docdir=%{_docdir}/libdvdnav4
%__make %{?_smp_mflags}
%install
@ -75,18 +76,12 @@ make DESTDIR=$RPM_BUILD_ROOT install
%defattr(-,root,root)
%{_libdir}/libdvdnav.so.4
%{_libdir}/libdvdnav.so.4.*
%{_libdir}/libdvdnavmini.so.4
%{_libdir}/libdvdnavmini.so.4.*
%doc AUTHORS ChangeLog COPYING README TODO
%files devel
%defattr(-,root,root)
%doc AUTHORS COPYING NEWS README
%{_bindir}/dvdnav-config
%{_includedir}/dvdnav
%{_datadir}/aclocal/dvdnav.m4
%{_libdir}/libdvdnav.so
%{_libdir}/libdvdnavmini.so
%{_libdir}/pkgconfig/dvdnav.pc
%{_libdir}/pkgconfig/dvdnavmini.pc
%changelog