Hello community, here is the log from the commit of package imake for openSUSE:Factory checked in at 2014-05-26 10:27:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/imake (Old) and /work/SRC/openSUSE:Factory/.imake.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "imake" Changes: -------- --- /work/SRC/openSUSE:Factory/imake/imake.changes 2013-08-16 13:13:59.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.imake.new/imake.changes 2014-05-26 10:27:36.000000000 +0200 @@ -1,0 +2,7 @@ +Thu May 22 16:18:36 UTC 2014 - [email protected] + +- Update to version 1.0.7: + This release fixes generation of the ccmakedep, mergelib and + xmkmf scripts when using GNU cpp >= 4.8. + +------------------------------------------------------------------- Old: ---- imake-1.0.6.tar.bz2 New: ---- imake-1.0.7.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ imake.spec ++++++ --- /var/tmp/diff_new_pack.IpyFt8/_old 2014-05-26 10:27:37.000000000 +0200 +++ /var/tmp/diff_new_pack.IpyFt8/_new 2014-05-26 10:27:37.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package imake # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2014 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 @@ -17,13 +17,14 @@ Name: imake -Version: 1.0.6 +Version: 1.0.7 Release: 0 Summary: C preprocessor interface to the make utility License: MIT Group: Development/Tools/Building Url: http://xorg.freedesktop.org/ Source0: http://xorg.freedesktop.org/releases/individual/util/%{name}-%{version}.tar.bz2 +BuildRequires: gcc-c++ BuildRequires: pkg-config BuildRequires: pkgconfig(xorg-macros) >= 1.8 BuildRequires: pkgconfig(xproto) ++++++ imake-1.0.6.tar.bz2 -> imake-1.0.7.tar.bz2 ++++++ ++++ 8085 lines of diff (skipped) ++++ retrying with extended exclude list diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/imake-1.0.6/ChangeLog new/imake-1.0.7/ChangeLog --- old/imake-1.0.6/ChangeLog 2013-07-23 06:53:29.000000000 +0200 +++ new/imake-1.0.7/ChangeLog 2014-05-21 20:55:10.000000000 +0200 @@ -1,3 +1,37 @@ +commit 4063190bf2fd7e3c61b80e98d72e134609612bf8 +Author: Julien Cristau <[email protected]> +Date: Wed May 21 20:51:03 2014 +0200 + + Bump to 1.0.7 + + Signed-off-by: Julien Cristau <[email protected]> + +commit 16e54de5d8c58a1d051a5f4bcb7357aa9f9facff +Author: Greg Turner <[email protected]> +Date: Mon Mar 24 20:37:15 2014 +0100 + + Pass files to cpp via CLI arg instead of stdin to workaround gcc 4.8 change + + Replicates Alan Coopersmith's fix for xinit. + + Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=74031 + + Signed-off-by: Julien Cristau <[email protected]> + +commit f231ed52c4adeb071de0553af7a575687a6d3dc5 +Author: Julien Cristau <[email protected]> +Date: Sat Aug 17 12:12:08 2013 +0200 + + Replace fprintf with fputs + + Fix build failure with -Werror=format-security: + imake.c:1008:5: error: format not a string literal and no format arguments [-Werror=format-security] + fprintf (inFile, command); + ^ + + Signed-off-by: Julien Cristau <[email protected]> + Reviewed-by: Alan Coopersmith <[email protected]> + commit 89494a51d006c20d16d3f08225a0345fecaae546 Author: Alan Coopersmith <[email protected]> Date: Mon Jul 22 21:52:56 2013 -0700 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/imake-1.0.6/Makefile.am new/imake-1.0.7/Makefile.am --- old/imake-1.0.6/Makefile.am 2013-07-23 06:53:04.000000000 +0200 +++ new/imake-1.0.7/Makefile.am 2014-03-24 20:45:59.000000000 +0100 @@ -76,13 +76,13 @@ $(MKHTMLINDEX) xmkmf: xmkmf.cpp - $(AM_V_GEN)$(RAWCPP) $(RAWCPPFLAGS) -DCONFIGDIRSPEC='"-I$(XCONFDIR)"' < $(srcdir)/xmkmf.cpp | $(SED) -e /^\#/d | $(SED) -e s/XCOMM/\#/ > $@ + $(AM_V_GEN)$(RAWCPP) $(RAWCPPFLAGS) -DCONFIGDIRSPEC='"-I$(XCONFDIR)"' $(srcdir)/xmkmf.cpp | $(SED) -e /^\#/d | $(SED) -e s/XCOMM/\#/ > $@ ccmakedep: mdepend.cpp - $(AM_V_GEN)$(RAWCPP) $(RAWCPPFLAGS) -DPREPROC='"$(PREPROCESSCMD_MKDEPEND)"' < $(srcdir)/mdepend.cpp | $(SED) -e /^\#/d | $(SED) -e s/XCOMM/\#/ > $@ + $(AM_V_GEN)$(RAWCPP) $(RAWCPPFLAGS) -DPREPROC='"$(PREPROCESSCMD_MKDEPEND)"' $(srcdir)/mdepend.cpp | $(SED) -e /^\#/d | $(SED) -e s/XCOMM/\#/ > $@ mergelib: mergelib.cpp - $(AM_V_GEN)$(RAWCPP) $(RAWCPPFLAGS) -DARCMD="$(ARCMD)" -DRANLIB="$(RANLIB)" < $(srcdir)/mergelib.cpp | $(SED) -e /^\#/d | $(SED) -e s/XCOMM/\#/ > $@ + $(AM_V_GEN)$(RAWCPP) $(RAWCPPFLAGS) -DARCMD="$(ARCMD)" -DRANLIB="$(RANLIB)" $(srcdir)/mergelib.cpp | $(SED) -e /^\#/d | $(SED) -e s/XCOMM/\#/ > $@ if HAS_PERL MKHTMLINDEX_SCRIPT = $(srcdir)/mkhtmlindex.pl diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/imake-1.0.6/configure.ac new/imake-1.0.7/configure.ac --- old/imake-1.0.6/configure.ac 2013-07-23 06:53:04.000000000 +0200 +++ new/imake-1.0.7/configure.ac 2014-05-21 20:50:48.000000000 +0200 @@ -1,4 +1,3 @@ - dnl Copyright 2005 Red Hat, Inc. dnl dnl Permission to use, copy, modify, distribute, and sell this software and its @@ -23,7 +22,7 @@ # Initialize Autoconf AC_PREREQ([2.60]) -AC_INIT([imake], [1.0.6], +AC_INIT([imake], [1.0.7], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [imake]) AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_HEADERS([config.h]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/imake-1.0.6/imake.c new/imake-1.0.7/imake.c --- old/imake-1.0.6/imake.c 2013-07-23 06:53:04.000000000 +0200 +++ new/imake-1.0.7/imake.c 2013-08-17 12:11:50.000000000 +0200 @@ -1005,7 +1005,7 @@ abort (); while (fgets (command, len, fp)) - fprintf (inFile, command); + fputs (command, inFile); len = pclose (fp); remove (aout); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/imake-1.0.6/missing new/imake-1.0.7/missing --- old/imake-1.0.6/missing 2013-07-23 06:53:10.000000000 +0200 +++ new/imake-1.0.7/missing 2014-05-21 20:52:02.000000000 +0200 @@ -1,7 +1,7 @@ #! /bin/sh # Common wrapper for a few potentially missing GNU programs. -scriptversion=2012-06-26.16; # UTC +scriptversion=2013-10-28.13; # UTC # Copyright (C) 1996-2013 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard <[email protected]>, 1996. @@ -160,7 +160,7 @@ ;; autom4te*) echo "You might have modified some maintainer files that require" - echo "the 'automa4te' program to be rebuilt." + echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
