Hello community,

here is the log from the commit of package dpic for openSUSE:Factory
checked in at Mon Sep 26 10:03:57 CEST 2011.



--------
--- dpic/dpic.changes   2011-09-18 19:34:17.000000000 +0200
+++ /mounts/work_src_done/STABLE/dpic/dpic.changes      2011-09-23 
20:03:10.000000000 +0200
@@ -0,0 +1,4 @@
+Fri Sep 23 18:01:34 UTC 2011 - [email protected]
+
+- update to version 2011.07.11
+

calling whatdependson for head-i586


Old:
----
  dpic-2011.06.05.tar.gz

New:
----
  dpic-2011.07.11.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ dpic.spec ++++++
--- /var/tmp/diff_new_pack.70zCut/_old  2011-09-26 10:03:52.000000000 +0200
+++ /var/tmp/diff_new_pack.70zCut/_new  2011-09-26 10:03:52.000000000 +0200
@@ -22,7 +22,7 @@
 License:        BSD
 Group:          Productivity/Publishing/Other
 Summary:        Pic language processor
-Version:        2011.06.05
+Version:        2011.07.11
 Release:        1
 Source0:        %name-%{version}.tar.gz
 Patch0:         makefile.patch

++++++ dpic-2011.06.05.tar.gz -> dpic-2011.07.11.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dpic/doc/quick.pic new/dpic/doc/quick.pic
--- old/dpic/doc/quick.pic      2011-06-05 23:34:54.000000000 +0200
+++ new/dpic/doc/quick.pic      2011-07-12 02:15:50.000000000 +0200
@@ -1,6 +1,6 @@
 .PS                            # Pic input begins with .PS
-# cct_init Version 6.94: PSTricks m4 macro settings used.
-# gen_init Version 6.94: PSTricks m4 macro settings used.
+# cct_init Version 7.0: PSTricks m4 macro settings used.
+# gen_init Version 7.0: PSTricks m4 macro settings used.
 
   define rpoint__ {
     rp_wid = last line.end.x-last line.start.x
@@ -17,15 +17,7 @@
   linethick = 0.8
   arrowwid = 0.05*scale; arrowht = 0.1*scale
   command "\psset{linewidth=0.8pt}%";
-  command "\makeatletter\@ifundefined{ifPst@noCurrentPoint}%
-{\@ifundefined{MPS@Patch}{\gdef\MPS@Patch{}%
- \typeout{ Dpic -p: patching psbezier in pstricks.tex (some versions) }%
- \def\psbezier@ii{\addto@pscode{%
-  \ifshowpoints true \else false \fi\tx@OpenBezier%
-  \ifshowpoints\tx@BezierShowPoints\fi}\end@OpenObj}}{}}%
-{\@ifundefined{MPS@PatchMsg}{\gdef\MPS@PatchMsg{}%
- \typeout{ Dpic -p: Setting noCurrentPoint to use all coord pairs }}{}%
- \psset{noCurrentPoint}}\makeatother%"
+  command "\psset{noCurrentPoint}"
   
 # gen_init end
  \psset{arrowsize=1.1pt 4,arrowlength=1.64,arrowinset=0}%
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dpic/dpic.c new/dpic/dpic.c
--- old/dpic/dpic.c     2011-06-05 23:34:54.000000000 +0200
+++ new/dpic/dpic.c     2011-07-12 02:15:50.000000000 +0200
@@ -57,7 +57,7 @@
 /* Some PC versions of p2c crash on Pascal const declarations at low levels.
    All consts should be in dp0.x */
 
-#define Version         "dpic version 2011.06.05"
+#define Version         "dpic version 2011.07.11"
 
 /* UMBX distmax = 1E25; XBMU */
 
@@ -1382,6 +1382,9 @@
   /* produce(0, 0); */
   /*D if debuglevel > 0 then writeln(log,'stackhigh=',stackhigh:1);D*/
   /* D writeln("stackhigh=",stackhigh:1); D */
+  /* Seems needed for some Cygwin machines: */
+  /*H flush(stderr);
+  flush(stdout) H*/
 }
 
 
@@ -2065,7 +2068,7 @@
       markerror(852);
     else {
       *x = (long)floor(*x + 0.5) % (long)floor(y + 0.5);
-/* p2c: dpic.p, line 1021:
+/* p2c: dpic.p, line 1024:
  * Note: Using % for possibly-negative arguments [317] */
     }
     break;
@@ -2300,7 +2303,7 @@
   if (length > 2)
     idx += chb[chbufx + length - 2];
   return (idx % (HASHLIM + 1));
-/* p2c: dpic.p, line 1151:
+/* p2c: dpic.p, line 1154:
  * Note: Using % for possibly-negative arguments [317] */
 }
 
@@ -3786,7 +3789,7 @@
     i = -i;
   do {
     buf[*inx + j] = i % 10 + '0';
-/* p2c: dpic.p, line 1988:
+/* p2c: dpic.p, line 1991:
  * Note: Using % for possibly-negative arguments [317] */
     j--;
     i /= 10;
@@ -4163,7 +4166,7 @@
     } else {
       WITH->xval = (long)floor(WITH->xval + 0.5) %
                   (long)floor(attstack[newp + 2].xval + 0.5);
-/* p2c: dpic.p, line 2246:
+/* p2c: dpic.p, line 2249:
  * Note: Using % for possibly-negative arguments [317] */
     }
     break;
@@ -7455,7 +7458,7 @@
     case XLpmod:
       j = labs((long)floor(attstack[newp + 4].xval + 0.5));
       i = (long)floor(attstack[newp + 2].xval + 0.5) % j;
-/* p2c: dpic.p, line 4220:
+/* p2c: dpic.p, line 4223:
  * Note: Using % for possibly-negative arguments [317] */
       if (i >= 0)
        WITH->xval = i;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dpic/dpic2.c new/dpic/dpic2.c
--- old/dpic/dpic2.c    2011-06-05 23:34:54.000000000 +0200
+++ new/dpic/dpic2.c    2011-07-12 02:15:50.000000000 +0200
@@ -17,7 +17,7 @@
 #include <time.h>
 
 
-#define Version         "dpic version 2011.06.05"
+#define Version         "dpic version 2011.07.11"
 
 /* UMBX distmax = 1E25; XBMU */
 
@@ -5805,8 +5805,7 @@
   }
   if (ss == NULL)
     return;
-  printf(" gsave\n");
-  printf(" currentrgbcolor ");
+  printf(" gsave\n");   /* write(' currentrgbcolor '); */
   wstring(&output, ss);
   printf(" setrgbcolor fill grestore\n");
 }


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to