Hello community,

here is the log from the commit of package freshplayerplugin for 
openSUSE:Factory checked in at 2016-11-18 22:03:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/freshplayerplugin (Old)
 and      /work/SRC/openSUSE:Factory/.freshplayerplugin.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "freshplayerplugin"

Changes:
--------
--- /work/SRC/openSUSE:Factory/freshplayerplugin/freshplayerplugin.changes      
2016-07-15 12:51:42.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.freshplayerplugin.new/freshplayerplugin.changes 
2016-11-18 22:03:42.000000000 +0100
@@ -1,0 +2,14 @@
+Thu Nov 17 20:12:20 UTC 2016 - [email protected]
+
+- Update to version 0.3.6:
+  * graphics: Fix the off-by-one pixel issue in fullscreen scaling
+    mode.
+  * graphics: Try to flicker less.
+  * misc: Use ICU for character set conversion, use WhatWG
+    canonical encoding name conversion.
+  * misc: Guess the default character encoding from a locale name.
+  * misc: Guess GTK+ major version at run time.
+- Rename clean.patch to freshplayerplugin-drop-angle.patch and
+  simplify to ease maintainership.
+
+-------------------------------------------------------------------

Old:
----
  clean.patch
  freshplayerplugin-0.3.5.tar.gz

New:
----
  freshplayerplugin-0.3.6.tar.gz
  freshplayerplugin-drop-angle.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ freshplayerplugin.spec ++++++
--- /var/tmp/diff_new_pack.LMqMWA/_old  2016-11-18 22:03:43.000000000 +0100
+++ /var/tmp/diff_new_pack.LMqMWA/_new  2016-11-18 22:03:43.000000000 +0100
@@ -17,20 +17,19 @@
 
 
 %bcond_with restricted
-%bcond_with gtk3
 Name:           freshplayerplugin
-Version:        0.3.5
+Version:        0.3.6
 Release:        0
 Summary:        PPAPI2NPAPI compatibility layer
 License:        MIT
 Group:          Productivity/Networking/Web/Browsers
 Url:            https://github.com/i-rinat/freshplayerplugin
 Source:         
https://github.com/i-rinat/freshplayerplugin/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
-# PATCH-FIX-OPENSUSE clean.patch bsc#937244 [email protected]
-Patch0:         clean.patch
+# PATCH-FIX-OPENSUSE freshplayerplugin-drop-angle.patch bsc#937244 
[email protected]
+Patch0:         freshplayerplugin-drop-angle.patch
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  ragel
 BuildRequires:  pkgconfig(alsa)
 BuildRequires:  pkgconfig(cairo)
@@ -39,6 +38,7 @@
 BuildRequires:  pkgconfig(gl)
 BuildRequires:  pkgconfig(glesv2)
 BuildRequires:  pkgconfig(glib-2.0)
+BuildRequires:  pkgconfig(icu-uc)
 BuildRequires:  pkgconfig(jack)
 BuildRequires:  pkgconfig(libevent)
 BuildRequires:  pkgconfig(libevent_pthreads)
@@ -55,11 +55,6 @@
 BuildRequires:  pkgconfig(xrender)
 Supplements:    packageand(browser(npapi):chromium-pepper-flash)
 Conflicts:      flash-player
-%if %{with gtk3}
-BuildRequires:  pkgconfig(gtk+-3.0)
-%else
-BuildRequires:  pkgconfig(gtk+-2.0)
-%endif
 %if 0%{with restricted}
 # Hardware accelerated decoding.
 BuildRequires:  pkgconfig(libavcodec)
@@ -99,22 +94,17 @@
 %build
 %cmake \
   -DMOZPLUGIN_INSTALL_DIR=%{_libdir}/browser-plugins \
-%if %{with gtk3}
-  -DWITH_GTK=3                                       \
-%else
-  -DWITH_GTK=2                                       \
-%endif
 %if %{with restricted}
   -DWITH_HWDEC=1                                     \
 %else
   -DWITH_HWDEC=0                                     \
 %endif
   -DWITH_GLES2=ON
-make %{?_smp_mflags}
+make %{?_smp_mflags} V=1
 
 %install
 %cmake_install
-install -Dm 0644 data/freshwrapper.conf.example \
+install -Dpm 0644 data/freshwrapper.conf.example \
   %{buildroot}%{_sysconfdir}/freshwrapper.conf
 
 %post

++++++ freshplayerplugin-0.3.5.tar.gz -> freshplayerplugin-0.3.6.tar.gz ++++++
++++ 6685 lines of diff (skipped)

++++++ freshplayerplugin-drop-angle.patch ++++++
--- a/3rdparty/CMakeLists.txt
+++ b/3rdparty/CMakeLists.txt
@@ -1,4 +1 @@
 add_subdirectory(parson)
-if (NOT WITH_GLES2)
-    add_subdirectory(angle)
-endif()
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -144,10 +144,6 @@ add_definitions(${REQ_CFLAGS_OTHER})
 add_definitions(-DXP_UNIX)
 
 include_directories(3rdparty)
-if (NOT WITH_GLES2)
-    include_directories(3rdparty/angle/include)
-    list(APPEND REQ_LIBRARIES shader_translator)
-endif()
 
 set(SYMBOLMAP "-Wl,-version-script=\"${CMAKE_SOURCE_DIR}/src/symbolmap\"")
 

Reply via email to