Hello community, here is the log from the commit of package libbluray for openSUSE:Factory checked in at 2015-01-30 06:04:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libbluray (Old) and /work/SRC/openSUSE:Factory/.libbluray.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libbluray" Changes: -------- --- /work/SRC/openSUSE:Factory/libbluray/libbluray.changes 2014-12-23 11:48:39.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.libbluray.new/libbluray.changes 2015-01-30 06:04:07.000000000 +0100 @@ -1,0 +2,17 @@ +Tue Jan 27 11:45:37 UTC 2015 - [email protected] + +- Update to version 0.7.0: + + Add player setting for BD-J persistent storage and cache paths. + + Add support for system fonts. BD-J fonts in jre/lib/fonts/ + are not required anymore. + + Add BD-J organization ID and disc ID to BLURAY_DISC_INFO. + + Release still mode when BD-J terminates. + + Implement BD-J caching. + + Improve BD-J compability. + + Java 8 compability fixes. + + Fix storage size for bdjo object reference in BLURAY_DISC_INFO. + + Fix BD-J on-disc font usage. + + Fix animations in some BD-J menus. + + Fix BD-J storage path charset issues in Windows. + +------------------------------------------------------------------- Old: ---- libbluray-0.6.2.tar.bz2 New: ---- libbluray-0.7.0.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libbluray.spec ++++++ --- /var/tmp/diff_new_pack.zU21m1/_old 2015-01-30 06:04:08.000000000 +0100 +++ /var/tmp/diff_new_pack.zU21m1/_new 2015-01-30 06:04:08.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package libbluray # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 Dominique Leuenberger, Amsterdam, The Netherlands # # All modifications and additions to the file contributed by third parties @@ -20,7 +20,7 @@ %define soname 1 Name: libbluray -Version: 0.6.2 +Version: 0.7.0 Release: 0 Summary: Library to access Blu-Ray disk License: LGPL-2.1+ @@ -32,6 +32,7 @@ Source99: baselibs.conf BuildRequires: libtool BuildRequires: pkg-config +BuildRequires: pkgconfig(fontconfig) BuildRequires: pkgconfig(freetype2) BuildRequires: pkgconfig(libxml-2.0) >= 2.6 BuildRequires: ant ++++++ libbluray-0.6.2.tar.bz2 -> libbluray-0.7.0.tar.bz2 ++++++ ++++ 17002 lines of diff (skipped) ++++++ libbluray-autotools.patch ++++++ --- /var/tmp/diff_new_pack.zU21m1/_old 2015-01-30 06:04:09.000000000 +0100 +++ /var/tmp/diff_new_pack.zU21m1/_new 2015-01-30 06:04:09.000000000 +0100 @@ -1,6 +1,6 @@ ---- configure.ac.orig 2014-12-17 18:01:33.515364222 +0100 -+++ configure.ac 2014-12-17 18:01:33.523364060 +0100 -@@ -102,9 +102,10 @@ +--- configure.ac.orig 2015-01-26 10:21:27.000000000 +0100 ++++ configure.ac 2015-01-27 12:55:38.278766200 +0100 +@@ -105,9 +105,10 @@ [BDJ_BOOTCLASSPATH=]) dnl required programs @@ -13,7 +13,7 @@ dnl required types AC_TYPE_SIGNAL -@@ -119,23 +120,12 @@ +@@ -122,23 +123,12 @@ dnl required system services AC_SYS_LARGEFILE @@ -39,26 +39,26 @@ dnl libxml2 for metadata parser AS_IF([test "x$with_libxml2" != "xno"], [ ---- src/Makefile.am.orig 2014-12-17 18:01:35.803318166 +0100 -+++ src/Makefile.am 2014-12-17 18:01:35.831317614 +0100 +--- src/Makefile.am.orig 2015-01-26 10:44:55.000000000 +0100 ++++ src/Makefile.am 2015-01-27 12:55:39.622438800 +0100 @@ -1,7 +1,7 @@ -SET_FEATURES = -D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112L -D_REENTRANT SET_INCLUDES = -I$(top_srcdir) -Ifile -Ilibbluray -Ilibbluray/bdnav $(BDJAVA_CFLAGS) --AM_CFLAGS = -std=c99 $(SET_FEATURES) $(SET_INCLUDES) $(LIBXML2_CFLAGS) $(FT2_CFLAGS) -+AM_CFLAGS = -pthread $(LIBXML2_CFLAGS) $(FT2_CFLAGS) +-AM_CFLAGS = -std=c99 $(SET_FEATURES) $(SET_INCLUDES) $(LIBXML2_CFLAGS) $(FT2_CFLAGS) $(FONTCONFIG_CFLAGS) ++AM_CFLAGS = -pthread $(LIBXML2_CFLAGS) $(FT2_CFLAGS) $(FONTCONFIG_CFLAGS) +AM_CPPFLAGS = $(SET_INCLUDES) -include config.h EXTRA_DIST = \ libbluray/bdj/build.xml \ -@@ -120,8 +120,8 @@ +@@ -123,8 +123,8 @@ endif -libbluray_la_LDFLAGS= -version-info $(LT_VERSION_INFO) --libbluray_la_LIBADD= $(LIBXML2_LIBS) $(FT2_LIBS) +-libbluray_la_LIBADD= $(LIBXML2_LIBS) $(FT2_LIBS) $(FONTCONFIG_LIBS) +libbluray_la_LDFLAGS= -no-undefined -version-info $(LT_VERSION_INFO) -+libbluray_la_LIBADD= $(LIBXML2_LIBS) $(FT2_LIBS) -ldl ++libbluray_la_LIBADD= $(LIBXML2_LIBS) $(FT2_LIBS) $(FONTCONFIG_LIBS) -ldl pkginclude_HEADERS = \ file/filesystem.h \ ++++++ libbluray-jvm_dir.patch ++++++ --- /var/tmp/diff_new_pack.zU21m1/_old 2015-01-30 06:04:09.000000000 +0100 +++ /var/tmp/diff_new_pack.zU21m1/_new 2015-01-30 06:04:09.000000000 +0100 @@ -1,6 +1,6 @@ ---- src/libbluray/bdj/bdj.c.orig 2014-09-01 14:06:01.000000000 +0200 -+++ src/libbluray/bdj/bdj.c 2014-12-19 10:34:11.196480400 +0100 -@@ -159,7 +159,7 @@ +--- src/libbluray/bdj/bdj.c.orig 2015-01-26 09:01:57.000000000 +0100 ++++ src/libbluray/bdj/bdj.c 2015-01-27 13:00:09.750270100 +0100 +@@ -166,7 +166,7 @@ "/usr/lib/jvm/java-6-openjdk", "/usr/lib/jvm/java-7-openjdk", "/etc/java-config-2/current-system-vm"}; -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
