Hello community,

here is the log from the commit of package gstreamer-0_10 for openSUSE:Factory 
checked in at 2013-09-29 19:24:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gstreamer-0_10 (Old)
 and      /work/SRC/openSUSE:Factory/.gstreamer-0_10.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gstreamer-0_10"

Changes:
--------
--- /work/SRC/openSUSE:Factory/gstreamer-0_10/gstreamer-0_10.changes    
2012-12-14 07:49:55.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.gstreamer-0_10.new/gstreamer-0_10.changes       
2013-09-29 19:25:00.000000000 +0200
@@ -1,0 +2,5 @@
+Sun Sep 29 13:11:27 UTC 2013 - [email protected]
+
+- Add gstreamer-0_10-bison3.patch: Fix build with Bison 3.
+
+-------------------------------------------------------------------

New:
----
  gstreamer-0_10-bison3.patch

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

Other differences:
------------------
++++++ gstreamer-0_10-doc.spec ++++++
--- /var/tmp/diff_new_pack.CQ1y3i/_old  2013-09-29 19:25:01.000000000 +0200
+++ /var/tmp/diff_new_pack.CQ1y3i/_new  2013-09-29 19:25:01.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gstreamer-0_10-doc
 #
-# 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
@@ -36,6 +36,8 @@
 Patch1:         gstreamer-0_10-rpm-prov.patch
 # PATCH-FIX-UPSTREAM gstreamer-no-setlocale.patch bnc#779426 bgo#685650 
[email protected] -- Don't set the locale in gst_init().
 Patch2:         gstreamer-no-setlocale.patch
+# PATCH-FIX-UPSTREAM gstreamer-0_10-bison3.patch bgo#706462 
[email protected] -- Fix build with Bison 3
+Patch3:         gstreamer-0_10-bison3.patch
 BuildRequires:  bison
 BuildRequires:  check-devel
 BuildRequires:  fdupes
@@ -192,6 +194,7 @@
 %endif
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 gnome-patch-translation-update po gstreamer-0.10
 
 %build

++++++ gstreamer-0_10.spec ++++++
--- /var/tmp/diff_new_pack.CQ1y3i/_old  2013-09-29 19:25:01.000000000 +0200
+++ /var/tmp/diff_new_pack.CQ1y3i/_new  2013-09-29 19:25:01.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gstreamer-0_10
 #
-# 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
@@ -36,6 +36,8 @@
 Patch1:         gstreamer-0_10-rpm-prov.patch
 # PATCH-FIX-UPSTREAM gstreamer-no-setlocale.patch bnc#779426 bgo#685650 
[email protected] -- Don't set the locale in gst_init().
 Patch2:         gstreamer-no-setlocale.patch
+# PATCH-FIX-UPSTREAM gstreamer-0_10-bison3.patch bgo#706462 
[email protected] -- Fix build with Bison 3
+Patch3:         gstreamer-0_10-bison3.patch
 BuildRequires:  bison
 BuildRequires:  check-devel
 BuildRequires:  fdupes
@@ -192,6 +194,7 @@
 %endif
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 gnome-patch-translation-update po gstreamer-0.10
 
 %build

++++++ gstreamer-0_10-bison3.patch ++++++
>From 60516f4798894f958fc53b470e1283318d0f8706 Mon Sep 17 00:00:00 2001
From: Kerrick Staley <[email protected]>
Date: Wed, 21 Aug 2013 06:59:29 +0000
Subject: parse: make grammar.y work with Bison 3

YYLEX_PARAM is no longer supported in Bison 3.

https://bugzilla.gnome.org/show_bug.cgi?id=706462
---
diff --git a/gst/parse/grammar.y b/gst/parse/grammar.y
index 24fc87b..7f9dd16 100644
--- a/gst/parse/grammar.y
+++ b/gst/parse/grammar.y
@@ -26,7 +26,6 @@
  */
 
 #define YYERROR_VERBOSE 1
-#define YYLEX_PARAM scanner
 
 #define YYENABLE_NLS 0
 
@@ -648,6 +647,7 @@ static int yyerror (void *scanner, graph_t *graph, const 
char *s);
 %right '.'
 %left '!' '='
 
+%lex-param { void *scanner }
 %parse-param { void *scanner }
 %parse-param { graph_t *graph }
 %pure-parser
--
cgit v0.9.0.2-2-gbebe

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to