Hello community, here is the log from the commit of package unifdef for openSUSE:Factory checked in at 2013-04-02 20:44:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/unifdef (Old) and /work/SRC/openSUSE:Factory/.unifdef.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "unifdef", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/unifdef/unifdef.changes 2012-01-26 14:08:50.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.unifdef.new/unifdef.changes 2013-04-02 20:44:41.000000000 +0200 @@ -1,0 +2,11 @@ +Tue Apr 2 09:47:34 UTC 2013 - [email protected] + +- update to 2.7: + * process multiple files with one invocation + * include filenames on #line directives when appropriate. + * experimental support for Windows, feedback from Windows + developers is welcome + * various bug fixes +- add unifdef-2.7-tests-fix-multimissing.sh.patch + +------------------------------------------------------------------- Old: ---- unifdef-2.6.tar.gz New: ---- unifdef-2.7-tests-fix-multimissing.sh.patch unifdef-2.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ unifdef.spec ++++++ --- /var/tmp/diff_new_pack.Eibre1/_old 2013-04-02 20:44:42.000000000 +0200 +++ /var/tmp/diff_new_pack.Eibre1/_new 2013-04-02 20:44:42.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package unifdef # -# 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 @@ -16,15 +16,16 @@ # - Name: unifdef Summary: Removes ifdefs from C files License: BSD-2-Clause Group: Development/Libraries/C and C++ -Version: 2.6 +Version: 2.7 Release: 0 Url: http://dotat.at/prog/unifdef/ -Source: %{name}-%{version}.tar.gz +Source: http://dotat.at/prog/unifdef/unifdef-%{version}.tar.gz +# sent upstream +Patch1: unifdef-2.7-tests-fix-multimissing.sh.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -38,6 +39,7 @@ %prep %setup -q +%patch1 -p1 sed -i Makefile \ -e 's,^\(prefix\).*=.*,\1 =\t%{_prefix},' \ -e 's,^\(bindir\).*=.*,\1 =\t%{_bindir},' \ ++++++ unifdef-2.7-tests-fix-multimissing.sh.patch ++++++ >From 260a66eb9cc1f14ec61a20ca20a0ac1239f512b3 Mon Sep 17 00:00:00 2001 From: Ruediger Meier <[email protected]> Date: Tue, 2 Apr 2013 13:20:37 +0200 Subject: [PATCH 1/2] tests, fix multimissing.sh Don't rely on mv's platform dependent error message. Failed on any openSUSE system (at least between 11.4 and 12.3) Signed-off-by: Ruediger Meier <[email protected]> --- tests/multimissing.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/multimissing.sh b/tests/multimissing.sh index e082c71..a95b255 100644 --- a/tests/multimissing.sh +++ b/tests/multimissing.sh @@ -3,5 +3,5 @@ e=$? diff -u if1.c~ if1.c | sed 's/ 20.*//' diff -u if2.c~ if2.c | sed 's/ 20.*//' mv if1.c~ if1.c -mv if2.c~ if2.c +test -e if2.c~ || echo "mv: if2.c~: No such file or directory" >&2 exit $e -- 1.7.6.1 ++++++ unifdef-2.6.tar.gz -> unifdef-2.7.tar.gz ++++++ ++++ 3503 lines of diff (skipped) -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
