commit lightspark for openSUSE:Factory

2013-06-05 Thread h_root
Hello community,

here is the log from the commit of package lightspark for openSUSE:Factory 
checked in at 2013-06-05 13:30:00

Comparing /work/SRC/openSUSE:Factory/lightspark (Old)
 and  /work/SRC/openSUSE:Factory/.lightspark.new (New)


Package is lightspark

Changes:

--- /work/SRC/openSUSE:Factory/lightspark/lightspark.changes2013-05-07 
07:28:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.lightspark.new/lightspark.changes   
2013-06-05 13:30:01.0 +0200
@@ -1,0 +2,5 @@
+Thu May 30 09:33:39 CEST 2013 - mhruse...@suse.cz
+
+- fixed build with new llvm: llvm-3.3.patch
+
+---

New:

  llvm-3.3.patch



Other differences:
--
++ lightspark.spec ++
--- /var/tmp/diff_new_pack.4jBacE/_old  2013-06-05 13:30:02.0 +0200
+++ /var/tmp/diff_new_pack.4jBacE/_new  2013-06-05 13:30:02.0 +0200
@@ -29,6 +29,8 @@
 Source0:
https://launchpad.net/lightspark/trunk/lightspark-%{version}/+download/lightspark-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM lightspark-0.5.7-underlinking.patch lp#1000818 
reddw...@opensuse.org -- Link against GTK
 Patch0: lightspark-0.5.7-underlinking.patch
+# PATCH-FIX-UPSTREAM llvm-3.3.patch mhruse...@suse.cz -- Upstream patch for 
llvm 3.3. support
+Patch1: llvm-3.3.patch
 BuildRequires:  boost-devel
 BuildRequires:  cmake
 BuildRequires:  desktop-file-utils
@@ -82,6 +84,7 @@
 %prep
 %setup -q
 %patch0
+%patch1
 
 %build
 export CFLAGS='%{optflags}'

++ llvm-3.3.patch ++
From 56f4f48c47983432670d7aaa18614a98bd35961a Mon Sep 17 00:00:00 2001
From: Antti Ajanki antti.aja...@iki.fi
Date: Sat, 18 May 2013 11:36:52 +0300
Subject: [PATCH] Support for LLVM 3.3

---
 conf/FindLLVM.cmake|  6 ++
 src/scripting/abc.cpp  | 15 +++
 src/scripting/abc_codesynt.cpp | 25 ++---
 3 files changed, 35 insertions(+), 11 deletions(-)

Index: conf/FindLLVM.cmake
===
--- conf/FindLLVM.cmake.orig
+++ conf/FindLLVM.cmake
@@ -51,6 +51,7 @@ else (LLVM_INCLUDE_DIR)
 /usr/lib/llvm-2.8/bin
 /usr/lib/llvm-2.9/bin
 /usr/lib/llvm-3.0/bin
+/usr/lib/llvm-3.3/bin
 )
 
   find_program(LLVM_GCC_EXECUTABLE
@@ -168,11 +169,16 @@ else (LLVM_INCLUDE_DIR)
 
   set(CMAKE_REQUIRED_INCLUDES ${LLVM_INCLUDE_DIR})
   check_include_file_cxx(llvm/DataLayout.h HAVE_DATALAYOUT_H)
+  check_include_file_cxx(llvm/IR/DataLayout.h HAVE_IR_DATALAYOUT_H)
   unset(CMAKE_REQUIRED_INCLUDES)
   MESSAGE(STATUS HAVE_DATALAYOUT_H:  ${HAVE_DATALAYOUT_H})
+  MESSAGE(STATUS HAVE_IR_DATALAYOUT_H:  ${HAVE_IR_DATALAYOUT_H})
   IF(HAVE_DATALAYOUT_H)
 ADD_DEFINITIONS(-DHAVE_DATALAYOUT_H)
   ENDIF(HAVE_DATALAYOUT_H)
+  IF(HAVE_IR_DATALAYOUT_H)
+ADD_DEFINITIONS(-DHAVE_IR_DATALAYOUT_H)
+  ENDIF(HAVE_IR_DATALAYOUT_H)
   
   exec_program(${LLVM_CONFIG_EXECUTABLE} ARGS --cxxflags  OUTPUT_VARIABLE 
LLVM_COMPILE_FLAGS )
   MESSAGE(STATUS LLVM CXX flags:  ${LLVM_COMPILE_FLAGS})
Index: src/scripting/abc.cpp
===
--- src/scripting/abc.cpp.orig
+++ src/scripting/abc.cpp
@@ -23,12 +23,19 @@
 
 #include compat.h
 
-#include llvm/Module.h
 #include llvm/ExecutionEngine/ExecutionEngine.h
 #include llvm/ExecutionEngine/JIT.h
 #include llvm/PassManager.h
-#include llvm/LLVMContext.h
-#ifdef HAVE_DATALAYOUT_H
+#ifdef HAVE_IR_DATALAYOUT_H
+#  include llvm/IR/Module.h
+#  include llvm/IR/LLVMContext.h
+#else
+#  include llvm/Module.h
+#  include llvm/LLVMContext.h
+#endif
+#ifdef HAVE_IR_DATALAYOUT_H
+#  include llvm/IR/DataLayout.h
+#elif defined HAVE_DATALAYOUT_H
 #  include llvm/DataLayout.h
 #else
 #  include llvm/Target/TargetData.h
@@ -1489,7 +1496,7 @@ void ABCVm::Run(ABCVm* th)
assert_and_throw(th-ex);
 
th-FPM=new llvm::FunctionPassManager(th-module);
-#ifdef HAVE_DATALAYOUT_H
+#if defined HAVE_DATALAYOUT_H || defined HAVE_IR_DATALAYOUT_H
th-FPM-add(new llvm::DataLayout(*th-ex-getDataLayout()));
 #else
th-FPM-add(new llvm::TargetData(*th-ex-getTargetData()));
Index: src/scripting/abc_codesynt.cpp
===
--- src/scripting/abc_codesynt.cpp.orig
+++ src/scripting/abc_codesynt.cpp
@@ -25,18 +25,29 @@
 #endif
 
 #include compat.h
-#include llvm/Module.h
-#include llvm/DerivedTypes.h
 #include llvm/ExecutionEngine/ExecutionEngine.h
 #include llvm/PassManager.h
-#include llvm/Constants.h
-#ifdef HAVE_IRBUILDER_H
+#ifdef HAVE_IR_DATALAYOUT_H
+#  include llvm/IR/Constants.h
+#  include llvm/IR/DerivedTypes.h
+#  include llvm/IR/Module.h
+#  include llvm/IR/LLVMContext.h
+#else
+#  

commit lightspark for openSUSE:Factory

2013-05-06 Thread h_root
Hello community,

here is the log from the commit of package lightspark for openSUSE:Factory 
checked in at 2013-05-07 07:28:24

Comparing /work/SRC/openSUSE:Factory/lightspark (Old)
 and  /work/SRC/openSUSE:Factory/.lightspark.new (New)


Package is lightspark

Changes:

--- /work/SRC/openSUSE:Factory/lightspark/lightspark.changes2012-12-28 
11:36:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.lightspark.new/lightspark.changes   
2013-05-07 07:28:26.0 +0200
@@ -1,0 +2,11 @@
+Mon May  6 11:41:54 UTC 2013 - reddw...@opensuse.org
+
+- Update to 0.7.2
+  * Improved image support: alpha in palettes, abbreviated JPEGs
+  * Improved embedded font parsing and text positioning
+  * Open links in a browser (plugin only)
+  * BitmapData improvements
+  * Fixed many crashes
+- Remove lightspark-0.7.0-no_glu.patch. Applied upstream.
+
+---

Old:

  lightspark-0.7.0-no_glu.patch
  lightspark-0.7.1.tar.gz

New:

  lightspark-0.7.2.tar.gz



Other differences:
--
++ lightspark.spec ++
--- /var/tmp/diff_new_pack.4aTrls/_old  2013-05-07 07:28:27.0 +0200
+++ /var/tmp/diff_new_pack.4aTrls/_new  2013-05-07 07:28:27.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lightspark
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %bcond_with rtmp
 
 Name:   lightspark
-Version:0.7.1
+Version:0.7.2
 Release:0
 Summary:Modern, free, open-source flash player implementation
 License:LGPL-3.0+
@@ -29,8 +29,6 @@
 Source0:
https://launchpad.net/lightspark/trunk/lightspark-%{version}/+download/lightspark-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM lightspark-0.5.7-underlinking.patch lp#1000818 
reddw...@opensuse.org -- Link against GTK
 Patch0: lightspark-0.5.7-underlinking.patch
-# PATCH-FIX-UPSTREAM lightspark-0.7.0-no_glu.patch lp#1073536 
reddw...@opensuse.org -- Avoid the need for GLU
-Patch1: lightspark-0.7.0-no_glu.patch
 BuildRequires:  boost-devel
 BuildRequires:  cmake
 BuildRequires:  desktop-file-utils
@@ -84,7 +82,6 @@
 %prep
 %setup -q
 %patch0
-%patch1
 
 %build
 export CFLAGS='%{optflags}'

++ lightspark-0.7.1.tar.gz - lightspark-0.7.2.tar.gz ++
 11436 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit lightspark for openSUSE:Factory

2012-12-28 Thread h_root
Hello community,

here is the log from the commit of package lightspark for openSUSE:Factory 
checked in at 2012-12-28 11:36:22

Comparing /work/SRC/openSUSE:Factory/lightspark (Old)
 and  /work/SRC/openSUSE:Factory/.lightspark.new (New)


Package is lightspark, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/lightspark/lightspark.changes2012-12-03 
10:02:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.lightspark.new/lightspark.changes   
2012-12-28 11:36:24.0 +0100
@@ -1,0 +2,15 @@
+Thu Dec 27 22:53:22 UTC 2012 - reddw...@opensuse.org
+
+- Update to 0.7.1
+  * Fixes for YouTube
+  * Support keyboard press and release events
+  * Support mouse wheel events and other mouse event improvements
+  * Support LLVM 3.2
+  * Implemented hit testing of DisplayObjects
+  * Parse JPEG images embedded in DefineBits tags
+  * Parse RGB15 and paletted images in DefineBitsLossless tags
+  * Improved XML support
+- Remove lightspark-0.7.0-llvm32.patch, applied upstream.
+
+---
+

Old:

  lightspark-0.7.0-llvm32.patch
  lightspark-0.7.0.tar.gz

New:

  lightspark-0.7.1.tar.gz



Other differences:
--
++ lightspark.spec ++
--- /var/tmp/diff_new_pack.9UswSb/_old  2012-12-28 11:36:26.0 +0100
+++ /var/tmp/diff_new_pack.9UswSb/_new  2012-12-28 11:36:26.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with rtmp
 
 Name:   lightspark
-Version:0.7.0
+Version:0.7.1
 Release:0
 Summary:Modern, free, open-source flash player implementation
 License:LGPL-3.0+
@@ -31,8 +31,6 @@
 Patch0: lightspark-0.5.7-underlinking.patch
 # PATCH-FIX-UPSTREAM lightspark-0.7.0-no_glu.patch lp#1073536 
reddw...@opensuse.org -- Avoid the need for GLU
 Patch1: lightspark-0.7.0-no_glu.patch
-# PATCH-FIX-UPSTREAM lightspark-0.7.0-llvm32.patch lp#1080123 
reddw...@opensuse.org -- Fix build with LLVM 3.2. Took from upstream BZR.
-Patch2: lightspark-0.7.0-llvm32.patch
 BuildRequires:  boost-devel
 BuildRequires:  cmake
 BuildRequires:  desktop-file-utils
@@ -87,7 +85,6 @@
 %setup -q
 %patch0
 %patch1
-%patch2
 
 %build
 export CFLAGS='%{optflags}'

++ lightspark-0.7.0.tar.gz - lightspark-0.7.1.tar.gz ++
 4741 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit lightspark for openSUSE:Factory

2012-12-03 Thread h_root
Hello community,

here is the log from the commit of package lightspark for openSUSE:Factory 
checked in at 2012-12-03 10:02:04

Comparing /work/SRC/openSUSE:Factory/lightspark (Old)
 and  /work/SRC/openSUSE:Factory/.lightspark.new (New)


Package is lightspark, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/lightspark/lightspark.changes2012-11-02 
17:37:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.lightspark.new/lightspark.changes   
2012-12-03 10:02:06.0 +0100
@@ -1,0 +2,5 @@
+Fri Nov 30 10:45:57 UTC 2012 - reddw...@opensuse.org
+
+- Add lightspark-0.7.0-llvm32.patch to fix build with LLVM 3.2
+
+---

New:

  lightspark-0.7.0-llvm32.patch



Other differences:
--
++ lightspark.spec ++
--- /var/tmp/diff_new_pack.QdAT3v/_old  2012-12-03 10:02:07.0 +0100
+++ /var/tmp/diff_new_pack.QdAT3v/_new  2012-12-03 10:02:07.0 +0100
@@ -31,6 +31,8 @@
 Patch0: lightspark-0.5.7-underlinking.patch
 # PATCH-FIX-UPSTREAM lightspark-0.7.0-no_glu.patch lp#1073536 
reddw...@opensuse.org -- Avoid the need for GLU
 Patch1: lightspark-0.7.0-no_glu.patch
+# PATCH-FIX-UPSTREAM lightspark-0.7.0-llvm32.patch lp#1080123 
reddw...@opensuse.org -- Fix build with LLVM 3.2. Took from upstream BZR.
+Patch2: lightspark-0.7.0-llvm32.patch
 BuildRequires:  boost-devel
 BuildRequires:  cmake
 BuildRequires:  desktop-file-utils
@@ -85,6 +87,7 @@
 %setup -q
 %patch0
 %patch1
+%patch2
 
 %build
 export CFLAGS='%{optflags}'

++ lightspark-0.7.0-llvm32.patch ++
=== modified file 'conf/FindLLVM.cmake'
Index: conf/FindLLVM.cmake
===
--- conf/FindLLVM.cmake.orig
+++ conf/FindLLVM.cmake
@@ -156,6 +156,23 @@ else (LLVM_INCLUDE_DIR)
   IF(HAVE_SUPPORT_TARGETSELECT_H)
 ADD_DEFINITIONS(-DHAVE_SUPPORT_TARGETSELECT_H)
   ENDIF(HAVE_SUPPORT_TARGETSELECT_H)
+
+  set(CMAKE_REQUIRED_INCLUDES ${LLVM_INCLUDE_DIR})
+  set(CMAKE_REQUIRED_DEFINITIONS -D__STDC_LIMIT_MACROS=1 
-D__STDC_CONSTANT_MACROS=1)
+  check_include_file_cxx(llvm/IRBuilder.h HAVE_IRBUILDER_H)
+  unset(CMAKE_REQUIRED_INCLUDES)
+  MESSAGE(STATUS HAVE_IRBUILDER_H:  ${HAVE_IRBUILDER_H})
+  IF(HAVE_IRBUILDER_H)
+ADD_DEFINITIONS(-DHAVE_IRBUILDER_H)
+  ENDIF(HAVE_IRBUILDER_H)
+
+  set(CMAKE_REQUIRED_INCLUDES ${LLVM_INCLUDE_DIR})
+  check_include_file_cxx(llvm/DataLayout.h HAVE_DATALAYOUT_H)
+  unset(CMAKE_REQUIRED_INCLUDES)
+  MESSAGE(STATUS HAVE_DATALAYOUT_H:  ${HAVE_DATALAYOUT_H})
+  IF(HAVE_DATALAYOUT_H)
+ADD_DEFINITIONS(-DHAVE_DATALAYOUT_H)
+  ENDIF(HAVE_DATALAYOUT_H)
   
   exec_program(${LLVM_CONFIG_EXECUTABLE} ARGS --cxxflags  OUTPUT_VARIABLE 
LLVM_COMPILE_FLAGS )
   MESSAGE(STATUS LLVM CXX flags:  ${LLVM_COMPILE_FLAGS})
Index: src/scripting/abc.cpp
===
--- src/scripting/abc.cpp.orig
+++ src/scripting/abc.cpp
@@ -28,7 +28,11 @@
 #include llvm/ExecutionEngine/JIT.h
 #include llvm/PassManager.h
 #include llvm/LLVMContext.h
-#include llvm/Target/TargetData.h
+#ifdef HAVE_DATALAYOUT_H
+#  include llvm/DataLayout.h
+#else
+#  include llvm/Target/TargetData.h
+#endif
 #ifdef HAVE_SUPPORT_TARGETSELECT_H
 #include llvm/Support/TargetSelect.h
 #else
@@ -1454,7 +1458,11 @@ void ABCVm::Run(ABCVm* th)
assert_and_throw(th-ex);
 
th-FPM=new llvm::FunctionPassManager(th-module);
+#ifdef HAVE_DATALAYOUT_H
+   th-FPM-add(new llvm::DataLayout(*th-ex-getDataLayout()));
+#else
th-FPM-add(new llvm::TargetData(*th-ex-getTargetData()));
+#endif
 #ifdef EXPENSIVE_DEBUG
//This is pretty heavy, do not enable in release
th-FPM-add(llvm::createVerifierPass());
Index: src/scripting/abc_codesynt.cpp
===
--- src/scripting/abc_codesynt.cpp.orig
+++ src/scripting/abc_codesynt.cpp
@@ -29,10 +29,18 @@
 #include llvm/DerivedTypes.h
 #include llvm/ExecutionEngine/ExecutionEngine.h
 #include llvm/PassManager.h
-#include llvm/Constants.h 
-#include llvm/Support/IRBuilder.h 
+#include llvm/Constants.h
+#ifdef HAVE_IRBUILDER_H
+#  include llvm/IRBuilder.h
+#else
+#  include llvm/Support/IRBuilder.h
+#endif
 #include llvm/LLVMContext.h
-#include llvm/Target/TargetData.h
+#ifdef HAVE_DATALAYOUT_H
+#  include llvm/DataLayout.h
+#else
+#  include llvm/Target/TargetData.h
+#endif
 #include sstream
 #include scripting/abc.h
 #include swftypes.h
@@ -271,7 +279,11 @@ void ABCVm::registerFunctions()
llvm::FunctionType* FT=NULL;
 
//Create types
+#ifdef HAVE_DATALAYOUT_H
+   ptr_type=ex-getDataLayout()-getIntPtrType(llvm_context());
+#else
 

commit lightspark for openSUSE:Factory

2012-11-02 Thread h_root
Hello community,

here is the log from the commit of package lightspark for openSUSE:Factory 
checked in at 2012-11-02 17:37:36

Comparing /work/SRC/openSUSE:Factory/lightspark (Old)
 and  /work/SRC/openSUSE:Factory/.lightspark.new (New)


Package is lightspark, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/lightspark/lightspark.changes2012-09-23 
08:05:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.lightspark.new/lightspark.changes   
2012-11-02 17:37:50.0 +0100
@@ -1,0 +2,20 @@
+Wed Oct 31 10:09:51 UTC 2012 - reddw...@opensuse.org
+
+- Update to 0.7.0
+  * Support LZMA compressed SWFs [Requires liblzma]
+  * Improved BitmapData support
+  * Improved ActionScript compatibility
+  * Improved virtual machine performance and memory consumption
+  * Improved XML support
+  * Experimental support for bytecode optimization at runtime
+  * Improved ExternalInterface (browser integration) support
+  * Improved performance of JPEG loading
+  * Support for XMLSocket
+  * Completely redesigned and improved masking support
+- Take minimum version of pkgconfig(libxml++-2.6) and llvm-devel
+  from CMakeLists.txt and specify them in the BuildRequires
+- Add pkgconfig(liblzma), pkgconfig(gl) and pkgconfig(zlib) BuildRequires
+- Remove pkgconfig(gobject-2.0) BuildRequire
+- Add lightspark-0.7.0-no_glu.patch and remove explicit glu dependency
+
+---

Old:

  lightspark-0.6.0.1.tar.gz

New:

  lightspark-0.7.0-no_glu.patch
  lightspark-0.7.0.tar.gz



Other differences:
--
++ lightspark.spec ++
--- /var/tmp/diff_new_pack.6QbnNv/_old  2012-11-02 17:37:53.0 +0100
+++ /var/tmp/diff_new_pack.6QbnNv/_new  2012-11-02 17:37:53.0 +0100
@@ -20,7 +20,7 @@
 %bcond_with rtmp
 
 Name:   lightspark
-Version:0.6.0.1
+Version:0.7.0
 Release:0
 Summary:Modern, free, open-source flash player implementation
 License:LGPL-3.0+
@@ -29,6 +29,8 @@
 Source0:
https://launchpad.net/lightspark/trunk/lightspark-%{version}/+download/lightspark-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM lightspark-0.5.7-underlinking.patch lp#1000818 
reddw...@opensuse.org -- Link against GTK
 Patch0: lightspark-0.5.7-underlinking.patch
+# PATCH-FIX-UPSTREAM lightspark-0.7.0-no_glu.patch lp#1073536 
reddw...@opensuse.org -- Avoid the need for GLU
+Patch1: lightspark-0.7.0-no_glu.patch
 BuildRequires:  boost-devel
 BuildRequires:  cmake
 BuildRequires:  desktop-file-utils
@@ -36,26 +38,27 @@
 BuildRequires:  gettext-tools
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libjpeg-devel
-BuildRequires:  llvm-devel
+BuildRequires:  llvm-devel = 2.8
 BuildRequires:  nasm
 BuildRequires:  pkgconfig(cairo)
 BuildRequires:  pkgconfig(gdk-2.0)
+BuildRequires:  pkgconfig(gl)
 BuildRequires:  pkgconfig(glew)
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(glibmm-2.4)
-BuildRequires:  pkgconfig(glu)
 BuildRequires:  pkgconfig(gmodule-2.0)
-BuildRequires:  pkgconfig(gobject-2.0)
 BuildRequires:  pkgconfig(gthread-2.0)
 BuildRequires:  pkgconfig(gtk+-2.0)
 BuildRequires:  pkgconfig(libcurl)
+BuildRequires:  pkgconfig(liblzma)
 BuildRequires:  pkgconfig(libpcre)
 BuildRequires:  pkgconfig(libpng)
 BuildRequires:  pkgconfig(libpulse)
-BuildRequires:  pkgconfig(libxml++-2.6)
+BuildRequires:  pkgconfig(libxml++-2.6) = 2.33.1
 BuildRequires:  pkgconfig(pango)
 BuildRequires:  pkgconfig(pangocairo)
 BuildRequires:  pkgconfig(x11)
+BuildRequires:  pkgconfig(zlib)
 %if %{with rtmp}
 BuildRequires:  pkgconfig(librtmp)
 %endif
@@ -81,6 +84,7 @@
 %prep
 %setup -q
 %patch0
+%patch1
 
 %build
 export CFLAGS='%{optflags}'

++ lightspark-0.7.0-no_glu.patch ++
Index: src/backends/lsopengl.h
===
--- src/backends/lsopengl.h.orig
+++ src/backends/lsopengl.h
@@ -39,6 +39,7 @@
#define glBufferData(...)
#define glPixelStorei(...)
 #else
+   #define GLEW_NO_GLU
#include GL/glew.h
#ifndef _WIN32
#include GL/glx.h
++ lightspark-0.6.0.1.tar.gz - lightspark-0.7.0.tar.gz ++
 28754 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit lightspark for openSUSE:Factory

2012-09-23 Thread h_root
Hello community,

here is the log from the commit of package lightspark for openSUSE:Factory 
checked in at 2012-09-23 08:05:41

Comparing /work/SRC/openSUSE:Factory/lightspark (Old)
 and  /work/SRC/openSUSE:Factory/.lightspark.new (New)


Package is lightspark, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/lightspark/lightspark.changes2012-06-26 
16:16:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.lightspark.new/lightspark.changes   
2012-09-23 08:05:44.0 +0200
@@ -1,0 +2,5 @@
+Fri Sep 21 11:22:07 UTC 2012 - idon...@suse.com
+
+- Add explicit glu dependency
+
+---



Other differences:
--
++ lightspark.spec ++
--- /var/tmp/diff_new_pack.YC7pXj/_old  2012-09-23 08:05:46.0 +0200
+++ /var/tmp/diff_new_pack.YC7pXj/_new  2012-09-23 08:05:46.0 +0200
@@ -43,6 +43,7 @@
 BuildRequires:  pkgconfig(glew)
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(glibmm-2.4)
+BuildRequires:  pkgconfig(glu)
 BuildRequires:  pkgconfig(gmodule-2.0)
 BuildRequires:  pkgconfig(gobject-2.0)
 BuildRequires:  pkgconfig(gthread-2.0)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit lightspark for openSUSE:Factory

2012-06-26 Thread h_root
Hello community,

here is the log from the commit of package lightspark for openSUSE:Factory 
checked in at 2012-06-26 16:16:26

Comparing /work/SRC/openSUSE:Factory/lightspark (Old)
 and  /work/SRC/openSUSE:Factory/.lightspark.new (New)


Package is lightspark, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/lightspark/lightspark.changes2012-06-10 
23:01:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.lightspark.new/lightspark.changes   
2012-06-26 16:16:28.0 +0200
@@ -1,0 +2,19 @@
+Fri Jun 22 17:07:14 UTC 2012 - reddw...@opensuse.org
+
+- Update to 0.6.0.1
+  * Enable RTMP support by default, requires librtmp
+  * Fixed support for IEventDispatcher implementation pattern
+  * Improved serialization robustness
+  * Improved matrix handling
+  * Implement string and namespace pooling to reduce memory consumption
+  * Proper support for private namespaces
+  * Improved support for fonts
+  * Support LLVM 3.1
+  * Fix full volume issue when PulseAudio flat volumes are enabled
+  * Initial support for AIR desktop applications
+  * Support for www.bbc.co.uk video player
+- Remove lightspark-0.5.7-llvm_31.patch and
+  lightspark-0.5.7-ffmpeg_011.patch, applied upstream
+- Optionally support RTMP
+
+---

Old:

  lightspark-0.5.7-ffmpeg_011.patch
  lightspark-0.5.7-llvm_31.patch
  lightspark-0.5.7.tar.gz

New:

  lightspark-0.6.0.1.tar.gz



Other differences:
--
++ lightspark.spec ++
--- /var/tmp/diff_new_pack.nsJEng/_old  2012-06-26 16:16:29.0 +0200
+++ /var/tmp/diff_new_pack.nsJEng/_new  2012-06-26 16:16:29.0 +0200
@@ -17,9 +17,10 @@
 
 
 %bcond_with ffmpeg
+%bcond_with rtmp
 
 Name:   lightspark
-Version:0.5.7
+Version:0.6.0.1
 Release:0
 Summary:Modern, free, open-source flash player implementation
 License:LGPL-3.0+
@@ -28,10 +29,6 @@
 Source0:
https://launchpad.net/lightspark/trunk/lightspark-%{version}/+download/lightspark-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM lightspark-0.5.7-underlinking.patch lp#1000818 
reddw...@opensuse.org -- Link against GTK
 Patch0: lightspark-0.5.7-underlinking.patch
-# PATCH-FIX-UPSTREAM lightspark-0.5.7-llvm_31.patch lp#980464 
reddw...@opensuse.org -- Fix build with LLVM 3.1. Took from GIT
-Patch1: lightspark-0.5.7-llvm_31.patch
-# PATCH-FIX-UPSTREAM lightspark-0.5.7-ffmpeg_011.patch lp#1005534 
reddw...@opensuse.org -- Fix build with ffmpeg 0.11. Already in GIT
-Patch2: lightspark-0.5.7-ffmpeg_011.patch
 BuildRequires:  boost-devel
 BuildRequires:  cmake
 BuildRequires:  desktop-file-utils
@@ -58,6 +55,9 @@
 BuildRequires:  pkgconfig(pango)
 BuildRequires:  pkgconfig(pangocairo)
 BuildRequires:  pkgconfig(x11)
+%if %{with rtmp}
+BuildRequires:  pkgconfig(librtmp)
+%endif
 %if %{with ffmpeg}
 BuildRequires:  pkgconfig(libavcodec)
 BuildRequires:  pkgconfig(libavformat)
@@ -80,8 +80,6 @@
 %prep
 %setup -q
 %patch0
-%patch1
-%patch2
 
 %build
 export CFLAGS='%{optflags}'
@@ -94,7 +92,8 @@
   -DLIB_SUFFIX=$(echo %{_lib} | cut -b4-) \
   -DCMAKE_BUILD_TYPE=RelWithDebugInfo \
   -DPLUGIN_DIRECTORY=%{_libdir}/browser-plugins \
-  -DENABLE_LIBAVCODEC=%{?with_ffmpeg:YES}%{!?with_ffmpeg:NO} ..
+  -DENABLE_LIBAVCODEC=%{?with_ffmpeg:YES}%{!?with_ffmpeg:NO} \
+  -DENABLE_RTMP=%{?with_rtmp:YES}%{!?with_rtmp:NO} ..
 make %{?_smp_mflags}
 
 %install

++ lightspark-0.5.7.tar.gz - lightspark-0.6.0.1.tar.gz ++
 11833 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit lightspark for openSUSE:Factory

2012-06-10 Thread h_root
Hello community,

here is the log from the commit of package lightspark for openSUSE:Factory 
checked in at 2012-06-10 23:01:03

Comparing /work/SRC/openSUSE:Factory/lightspark (Old)
 and  /work/SRC/openSUSE:Factory/.lightspark.new (New)


Package is lightspark, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/lightspark/lightspark.changes2012-06-06 
16:08:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.lightspark.new/lightspark.changes   
2012-06-10 23:01:04.0 +0200
@@ -1,0 +2,5 @@
+Wed Jun  6 20:37:11 UTC 2012 - reddw...@opensuse.org
+
+- Fix ffmpeg 0.11 patch, now upstreamed
+
+---



Other differences:
--
++ lightspark.spec ++
--- /var/tmp/diff_new_pack.Z9FBeW/_old  2012-06-10 23:01:06.0 +0200
+++ /var/tmp/diff_new_pack.Z9FBeW/_new  2012-06-10 23:01:06.0 +0200
@@ -28,8 +28,9 @@
 Source0:
https://launchpad.net/lightspark/trunk/lightspark-%{version}/+download/lightspark-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM lightspark-0.5.7-underlinking.patch lp#1000818 
reddw...@opensuse.org -- Link against GTK
 Patch0: lightspark-0.5.7-underlinking.patch
-# PATCH-FIX-UPSTREAM lightspark-0.5.7-llvm_31.patch lp#980464 
reddw...@opensuse.org -- Fix build with LLVM 3.1. Took from GIT.
+# PATCH-FIX-UPSTREAM lightspark-0.5.7-llvm_31.patch lp#980464 
reddw...@opensuse.org -- Fix build with LLVM 3.1. Took from GIT
 Patch1: lightspark-0.5.7-llvm_31.patch
+# PATCH-FIX-UPSTREAM lightspark-0.5.7-ffmpeg_011.patch lp#1005534 
reddw...@opensuse.org -- Fix build with ffmpeg 0.11. Already in GIT
 Patch2: lightspark-0.5.7-ffmpeg_011.patch
 BuildRequires:  boost-devel
 BuildRequires:  cmake

++ lightspark-0.5.7-ffmpeg_011.patch ++
--- /var/tmp/diff_new_pack.Z9FBeW/_old  2012-06-10 23:01:06.0 +0200
+++ /var/tmp/diff_new_pack.Z9FBeW/_new  2012-06-10 23:01:06.0 +0200
@@ -12,17 +12,18 @@
if(avioContext==NULL)
return;
  
-@@ -658,7 +657,8 @@ FFMpegStreamDecoder::FFMpegStreamDecoder
+@@ -658,7 +657,9 @@ FFMpegStreamDecoder::FFMpegStreamDecoder
if(fmt==NULL)
return;
  
 -  int ret=av_open_input_stream(formatCtx, avioContext, 
lightspark_stream, fmt, NULL);
++  formatCtx = avformat_alloc_context();
 +  formatCtx-pb = avioContext;
 +  int ret=avformat_open_input(formatCtx, lightspark_stream, fmt, NULL);
if(ret0)
return;

-@@ -706,7 +706,7 @@ FFMpegStreamDecoder::~FFMpegStreamDecode
+@@ -706,7 +707,7 @@ FFMpegStreamDecoder::~FFMpegStreamDecode
audioDecoder=NULL;
videoDecoder=NULL;
if(formatCtx)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit lightspark for openSUSE:Factory

2012-06-06 Thread h_root
Hello community,

here is the log from the commit of package lightspark for openSUSE:Factory 
checked in at 2012-06-06 16:08:06

Comparing /work/SRC/openSUSE:Factory/lightspark (Old)
 and  /work/SRC/openSUSE:Factory/.lightspark.new (New)


Package is lightspark, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/lightspark/lightspark.changes2012-05-29 
14:14:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.lightspark.new/lightspark.changes   
2012-06-06 16:08:10.0 +0200
@@ -1,0 +2,5 @@
+Mon May 28 14:54:59 UTC 2012 - reddw...@opensuse.org
+
+- Fix build with ffmpeg 0.11
+
+---

New:

  lightspark-0.5.7-ffmpeg_011.patch



Other differences:
--
++ lightspark.spec ++
--- /var/tmp/diff_new_pack.LTIP4L/_old  2012-06-06 16:08:14.0 +0200
+++ /var/tmp/diff_new_pack.LTIP4L/_new  2012-06-06 16:08:14.0 +0200
@@ -30,6 +30,7 @@
 Patch0: lightspark-0.5.7-underlinking.patch
 # PATCH-FIX-UPSTREAM lightspark-0.5.7-llvm_31.patch lp#980464 
reddw...@opensuse.org -- Fix build with LLVM 3.1. Took from GIT.
 Patch1: lightspark-0.5.7-llvm_31.patch
+Patch2: lightspark-0.5.7-ffmpeg_011.patch
 BuildRequires:  boost-devel
 BuildRequires:  cmake
 BuildRequires:  desktop-file-utils
@@ -79,6 +80,7 @@
 %setup -q
 %patch0
 %patch1
+%patch2
 
 %build
 export CFLAGS='%{optflags}'

++ lightspark-0.5.7-ffmpeg_011.patch ++
Index: src/backends/decoder.cpp
===
--- src/backends/decoder.cpp.orig
+++ src/backends/decoder.cpp
@@ -628,8 +628,7 @@ StreamDecoder::~StreamDecoder()
 FFMpegStreamDecoder::FFMpegStreamDecoder(std::istream 
s):stream(s),formatCtx(NULL),audioFound(false),videoFound(false),avioContext(NULL)
 {
valid=false;
-   //NOTE: this will become avio_alloc_context in FFMpeg 0.7
-   
avioContext=av_alloc_put_byte(avioBuffer,4096,0,this,avioReadPacket,NULL,NULL);
+   
avioContext=avio_alloc_context(avioBuffer,4096,0,this,avioReadPacket,NULL,NULL);
if(avioContext==NULL)
return;
 
@@ -658,7 +657,8 @@ FFMpegStreamDecoder::FFMpegStreamDecoder
if(fmt==NULL)
return;
 
-   int ret=av_open_input_stream(formatCtx, avioContext, 
lightspark_stream, fmt, NULL);
+   formatCtx-pb = avioContext;
+   int ret=avformat_open_input(formatCtx, lightspark_stream, fmt, NULL);
if(ret0)
return;

@@ -706,7 +706,7 @@ FFMpegStreamDecoder::~FFMpegStreamDecode
audioDecoder=NULL;
videoDecoder=NULL;
if(formatCtx)
-   av_close_input_stream(formatCtx);
+   av_close_input_file(formatCtx);
if(avioContext)
av_free(avioContext);
 }
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org