Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package par_text for openSUSE:Factory checked in at 2022-07-05 12:09:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/par_text (Old) and /work/SRC/openSUSE:Factory/.par_text.new.1548 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "par_text" Tue Jul 5 12:09:35 2022 rev:3 rq:986720 version:1.53.0+git.1584347654.eb0590f Changes: -------- --- /work/SRC/openSUSE:Factory/par_text/par_text.changes 2022-06-29 16:02:38.068724631 +0200 +++ /work/SRC/openSUSE:Factory/.par_text.new.1548/par_text.changes 2022-07-05 12:10:11.208617624 +0200 @@ -1,0 +2,6 @@ +Mon Jul 4 18:11:38 UTC 2022 - Matej Cepl <mc...@suse.com> + +- Do not unset various variables when calling make (only CFLAGS + should be set). + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ par_text.spec ++++++ --- /var/tmp/diff_new_pack.YuZwsG/_old 2022-07-05 12:10:11.684618308 +0200 +++ /var/tmp/diff_new_pack.YuZwsG/_new 2022-07-05 12:10:11.688618313 +0200 @@ -57,7 +57,7 @@ %autosetup -p1 -n %{upname}-%{version} %build -make -f protoMakefile CC="cc -c" LINK1="cc" LINK2="-o" RM="rm" JUNK="" %{?_smp_mflags} CFLAGS="%{optflags}"$* +make -f protoMakefile %{?_smp_mflags} CFLAGS="%{optflags}" $* %install install -D -t %{buildroot}/%{_bindir} par ++++++ par-1.53-i18n.1.patch ++++++ --- /var/tmp/diff_new_pack.YuZwsG/_old 2022-07-05 12:10:11.732618376 +0200 +++ /var/tmp/diff_new_pack.YuZwsG/_new 2022-07-05 12:10:11.736618381 +0200 @@ -6,11 +6,11 @@ errmsg.c | 12 + errmsg.h | 12 + par.c | 444 ++++++++++++++++++++++++++++++---------------------------- - protoMakefile | 2 + protoMakefile | 8 - reformat.c | 168 +++++++++++++-------- reformat.h | 6 releasenotes | 16 ++ - 11 files changed, 419 insertions(+), 324 deletions(-) + 12 files changed, 423 insertions(+), 328 deletions(-) --- a/buffer.c +++ b/buffer.c @@ -1244,15 +1244,28 @@ return *errmsg ? EXIT_FAILURE : EXIT_SUCCESS; --- a/protoMakefile +++ b/protoMakefile -@@ -47,7 +47,7 @@ +@@ -45,9 +45,9 @@ + # Example (for Solaris 2.x with SPARCompiler C): + # CC = cc -c -O -s -Xc -DDONTFREE - CPPFLAGS = - CFLAGS = +-CPPFLAGS = +-CFLAGS = -CC = cc $(CPPFLAGS) $(CFLAGS) -c ++CPPFLAGS ?= ++CFLAGS ?= +CC = cc -std=c99 $(CPPFLAGS) $(CFLAGS) -c # Define LINK1 and LINK2 so that the command # +@@ -62,7 +62,7 @@ CC = cc $(CPPFLAGS) $(CFLAGS) -c + # LINK2 = -o + + LINK1 = cc +-LINK2 = -o ++LINK2 = $(CFLAGS) $(CPPFLAGS) -o + + # Define RM so that the command + # --- a/reformat.c +++ b/reformat.c @@ -3,6 +3,7 @@ reformat.c