commit gnuplot for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnuplot for openSUSE:Factory checked in at 2024-06-04 12:50:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnuplot (Old) and /work/SRC/openSUSE:Factory/.gnuplot.new.24587 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "gnuplot" Tue Jun 4 12:50:04 2024 rev:95 rq:1178241 version:6.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/gnuplot/gnuplot-doc.changes 2024-01-10 21:51:01.085398812 +0100 +++ /work/SRC/openSUSE:Factory/.gnuplot.new.24587/gnuplot-doc.changes 2024-06-04 12:50:11.893795420 +0200 @@ -1,0 +2,25 @@ +Mon Jun 3 06:04:48 UTC 2024 - Dr. Werner Fink <werner@suse.de> + +- Update to gnuplot 6.0.1 + * CHANGE Use of data source '-' inside a multiplot is an error; + use a local datablock instead + * CHANGE gd: scale "dot" (pointtype 0) by current linewidth Bug 2690 + * CHANGE modify configure script to accommodate Fedora dependencies Bug 2706 + * FIX empty field in csv file should not generate a tic label Bug 2667 2672 + * FIX Do not autoscale or extend axis ranges while zooming Bug 2679 2680 + * FIX x11: Empirical correction for bad rotation of enhanced text Bug 2661 + * FIX wxt: Add exception handler for mouse event processing Bug 2680 2683 + * FIX wxt: make right-mouse zoom box independent of terminal scaling Bug 2578 + * FIX regression: border color of objects with fillstyle "empty" Bug 2686 + * FIX "set colorbox border {<lt>}" parsing error + * FIX svg: set default fill properties for depth-sorted pm3d objects + * FIX gd x11: very short arrows were not drawn at all Bug 2690 + * FIX "stats ... name FOO" Do not delete existing variables FOO_* Bug 2695 + * FIX order-dependent parsing of 2D plots with "fs solid fc variable" + * FIX mp: configure --with-metapost failed to include mp terminal + * FIX qt wxt x11: "set term" from a script causes next pause to fail Bug 2703 + * FIX tikz: fix use of palettes with a fixed number of colors Bug 2706 +- Add patch gnuplot-doc2tex.patch + * Avoid SIGSEGV at the end of a string due to scanning with initial line lenght + +------------------------------------------------------------------- gnuplot.changes: same change Old: ---- gnuplot-6.0.0.tar.gz New: ---- gnuplot-6.0.1.tar.gz gnuplot-doc2tex.patch BETA DEBUG BEGIN: New:/work/SRC/openSUSE:Factory/.gnuplot.new.24587/gnuplot-doc.changes- * FIX tikz: fix use of palettes with a fixed number of colors Bug 2706 /work/SRC/openSUSE:Factory/.gnuplot.new.24587/gnuplot-doc.changes:- Add patch gnuplot-doc2tex.patch /work/SRC/openSUSE:Factory/.gnuplot.new.24587/gnuplot-doc.changes- * Avoid SIGSEGV at the end of a string due to scanning with initial line lenght -- /work/SRC/openSUSE:Factory/.gnuplot.new.24587/gnuplot.changes- * FIX tikz: fix use of palettes with a fixed number of colors Bug 2706 /work/SRC/openSUSE:Factory/.gnuplot.new.24587/gnuplot.changes:- Add patch gnuplot-doc2tex.patch /work/SRC/openSUSE:Factory/.gnuplot.new.24587/gnuplot.changes- * Avoid SIGSEGV at the end of a string due to scanning with initial line lenght BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnuplot.spec ++++++ --- /var/tmp/diff_new_pack.raJZUT/_old 2024-06-04 12:50:12.893831710 +0200 +++ /var/tmp/diff_new_pack.raJZUT/_new 2024-06-04 12:50:12.897831855 +0200 @@ -83,7 +83,7 @@ BuildRequires: tex(upquote.sty) %endif URL: https://www.gnuplot.info/ -Version: 6.0.0 +Version: 6.0.1 Release: 0 %global underscore 6 %if "%{flavor}" == "" @@ -108,6 +108,7 @@ Patch0: gnuplot-4.6.0.dif Patch1: gnuplot-4.4.0-x11ovf.dif Patch2: gnuplot-4.6.0-fonts.diff +Patch3: gnuplot-doc2tex.patch Patch4: gnuplot-4.6.0-demo.diff Patch5: gnuplot-wx3.diff Patch6: gnuplot-QtCore-PIC.dif @@ -140,6 +141,7 @@ test $? -eq 0 || exit 1 cp %{_sourcedir}/picins.sty docs %patch -P2 -p0 -b .font +%patch -P3 -p0 -b .overscan %patch -P4 -p0 -b .demo %patch -P0 -p1 -b .0 %patch -P1 -p0 -b .x11ovf ++++++ Gnuplot6.pdf ++++++ (binary differes) ++++++ gnuplot-6.0.0.tar.gz -> gnuplot-6.0.1.tar.gz ++++++ /work/SRC/openSUSE:Factory/gnuplot/gnuplot-6.0.0.tar.gz /work/SRC/openSUSE:Factory/.gnuplot.new.24587/gnuplot-6.0.1.tar.gz differ: char 29, line 1 ++++++ gnuplot-doc2tex.patch ++++++ Do not scan more characters we actual have. --- docs/doc2tex.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- docs/doc2tex.c +++ docs/doc2tex.c 2024-06-03 07:11:02.870049141 +0000 @@ -553,8 +553,9 @@ puttex( char *str, FILE *file) (void) fputs("}", file); inquote = FALSE; } else { + size_t lmax = strlen(str); (void) fputs("{\\bf ", file); - for (i=0; i<MAX_LINE_LEN && ((c=str[i]) != '`') ; i++){ + for (i=0; i<lmax && ((c=str[i]) != '`') ; i++){ string[i] = c; } string[i] = NUL;
participants (1)
-
Source-Sync