Hello community,

here is the log from the commit of package libsmi for openSUSE:Factory checked 
in at 2015-01-21 21:53:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libsmi (Old)
 and      /work/SRC/openSUSE:Factory/.libsmi.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libsmi"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libsmi/libsmi.changes    2013-04-16 
06:46:03.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.libsmi.new/libsmi.changes       2015-01-21 
21:53:24.000000000 +0100
@@ -1,0 +2,5 @@
+Tue Jan 20 14:17:06 UTC 2015 - dims...@opensuse.org
+
+- Add libsmi-bison-3.0.patch: Fix build with bison 3.0.
+
+-------------------------------------------------------------------

New:
----
  libsmi-bison-3.0.patch

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

Other differences:
------------------
++++++ libsmi.spec ++++++
--- /var/tmp/diff_new_pack.03PJUI/_old  2015-01-21 21:53:25.000000000 +0100
+++ /var/tmp/diff_new_pack.03PJUI/_new  2015-01-21 21:53:25.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libsmi
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -28,6 +28,7 @@
 Patch1:         libsmi-0.4.8-gnu-source.patch
 Patch2:         libsmi-CVE-2010-2891.patch
 Patch3:         libsmi-flex.patch
+Patch4:         libsmi-bison-3.0.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  bison
 BuildRequires:  flex
@@ -80,6 +81,7 @@
 %if 0%{?suse_version} > 1220
 %patch3 -p1
 %endif
+%patch4 -p1
 
 %build
 autoreconf --force --install

++++++ libsmi-bison-3.0.patch ++++++
Description: follow flex parameter specification change
 Follow change from *_PARAM to %*-param after deprecation in flex.
 Follow yyerror() parameterisation changes.
Author: Andy Whitcroft <a...@canonical.com>

Index: libsmi-0.4.8/lib/parser-smi.y
===================================================================
--- libsmi-0.4.8.orig/lib/parser-smi.y
+++ libsmi-0.4.8/lib/parser-smi.y
@@ -11,6 +11,9 @@
  * @(#) $Id: parser-smi.y 8090 2008-04-18 12:56:29Z strauss $
  */
 
+%parse-param { struct Parser *parserPtr }
+%lex-param { struct Parser *parserPtr }
+
 %{
 
 #include <config.h>
@@ -43,14 +46,6 @@
 
 
 
-/*
- * These arguments are passed to yyparse() and yylex().
- */
-#define YYPARSE_PARAM parserPtr
-#define YYLEX_PARAM   parserPtr
-
-    
-    
 #define thisParserPtr      ((Parser *)parserPtr)
 #define thisModulePtr     (((Parser *)parserPtr)->modulePtr)
 
Index: libsmi-0.4.8/lib/parser-sming.y
===================================================================
--- libsmi-0.4.8.orig/lib/parser-sming.y
+++ libsmi-0.4.8/lib/parser-sming.y
@@ -11,6 +11,9 @@
  * @(#) $Id: parser-sming.y 7966 2008-03-27 21:25:52Z schoenw $
  */
 
+%parse-param { struct Parser *parserPtr }
+%lex-param { struct Parser *parserPtr }
+
 %{
 
 #include <config.h>
@@ -48,13 +51,6 @@
 #endif
 
 
-/*
- * These arguments are passed to yyparse() and yylex().
- */
-#define YYPARSE_PARAM parserPtr
-#define YYLEX_PARAM   parserPtr
-
-    
     
 #define thisParserPtr      ((Parser *)parserPtr)
 #define thisModulePtr     (((Parser *)parserPtr)->modulePtr)
@@ -1556,7 +1552,7 @@ identityStatement:        identityKeyword sep l
                        referenceStatement_stmtsep_01
                        {
                                setIdentityReference(identityPtr, $14, 
-                                                                        
thisParserPtr)
+                                                                        
thisParserPtr);
                        }
                        '}' optsep ';'
                        {
Index: libsmi-0.4.8/lib/error.h
===================================================================
--- libsmi-0.4.8.orig/lib/error.h
+++ libsmi-0.4.8/lib/error.h
@@ -22,7 +22,7 @@
 #ifdef yyerror
 #undef yyerror
 #endif
-#define yyerror(msg)   smiyyerror(msg, parserPtr)
+#define yyerror(parserPtr, msg)        smiyyerror(msg, parserPtr)
 
 
 extern int smiErrorLevel;      /* Higher levels produce more warnings */
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to