Hello community, here is the log from the commit of package transfig for openSUSE:Factory checked in at 2013-12-11 16:24:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/transfig (Old) and /work/SRC/openSUSE:Factory/.transfig.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "transfig" Changes: -------- --- /work/SRC/openSUSE:Factory/transfig/transfig.changes 2013-04-09 10:27:56.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.transfig.new/transfig.changes 2013-12-11 16:24:21.000000000 +0100 @@ -1,0 +2,16 @@ +Tue Dec 10 14:50:19 UTC 2013 - [email protected] + +- Update to transfig version 3.2.5e + * HTML map output was limited to 100 links. + Fix by Jan van Dijk + * Updated for compatibility to PNG 1.5 + From Matthias Scheler + * Was adding "showpage" command when producing bitmap formats from intermediate EPS. + This produced "illegal" PNG and JPEG files with extra, blank image. + * Maximum width of included image in PS/EPS output increased from 8192 to 16384 + * Precision of some PIC objects increased from %.2f to %.3f + * Double close of output file when ghostscript fails. Original bug report from + https://bugzilla.redhat.com/728825 +- Change out patch sets to fit 3.2.5e + +------------------------------------------------------------------- Old: ---- transfig.3.2.5d.tar.gz New: ---- transfig.3.2.5e.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ transfig.spec ++++++ --- /var/tmp/diff_new_pack.aGModg/_old 2013-12-11 16:24:22.000000000 +0100 +++ /var/tmp/diff_new_pack.aGModg/_new 2013-12-11 16:24:22.000000000 +0100 @@ -42,13 +42,13 @@ Requires: ghostscript-fonts-std Requires: ghostscript-library Requires: netpbm -Version: 3.2.5d +Version: 3.2.5e Release: 0 Summary: Graphic Converter License: MIT Group: Productivity/Graphics/Convertors Source: http://sourceforge.net/projects/mcj/files/mcj-source/transfig.%{version}.tar.gz -Source1: transfig.%{version}-patches.tar.bz2 +Source1: transfig.3.2.5d-patches.tar.bz2 Patch0: transfig.3.2.5d.dif Patch2: transfig.3.2.5-binderman.dif Patch3: transfig.3.2.5d-mediaboxrealnb.dif ++++++ transfig.3.2.5d-patches.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/23_MAXWIDTH.patch new/patches/23_MAXWIDTH.patch --- old/patches/23_MAXWIDTH.patch 2011-12-28 17:14:38.000000000 +0100 +++ new/patches/23_MAXWIDTH.patch 1970-01-01 01:00:00.000000000 +0100 @@ -1,16 +0,0 @@ -Author: Roland Rosenfeld <[email protected]> -Description: Increasese MAXWIDTH of embedded images from 8K to 16K - (Closes: #610466) -Bug-Debian: http://bugs.debian.org/610466 - ---- a/fig2dev/dev/psencode.c -+++ b/fig2dev/dev/psencode.c -@@ -18,7 +18,7 @@ - - #include "fig2dev.h" - --#define MAXWIDTH 8192 -+#define MAXWIDTH 16384 - - #define put_string nc=strlen(s); for(i=0;i<nc;i++) (putc((s[i]),tfp)); Nbyte += nc - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/24_PIC_precision.patch new/patches/24_PIC_precision.patch --- old/patches/24_PIC_precision.patch 2011-12-28 17:14:38.000000000 +0100 +++ new/patches/24_PIC_precision.patch 1970-01-01 01:00:00.000000000 +0100 @@ -1,41 +0,0 @@ -Author: Roger Leigh <[email protected]> -Description: Change the precision of PIC floating point output from %.2f to - %.3f. (Closes: #611948) -Bug-Debian: http://bugs.debian.org/611948 - ---- a/fig2dev/dev/genpic.c -+++ b/fig2dev/dev/genpic.c -@@ -229,9 +229,9 @@ - - /* Should have a #define somewhere for the # of fill patterns */ - if (l->fill_style != UNFILLED) -- fprintf(tfp, " fill %.2f", ((double) l->fill_style ) / (double) BLACK_FILL); -+ fprintf(tfp, " fill %.3f", ((double) l->fill_style ) / (double) BLACK_FILL); - -- fprintf(tfp, " with .sw at (%.2f,%.2f) ", -+ fprintf(tfp, " with .sw at (%.3f,%.3f) ", - minx / ppi, convy(maxy / ppi)); - - width = (maxx - minx) / ppi; -@@ -239,10 +239,10 @@ - height = convy(maxy / ppi) - convy(miny / ppi); - if (height < 0.0) height = -height; - -- fprintf(tfp, "width %.2f height %.2f", width, height); -+ fprintf(tfp, "width %.3f height %.3f", width, height); - - if (OptArcBox && l->type == T_ARC_BOX) -- fprintf(tfp, " rad %.2f", l->radius/ppi); -+ fprintf(tfp, " rad %.3f", l->radius/ppi); - - AddThickness(); - -@@ -411,7 +411,7 @@ - 2 * e->radiuses.x/ppi, 2 * e->radiuses.y/ppi); - - if ( OptEllipseFill && e->fill_style != UNFILLED) -- fprintf(tfp, " fill %.2f", (double)e->fill_style / (double) BLACK_FILL); -+ fprintf(tfp, " fill %.3f", (double)e->fill_style / (double) BLACK_FILL); - - AddThickness(); - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/25_PIC_leadspace.patch new/patches/25_PIC_leadspace.patch --- old/patches/25_PIC_leadspace.patch 2011-12-28 17:14:38.000000000 +0100 +++ new/patches/25_PIC_leadspace.patch 1970-01-01 01:00:00.000000000 +0100 @@ -1,15 +0,0 @@ -Author: Roger Leigh <[email protected]> -Description: Avoid wrong leading spaces in PIC text (Closes: #611977). -Bug-Debian: http://bugs.debian.org/611977 - ---- a/fig2dev/dev/genpic.c -+++ b/fig2dev/dev/genpic.c -@@ -443,7 +443,7 @@ - size = PICFONTMAG(t); - if (!OptNoUnps) { - unpsfont(t); -- fprintf(tfp, "\"\\s%d\\f%s ", size, PICFONT(t->font)); -+ fprintf(tfp, "\"\\s%d\\f%s", size, PICFONT(t->font)); - } else { - fprintf(tfp, ".ps\n.ps %d\n", size ); - fprintf(tfp, ".ft\n.ft %s\n", PICPSFONT(t) ); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches/26_gs_fail_doubleclose.patch new/patches/26_gs_fail_doubleclose.patch --- old/patches/26_gs_fail_doubleclose.patch 2011-12-29 13:57:23.000000000 +0100 +++ new/patches/26_gs_fail_doubleclose.patch 1970-01-01 01:00:00.000000000 +0100 @@ -1,32 +0,0 @@ -From: Kamil Dudka <[email protected]> -Date: Mon, 8 Aug 2011 11:43:29 +0200 -Subject: [PATCH] transfig - rhbz #728825 -Bug-Redhat: https://bugzilla.redhat.com/show_bug.cgi?id=728825 - ---- a/fig2dev/dev/genpdf.c -+++ b/fig2dev/dev/genpdf.c -@@ -67,18 +67,21 @@ - int - genpdf_end() - { -+ int status; -+ - /* wrap up the postscript output */ - if (genps_end() != 0) - return -1; /* error, return now */ - -- if (pclose(tfp) != 0) { -+ status = pclose(tfp); -+ /* we've already closed the original output file */ -+ tfp = 0; -+ if (status != 0) { - fprintf(stderr,"Error in ghostcript command\n"); - fprintf(stderr,"command was: %s\n", gscom); - return -1; - } - (void) signal(SIGPIPE, SIG_DFL); -- /* we've already closed the original output file */ -- tfp = 0; - - /* all ok so far */ - ++++++ transfig.3.2.5d.tar.gz -> transfig.3.2.5e.tar.gz ++++++ ++++ 11896 lines of diff (skipped) -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
