diff -Nru slxfig-0.2.0~.134/changes.txt slxfig-0.2.0~.135/changes.txt --- slxfig-0.2.0~.134/changes.txt 2021-11-21 08:55:03.000000000 +0000 +++ slxfig-0.2.0~.135/changes.txt 2021-12-20 08:55:03.000000000 +0000 @@ -290,3 +290,4 @@ date (YYYY-MM-DD) labels. 134. Updated aclocal.m4; added support for CPPFLAGS (based upon patch from Rafael Laboissière) +135. Updated the README file diff -Nru slxfig-0.2.0~.134/debian/changelog slxfig-0.2.0~.135/debian/changelog --- slxfig-0.2.0~.134/debian/changelog 2021-11-25 15:44:34.000000000 +0000 +++ slxfig-0.2.0~.135/debian/changelog 2021-12-22 06:35:45.000000000 +0000 @@ -1,3 +1,9 @@ +slxfig (0.2.0~.135-1) unstable; urgency=medium + + * New upstream version 0.2.0~.135 + + -- Rafael Laboissière Wed, 22 Dec 2021 03:35:45 -0300 + slxfig (0.2.0~.134-2) unstable; urgency=medium * d/p/honor-cppflags-ldflags.patch: Drop patch (applied upstream) diff -Nru slxfig-0.2.0~.134/README slxfig-0.2.0~.135/README --- slxfig-0.2.0~.134/README 2010-01-20 14:45:55.000000000 +0000 +++ slxfig-0.2.0~.135/README 2021-12-20 08:55:03.000000000 +0000 @@ -1,10 +1,13 @@ -slxfig is a package that implements a number of slang routines that -interface with fig2dev and LaTeX to produce drawings. Examples -include publication quality plots, etc. +slxfig is a package that implements a number of S-Lang interpreter +routines that interface with fig2dev and LaTeX to produce publication +quality plots and drawings. INSTALLATION: Read the INSTALL file. -DOCUMENTATION: Currently, there is very little documentation. -Eventually it will be in the doc/ directory. +The examples/ subdirectory contains a number of scripts that +illustrate many of slxfig's features. -See examples/slxfigrc for an example setup file. +See +for an impressive list of examples. + +Visit for more information. diff -Nru slxfig-0.2.0~.134/src/xfig.sl slxfig-0.2.0~.135/src/xfig.sl --- slxfig-0.2.0~.134/src/xfig.sl 2021-11-21 08:55:03.000000000 +0000 +++ slxfig-0.2.0~.135/src/xfig.sl 2021-12-20 08:55:03.000000000 +0000 @@ -1,6 +1,6 @@ $1 = 0; $2 = 2; $3 = 0; variable _xfig_version = $1*10000 + $2*100 + $3; -variable _xfig_version_string = "pre$1.$2.$3-134"$; +variable _xfig_version_string = "pre$1.$2.$3-135"$; ()=evalfile ("xfig/core"); ()=evalfile ("xfig/polyline");