Hello community,

here is the log from the commit of package freshplayerplugin for 
openSUSE:Factory checked in at 2015-10-08 08:25:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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      
2015-09-24 06:15:50.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.freshplayerplugin.new/freshplayerplugin.changes 
2015-10-08 08:25:28.000000000 +0200
@@ -1,0 +2,14 @@
+Mon Oct  5 14:45:54 UTC 2015 - [email protected]
+
+- Update to 0.3.3:
+  * graphics: update fullscreen size at the very end of transition.
+  * net: implement PPB_NetAddress;1.0 inferface.
+  * audio: add "noaudio" backend which only provide sync events.
+  * misc: track origin threads of callbacks.
+  * misc: drop libconfig dependency, use own config parser.
+  * misc: avoid calling Javascript in NPP_SetWindow().
+  * misc: fix -fvisibility=hidden build issue.
+  * misc: rename file name to libfreshwrapper-flashplayer.so.
+- Rebase clean.patch and cmake-install.patch.
+
+-------------------------------------------------------------------

Old:
----
  freshplayerplugin-0.3.2.tar.gz

New:
----
  freshplayerplugin-0.3.3.tar.gz

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

Other differences:
------------------
++++++ freshplayerplugin.spec ++++++
--- /var/tmp/diff_new_pack.552ylw/_old  2015-10-08 08:25:29.000000000 +0200
+++ /var/tmp/diff_new_pack.552ylw/_new  2015-10-08 08:25:29.000000000 +0200
@@ -19,17 +19,17 @@
 %bcond_with restricted
 %bcond_with gtk3
 Name:           freshplayerplugin
-Version:        0.3.2
+Version:        0.3.3
 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-UPSTREAM [email protected] [email protected] -- Install options 
to CMakeLists.txt
-Patch0:         cmake-install.patch
-# PATCH-FIX-UPSTREAM clean.patch [email protected] -- Fix boo#937244
-Patch1:         clean.patch
+# PATCH-FIX-OPENSUSE clean.patch boo#937244 [email protected]
+Patch0:         clean.patch
+# PATCH-FIX-OPENSUSE cmake-install.patch [email protected] -- Install options 
to CMakeLists.txt.
+Patch1:         cmake-install.patch
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 BuildRequires:  pkg-config
@@ -39,10 +39,9 @@
 BuildRequires:  pkgconfig(freetype2)
 BuildRequires:  pkgconfig(gio-2.0)
 BuildRequires:  pkgconfig(gl)
+BuildRequires:  pkgconfig(glesv2)
 BuildRequires:  pkgconfig(glib-2.0)
-BuildRequires:  pkgconfig(gtk+-2.0)
 BuildRequires:  pkgconfig(jack)
-BuildRequires:  pkgconfig(libconfig)
 BuildRequires:  pkgconfig(libevent)
 BuildRequires:  pkgconfig(libevent_pthreads)
 BuildRequires:  pkgconfig(libpulse)
@@ -56,12 +55,10 @@
 BuildRequires:  pkgconfig(xcursor)
 BuildRequires:  pkgconfig(xrandr)
 BuildRequires:  pkgconfig(xrender)
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 %if %{with gtk3}
 BuildRequires:  pkgconfig(gtk+-3.0)
-%endif
-%if 0%{?suse_version} > 1140
-BuildRequires:  pkgconfig(glesv2)
+%else
+BuildRequires:  pkgconfig(gtk+-2.0)
 %endif
 %if 0%{with restricted}
 # Hardware accelerated decoding.
@@ -137,6 +134,6 @@
 %defattr(-,root,root)
 %doc ChangeLog COPYING README.md LICENSE
 %config %{_sysconfdir}/freshwrapper.conf
-%{_libdir}/browser-plugins/libfreshwrapper-pepperflash.so
+%{_libdir}/browser-plugins/libfreshwrapper-flashplayer.so
 
 %changelog

++++++ clean.patch ++++++
++++ 10583 lines (skipped)
++++ between /work/SRC/openSUSE:Factory/freshplayerplugin/clean.patch
++++ and /work/SRC/openSUSE:Factory/.freshplayerplugin.new/clean.patch

++++++ cmake-install.patch ++++++
--- /var/tmp/diff_new_pack.552ylw/_old  2015-10-08 08:25:29.000000000 +0200
+++ /var/tmp/diff_new_pack.552ylw/_new  2015-10-08 08:25:29.000000000 +0200
@@ -1,45 +1,39 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 1409e51..4a5503a 100644
 --- a/CMakeLists.txt
 +++ b/CMakeLists.txt
-@@ -134,6 +134,7 @@ if (NOT WITH_GLES2)
+@@ -144,7 +144,18 @@ if (NOT WITH_GLES2)
+     list(APPEND REQ_LIBRARIES shader_translator)
  endif()
  
++if(NOT DEFINED LIB_INSTALL_DIR)
++    set(LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}")
++endif()
++if(NOT DEFINED BROWSER_PLUGIN_DIR)
++    set(BROWSER_PLUGIN_DIR "${LIB_INSTALL_DIR}/browser-plugins")
++endif()
++if(NOT DEFINED SYSCONF_INSTALL_DIR)
++    set(SYSCONF_INSTALL_DIR "/etc")
++endif()
++
  add_subdirectory(3rdparty)
 +add_subdirectory(data)
  add_subdirectory(resources)
  add_subdirectory(src)
  add_subdirectory(tests)
-diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt
-new file mode 100644
-index 0000000..0de1cb9
---- /dev/null
+--- a/data/CMakeLists.txt
 +++ b/data/CMakeLists.txt
-@@ -0,0 +1,2 @@
-+set(SYSCONFDIR "/etc/")
-+install(FILES "freshwrapper.conf.example" DESTINATION "${SYSCONFDIR}" RENAME 
"freshwrapper.conf")
-diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
-index 7a69345..7507c55 100644
+@@ -0,0 +1 @@
++install(FILES "freshwrapper.conf.example" DESTINATION 
"${SYSCONF_INSTALL_DIR}" RENAME "freshwrapper.conf")
 --- a/src/CMakeLists.txt
 +++ b/src/CMakeLists.txt
-@@ -116,12 +116,16 @@ set(COMMON_OBJ_LIST
-     $<TARGET_OBJECTS:uri-parser-obj>
- )
- 
-+set(libdir ${LIB_INSTALL_DIR})
-+set(BROWSER_PLUGIN_DIR "${libdir}/browser-plugins")
-+
- # wrapper for PepperFlash
- set(WITH_PEPPERFLASH TRUE CACHE STRING "generate wrapper for PepperFlash")
- if (WITH_PEPPERFLASH)
-     add_library(freshwrapper-pepperflash SHARED ${COMMON_OBJ_LIST} 
config_pepperflash.c)
-     target_link_libraries(freshwrapper-pepperflash ${REQ_LIBRARIES})
-     target_link_libraries(dep_check freshwrapper-pepperflash)
-+    install(TARGETS freshwrapper-pepperflash LIBRARY DESTINATION 
"${BROWSER_PLUGIN_DIR}")
+@@ -130,6 +130,7 @@ if (WITH_PEPPERFLASH)
+     add_library(freshwrapper-flashplayer SHARED ${COMMON_OBJ_LIST} 
config_pepperflash.c)
+     target_link_libraries(freshwrapper-flashplayer ${REQ_LIBRARIES})
+     target_link_libraries(dep_check freshwrapper-flashplayer)
++    install(TARGETS freshwrapper-flashplayer LIBRARY DESTINATION 
"${BROWSER_PLUGIN_DIR}")
  endif()
  
  # wrapper for Native Client
-@@ -130,6 +134,7 @@ if (WITH_NACL)
+@@ -138,6 +139,7 @@ if (WITH_NACL)
      add_library(freshwrapper-nacl SHARED ${COMMON_OBJ_LIST} config_nacl.c)
      target_link_libraries(freshwrapper-nacl ${REQ_LIBRARIES})
      target_link_libraries(dep_check freshwrapper-nacl)
@@ -47,9 +41,9 @@
  endif()
  
  # libpdf wrapper
-@@ -138,4 +143,5 @@ if (WITH_LIBPDF)
-     add_library(freshwrapper-libpdf SHARED ${COMMON_OBJ_LIST} config_libpdf.c)
-     target_link_libraries(freshwrapper-libpdf ${REQ_LIBRARIES})
-     target_link_libraries(dep_check freshwrapper-libpdf)
+@@ -155,4 +157,5 @@ if (WITH_LIBPDF)
+                 config_libpdf_frontend.c)
+     target_link_libraries(freshwrapper-libpdf-frontend txt-resources)
+     target_link_libraries(dep_check freshwrapper-libpdf-frontend)
 +    install(TARGETS freshwrapper-libpdf LIBRARY DESTINATION 
"${BROWSER_PLUGIN_DIR}")
  endif()

++++++ freshplayerplugin-0.3.2.tar.gz -> freshplayerplugin-0.3.3.tar.gz ++++++
++++ 4542 lines of diff (skipped)


Reply via email to