Hello community,

here is the log from the commit of package libstroke for openSUSE:Factory 
checked in at 2013-02-05 11:17:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libstroke (Old)
 and      /work/SRC/openSUSE:Factory/.libstroke.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libstroke", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libstroke/libstroke.changes      2011-11-25 
23:04:47.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.libstroke.new/libstroke.changes 2013-02-05 
11:17:39.000000000 +0100
@@ -1,0 +2,7 @@
+Mon Jan  7 12:54:00 CET 2013 - [email protected]
+
+- Properly quote the arguments to AC_DEFUN to shut up automake
+  (bnc#794807), add libstroke-quote_m4_definitions.patch to fix
+- Clean up the spec file.
+
+-------------------------------------------------------------------

New:
----
  libstroke-quote_m4_definitions.patch

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

Other differences:
------------------
++++++ libstroke.spec ++++++
--- /var/tmp/diff_new_pack.Demr24/_old  2013-02-05 11:17:40.000000000 +0100
+++ /var/tmp/diff_new_pack.Demr24/_new  2013-02-05 11:17:40.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libstroke
 #
-# Copyright (c) 2011 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
@@ -15,55 +15,46 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:           libstroke
-BuildRequires:  libtool xorg-x11 xorg-x11-devel
-License:        GPL-2.0+
-Group:          System/Libraries
+BuildRequires:  libtool
+BuildRequires:  xorg-x11
+BuildRequires:  xorg-x11-devel
 Version:        0.5.1
-Release:        208
+Release:        0
 Url:            http://www.etla.net/libstroke/
 Source0:        http://www.etla.net/libstroke/libstroke-%{version}.tar.bz2
 Patch:          libstroke-0.4.dif
 Patch1:         no-gtk1.patch
 Patch2:         fix-implicit-declarations.patch
+# PATCH-FIX-UPSTREAM Fix quoting of AC_DEFUN args (bnc#794807) (2013-01-07)
+Patch3:         libstroke-quote_m4_definitions.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Summary:        A Stroke Translation Library
+License:        GPL-2.0+
+Group:          System/Libraries
 
 %description
 LibStroke is a stroke interface library.  Strokes are motions of the
 mouse that can be interpreted by a program as a command.  Strokes are
 used extensively in CAD programs.
 
-
-
-Authors:
---------
-    Mark Willey  <[email protected]>
-
 %package      -n libstroke-devel
-License:        GPL-2.0+
 Summary:        Development package for libstroke
 Group:          Development/Libraries/C and C++
-Requires:       %{name} = %{version} xorg-x11-libX11-devel
+Requires:       %{name} = %{version}
+Requires:       xorg-x11-libX11-devel
 
 %description  -n libstroke-devel
 This package is needed if you want to program or compile applications
 that use libstroke.
 
-
-
-Authors:
---------
-    Mark Willey  <[email protected]>
-
 %prep
 %setup0 -q
 %patch
 %patch1 -p1
 %patch2 -p1
+%patch3
 
 %build
 rm -f config.cache
@@ -73,12 +64,9 @@
 %{__make} %{?jobs:-j%jobs}
 
 %install
-make DESTDIR=$RPM_BUILD_ROOT install
+%make_install
 rm -f %{buildroot}%{_libdir}/*.la
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig

++++++ libstroke-quote_m4_definitions.patch ++++++
From: Philipp Thomas <[email protected]>
Date: 2013-01-07 12:50:41+01:00
Subject: Fix quoting of function definitions
References: bnc#794807

Newer automakes warn if the arguments to AC_DEFUN aren't quoted properly.

---
 libstroke.m4 |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Index: libstroke.m4
===================================================================
--- libstroke.m4.orig   2001-07-05 14:44:54.000000000 +0200
+++ libstroke.m4        2013-01-07 12:49:22.644977581 +0100
@@ -26,7 +26,7 @@ dnl libname             (optional) actua
 dnl                     if different from name
 dnl description         (optional) used to construct help string
 dnl
-AC_DEFUN(smr_ARG_WITHLIB, [
+AC_DEFUN([smr_ARG_WITHLIB], [
 
 ifelse($2, , smr_lib=[$1], smr_lib=[$2])
 
@@ -74,7 +74,7 @@ dnl header              a header file re
 dnl extra-flags         (optional) flags required when compiling the
 dnl                     header, typically more includes; for ex. X_CFLAGS
 dnl
-AC_DEFUN(smr_ARG_WITHINCLUDES, [
+AC_DEFUN([smr_ARG_WITHINCLUDES], [
 
 AC_ARG_WITH([$1]-includes,
 [  --with-$1-includes=DIR  set directory for $1 headers],
@@ -116,7 +116,7 @@ dnl header      (optional) header requir
 dnl x-libs      (optional) extra libraries, if needed to link with lib
 dnl x-flags     (optional) extra flags, if needed to include header files
 dnl
-AC_DEFUN(smr_CHECK_LIB,
+AC_DEFUN([smr_CHECK_LIB],
 [
 ifelse($2, , smr_lib=[$1], smr_lib=[$2])
 ifelse($5, , , smr_header=[$5])
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to