Hello community,

here is the log from the commit of package vlc for openSUSE:13.1 checked in at 
2013-10-24 14:15:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:13.1/vlc (Old)
 and      /work/SRC/openSUSE:13.1/.vlc.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "vlc"

Changes:
--------
--- /work/SRC/openSUSE:13.1/vlc/vlc.changes     2013-09-23 15:50:48.000000000 
+0200
+++ /work/SRC/openSUSE:13.1/.vlc.new/vlc.changes        2013-10-24 
14:15:14.000000000 +0200
@@ -1,0 +2,66 @@
+Mon Oct 21 18:04:36 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Make vlc build on OBS for openSUSE 12.3 - BuildRequire 
+  pkgconfig(libswscale) and live555-devel on >= 13.1, and on 
+  BUILD_ORIG case
+
+-------------------------------------------------------------------
+Sat Oct 12 09:42:57 UTC 2013 - scarab...@opensuse.org
+
+- Drop support for < 12.2 as it does not build anyway
+  * Removal of pulseaudio subpackage and incorporating it to the
+    noX package.
+  * Cleanup of the dependencies and configure switches we don't
+    need to use anymore.
+- Add lang subpackage as it was most of what was noX package
+  containing. This way we can reduce the size and use noarch there.
+- Touch the ghosted file in %post to make rpmlint happy
+- Fix __DATE__ and __TIME__ usage so we do not rebuild so often.
+- Drop obsolete configure options which are no longer around
+- Disable xcb switch as we no longer build for such old distros.
+
+-------------------------------------------------------------------
+Wed Oct  2 9:11:58 UTC 2013 - wba...@tmo.at
+
+- Re-add and adapt 0001-no-return-in-non-void.patch: fixes build on
+  openSUSE versions other than Factory
+
+-------------------------------------------------------------------
+Wed Oct  2 08:20:45 UTC 2013 - guilla...@opensuse.org
+
+- Add support to openGL ES 2 (enabled by default for %arm):
+  + Introduce bcon_with(out) opengles.
+  + If enabled, pass --enable-gles2 --enable-egl to configure.
+  + Adjust the files section for that.
+
+-------------------------------------------------------------------
+Wed Oct  2 08:16:18 UTC 2013 - guilla...@opensuse.org
+
+- Add vdpau support to -codecs package (BUILD_ORIG):
+  + BuildRequire libvdpua-devel
+  + Adapt files section.
+
+-------------------------------------------------------------------
+Tue Oct  1 20:09:40 UTC 2013 - dims...@opensuse.org
+
+- Only enable GME support on openSUSE >= 12.00 (disable on SLE11).
+
+-------------------------------------------------------------------
+Wed Sep 25 19:38:09 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.1.0:
+  + Important changes:
+    - The licenses of numerous modules have changed from GPLv2+ to
+      LGPLv2.1+.
+    - Discontinued support for PowerPC-based Macs; VLC now requires
+      Mac OS X 10.6+.
+    - The --with-tuning and --without-tuning options are removed;
+      to tune compilation for a specific processor type, set CFLAGS
+      manually.
+  + LOTS of updates all over. See NEWS for a full overview.
+- Rebase fix_font_path.patch.
+- Drop 0001-no-return-in-non-void.patch: no longer needed.
+- Drop vlc-avcodec-encoder-single-threaded.patch: fixed upstream.
+- Drop ppc64_altivec.patch: fixed upstream.
+
+-------------------------------------------------------------------

Old:
----
  ppc64_altivec.patch
  vlc-2.0.8a.tar.xz
  vlc-avcodec-encoder-single-threaded.patch

New:
----
  vlc-2.1.0.tar.xz

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

Other differences:
------------------
++++++ vlc.spec ++++++
++++ 677 lines (skipped)
++++ between /work/SRC/openSUSE:13.1/vlc/vlc.spec
++++ and /work/SRC/openSUSE:13.1/.vlc.new/vlc.spec

++++++ 0001-no-return-in-non-void.patch ++++++
--- /var/tmp/diff_new_pack.EeliDc/_old  2013-10-24 14:15:15.000000000 +0200
+++ /var/tmp/diff_new_pack.EeliDc/_new  2013-10-24 14:15:15.000000000 +0200
@@ -1,32 +1,64 @@
-diff --git a/modules/access/mms/mmstu.c b/modules/access/mms/mmstu.c
-index 15586cc..c1a16b7 100644
---- a/modules/access/mms/mmstu.c
-+++ b/modules/access/mms/mmstu.c
-@@ -1572,6 +1572,7 @@ static void *KeepAliveThread( void *p_data )
-         msleep( 10 * CLOCK_FREQ );
+diff --git a/modules/access/v4l2/demux.c b/modules/access/v4l2/demux.c
+index 73af8ce..8ffad6f 100644
+--- a/modules/access/v4l2/demux.c
++++ b/modules/access/v4l2/demux.c
+@@ -629,6 +629,7 @@ static void *MmapThread (void *data)
+     }
+ 
+     assert (0);
++    return NULL; /* dead code, but the compiler can't know */
+ }
+ 
+ static void *ReadThread (void *data)
+@@ -691,6 +692,7 @@ static void *ReadThread (void *data)
+ #endif
+     }
+     assert (0);
++    return NULL; /* dead code, but the compiler can't know */
+ }
+ 
+ static int DemuxControl( demux_t *demux, int query, va_list args )
+diff --git a/modules/control/dbus/dbus.c b/modules/control/dbus/dbus.c
+index 8d7dc6e..cc924aa 100644
+--- a/modules/control/dbus/dbus.c
++++ b/modules/control/dbus/dbus.c
+@@ -880,6 +880,7 @@ static void *Run( void *data )
+         vlc_restorecancel( canc );
      }
      assert(0);
 +    return NULL; /* dead code, but the compiler can't know */
  }
  
- static void KeepAliveStart( access_t *p_access )
-diff --git a/modules/demux/live555.cpp b/modules/demux/live555.cpp
-index a3357d6..1ede179 100644
---- a/modules/demux/live555.cpp
-+++ b/modules/demux/live555.cpp
-@@ -1975,6 +1975,7 @@ static void* TimeoutPrevention( void *p_data )
-         msleep (((int64_t)p_timeout->p_sys->i_timeout - 2) * CLOCK_FREQ);
+ static void   wakeup_main_loop( void *p_data )
+diff --git a/modules/control/motion.c b/modules/control/motion.c
+index 72d7ec6..49c5620 100644
+--- a/modules/control/motion.c
++++ b/modules/control/motion.c
+@@ -190,6 +190,7 @@ static void *RunIntf( void *data )
+         vlc_restorecancel( canc );
      }
-     assert(0); /* dead code */
+     assert(0);
 +    return NULL; /* dead code, but the compiler can't know */
  }
+ #undef LOW_THRESHOLD
+ #undef HIGH_THRESHOLD
+diff --git a/modules/control/motionlib.c b/modules/control/motionlib.c
+index 9d24ced..b087410 100644
+--- a/modules/control/motionlib.c
++++ b/modules/control/motionlib.c
+@@ -196,6 +196,7 @@ static int GetOrientation( motion_sensors_t *motion )
+     default:
+         assert( 0 );
+     }
++    return 0; /* dead code, but the compiler can't know */
+ }
  
  /*****************************************************************************
 diff --git a/modules/stream_out/rtp.c b/modules/stream_out/rtp.c
-index 613f6c0..32e346f 100644
+index 62c89b7..81f884a 100644
 --- a/modules/stream_out/rtp.c
 +++ b/modules/stream_out/rtp.c
-@@ -1507,6 +1507,7 @@ static void *rtp_listen_thread( void *data )
+@@ -1501,6 +1501,7 @@ static void *rtp_listen_thread( void *data )
      }
  
      assert( 0 );
@@ -34,11 +66,23 @@
  }
  
  
+diff --git a/modules/visualization/visual/visual.c 
b/modules/visualization/visual/visual.c
+index 0baa2bc..6b788cb 100644
+--- a/modules/visualization/visual/visual.c
++++ b/modules/visualization/visual/visual.c
+@@ -366,6 +366,7 @@ static void *Thread( void *data )
+         vlc_restorecancel( canc );
+     }
+     assert(0);
++    return NULL;
+ }
+ 
+ static block_t *DoWork( filter_t *p_filter, block_t *p_in_buf )
 diff --git a/src/misc/events.c b/src/misc/events.c
-index e3b1ee0..20480c2 100644
+index b430ee5..29c387f 100644
 --- a/src/misc/events.c
 +++ b/src/misc/events.c
-@@ -265,6 +265,7 @@ int vlc_event_attach( vlc_event_manager_t * p_em,
+@@ -271,6 +271,7 @@ int vlc_event_attach( vlc_event_manager_t * p_em,
      FOREACH_END()
      /* Unknown event = BUG */
      assert( 0 );
@@ -46,15 +90,3 @@
  }
  
  /**
-diff --git a/src/video_output/display.c b/src/video_output/display.c
-index c743836..9b778ea 100644
---- a/src/video_output/display.c
-+++ b/src/video_output/display.c
-@@ -555,6 +555,7 @@ static void *VoutDisplayEventKeyDispatch(void *data)
- 
-         vlc_restorecancel(cancel);
-     }
-+    return NULL;
- }
- 
- static void VoutDisplayEventKey(vout_display_t *vd, int key)

++++++ fix_font_path.patch ++++++
--- /var/tmp/diff_new_pack.EeliDc/_old  2013-10-24 14:15:15.000000000 +0200
+++ /var/tmp/diff_new_pack.EeliDc/_new  2013-10-24 14:15:15.000000000 +0200
@@ -1,13 +1,16 @@
-diff --git a/modules/text_renderer/freetype.c 
b/modules/text_renderer/freetype.c
-index fcfe9a8..dfea2e7 100644
---- a/modules/text_renderer/freetype.c
-+++ b/modules/text_renderer/freetype.c
-@@ -52,7 +52,7 @@
- # define DEFAULT_FONT_FILE "/usr/share/fonts/nokia/nosnb.ttf"
- # define DEFAULT_FAMILY "Nokia Sans Bold"
+Index: vlc-2.1.0/modules/text_renderer/freetype.c
+===================================================================
+--- vlc-2.1.0.orig/modules/text_renderer/freetype.c
++++ vlc-2.1.0/modules/text_renderer/freetype.c
+@@ -67,9 +67,9 @@
+ # define SYSTEM_DEFAULT_MONOSPACE_FONT_FILE "/system/fonts/DroidSansMono.ttf"
+ # define SYSTEM_DEFAULT_MONOSPACE_FAMILY "Droid Sans Mono"
  #else
--# define DEFAULT_FONT_FILE 
"/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf"
-+# define DEFAULT_FONT_FILE "/usr/share/fonts/truetype/FreeSerifBold.ttf"
- # define DEFAULT_FAMILY "Serif Bold"
+-# define SYSTEM_DEFAULT_FONT_FILE 
"/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf"
++# define SYSTEM_DEFAULT_FONT_FILE 
"/usr/share/fonts/truetype/FreeSerifBold.ttf"
+ # define SYSTEM_DEFAULT_FAMILY "Serif Bold"
+-# define SYSTEM_DEFAULT_MONOSPACE_FONT_FILE 
"/usr/share/fonts/truetype/freefont/FreeMono.ttf"
++# define SYSTEM_DEFAULT_MONOSPACE_FONT_FILE 
"/usr/share/fonts/truetype/FreeMono.ttf"
+ # define SYSTEM_DEFAULT_MONOSPACE_FAMILY "Monospace"
  #endif
  

++++++ vlc-2.0.8a.tar.xz -> vlc-2.1.0.tar.xz ++++++
/work/SRC/openSUSE:13.1/vlc/vlc-2.0.8a.tar.xz 
/work/SRC/openSUSE:13.1/.vlc.new/vlc-2.1.0.tar.xz differ: char 26, line 1

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

Reply via email to