texlive[54235] Master: pst-fractal (11mar20)
commits+karl at tug.org
commits+karl at tug.org
Wed Mar 11 22:16:31 CET 2020
Revision: 54235
http://tug.org/svn/texlive?view=revision&revision=54235
Author: karl
Date: 2020-03-11 22:16:29 +0100 (Wed, 11 Mar 2020)
Log Message:
-----------
pst-fractal (11mar20)
Modified Paths:
--------------
trunk/Master/texmf-dist/doc/generic/pst-fractal/Changes
trunk/Master/texmf-dist/doc/generic/pst-fractal/README
trunk/Master/texmf-dist/doc/generic/pst-fractal/pst-fractal-doc.pdf
trunk/Master/texmf-dist/tex/generic/pst-fractal/pst-fractal.tex
trunk/Master/texmf-dist/tex/latex/pst-fractal/pst-fractal.sty
trunk/Master/tlpkg/libexec/ctan2tds
Added Paths:
-----------
trunk/Master/texmf-dist/doc/generic/pst-fractal/images/
trunk/Master/texmf-dist/doc/generic/pst-fractal/images/crop-eps.sh
trunk/Master/texmf-dist/source/generic/pst-fractal/
trunk/Master/texmf-dist/source/generic/pst-fractal/Makefile
Modified: trunk/Master/texmf-dist/doc/generic/pst-fractal/Changes
===================================================================
--- trunk/Master/texmf-dist/doc/generic/pst-fractal/Changes 2020-03-11 00:48:41 UTC (rev 54234)
+++ trunk/Master/texmf-dist/doc/generic/pst-fractal/Changes 2020-03-11 21:16:29 UTC (rev 54235)
@@ -8,6 +8,7 @@
pst-fractal.tex --------
+0.11 2020-03-10 - fixed trailing space in \pstKochflake
0.10 2018-11-10 - added Cantor set
0.09 2017-12-02 - added fibinacci curves
0.08 2017-11-26 - added sierpinski curve
Modified: trunk/Master/texmf-dist/doc/generic/pst-fractal/README
===================================================================
--- trunk/Master/texmf-dist/doc/generic/pst-fractal/README 2020-03-11 00:48:41 UTC (rev 54234)
+++ trunk/Master/texmf-dist/doc/generic/pst-fractal/README 2020-03-11 21:16:29 UTC (rev 54235)
@@ -1,13 +1,7 @@
pst-fractal: plotting fractals
-Save the files pst-fractal.sty|tex in a directory, which is part of your
-local TeX tree. The pro file should go into $TEXMF/dvips/pstricks/
-Then do not forget to run texhash to update this tree.
-For more information see the documentation of your LATEX distribution
-on installing packages into your local TeX system.
-
PSTricks is PostScript Tricks, the documentation cannot be run
-with pdftex, use the sequence latex->dvips->ps2pdf.
+with pdftex, use the sequence latex->dvips->ps2pdf or run xelatex.
To gett he documentation of this document you have to run
pst2pdf pst-fractal-doc --Iext=.jpg
@@ -15,3 +9,5 @@
%% This program can be redistributed and/or modified under the terms
%% of the LaTeX Project Public License Distributed from CTAN archives
%% in directory macros/latex/base/lppl.txt.
+
+hvoss at tug.org
\ No newline at end of file
Added: trunk/Master/texmf-dist/doc/generic/pst-fractal/images/crop-eps.sh
===================================================================
--- trunk/Master/texmf-dist/doc/generic/pst-fractal/images/crop-eps.sh (rev 0)
+++ trunk/Master/texmf-dist/doc/generic/pst-fractal/images/crop-eps.sh 2020-03-11 21:16:29 UTC (rev 54235)
@@ -0,0 +1,8 @@
+#!/bin/sh
+# pdf->-crop.pdf
+echo "cropping all eps-files:"
+for i in ${1}*.pdf ; do
+ STEM=`basename $i .pdf`
+ convert $i $STEM.jpg
+ echo "converting $i"
+done
Property changes on: trunk/Master/texmf-dist/doc/generic/pst-fractal/images/crop-eps.sh
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+LF
\ No newline at end of property
Modified: trunk/Master/texmf-dist/doc/generic/pst-fractal/pst-fractal-doc.pdf
===================================================================
(Binary files differ)
Added: trunk/Master/texmf-dist/source/generic/pst-fractal/Makefile
===================================================================
--- trunk/Master/texmf-dist/source/generic/pst-fractal/Makefile (rev 0)
+++ trunk/Master/texmf-dist/source/generic/pst-fractal/Makefile 2020-03-11 21:16:29 UTC (rev 54235)
@@ -0,0 +1,84 @@
+
+# `Makefile' for `pst-fractal.pdf', hv, 2007/04/05
+
+.SUFFIXES : .tex .ltx .dvi .ps .pdf .eps
+
+PACKAGE = pst-fractal
+
+MAIN = $(PACKAGE)-doc
+
+LATEX = latex
+
+ARCHNAME = $(MAIN)-$(shell date +%y%m%d)
+
+ARCHFILES = $(PACKAGE).sty $(PACKAGE).tex $(PACKAGE).pro $(MAIN).tex README Changes Makefile
+
+TDS = ~/PSTricks/PSTricks-TDS
+
+all : doc clean
+doc: $(MAIN).pdf
+
+$(MAIN).pdf : $(MAIN).ps
+ GS_OPTIONS=-dAutoRotatePages=/None ps2pdf $<
+
+$(MAIN).ps : $(MAIN).dvi
+ dvips $<
+
+$(MAIN).dvi : $(MAIN).tex
+ $(LATEX) $<
+ $(LATEX) $<
+ if ! test -f $(basename $<).glo ; then touch $(basename $<).glo; fi
+ if ! test -f $(basename $<).idx ; then touch $(basename $<).idx; fi
+ makeindex -s gglo.ist -t $(basename $<).glg -o $(basename $<).gls \
+ $(basename $<).glo
+ makeindex -t $(basename $<).ilg -o $(basename $<).ind \
+ $(basename $<).idx
+ biber $(basename $<)
+ $(LATEX) $<
+ $(LATEX) $<
+
+clean :
+ $(RM) $(addprefix $(MAIN), .log .aux .glg .glo .gls .ilg .idx .ind .tmp .toc .out .blg .Roessler .bbl )
+ $(RM) $(addprefix $(MAIN), .dvi .ps .bcf .run.xml)
+
+veryclean : clean
+ $(RM) $(addprefix $(MAIN), .pdf .bbl .blg)
+
+arch :
+ zip $(ARCHNAME).zip $(ARCHFILES)
+
+tds:
+ cp Changes $(TDS)/doc/generic/$(PACKAGE)/
+ cp README $(TDS)/doc/generic/$(PACKAGE)/
+ cp $(MAIN).pdf $(TDS)/doc/generic/$(PACKAGE)/
+#
+ cp Changes $(TDS)/tex/latex/$(PACKAGE)/
+ cp $(PACKAGE).sty $(TDS)/tex/latex/$(PACKAGE)/
+#
+ cp Changes $(TDS)/tex/generic/$(PACKAGE)/
+ cp $(PACKAGE).tex $(TDS)/tex/generic/$(PACKAGE)/
+#
+ cp Changes $(TDS)/dvips/$(PACKAGE)/
+ cp $(PACKAGE).pro $(TDS)/dvips/$(PACKAGE)/
+#
+ cp Changes $(TDS)/source/$(PACKAGE)/
+ cp $(MAIN).tex $(TDS)/source/$(PACKAGE)/
+ cp $(MAIN).bib $(TDS)/source/$(PACKAGE)/
+ cp Makefile $(TDS)/source/$(PACKAGE)/
+# cp -r images $(TDS)/source/$(PACKAGE)/
+
+
+ctan:
+ rm -f .ctan/$(PACKAGE)/latex/*
+ cp *.sty .ctan/$(PACKAGE)/latex/
+ rm -f .ctan/$(PACKAGE)/tex/*
+ cp $(PACKAGE).tex .ctan/$(PACKAGE)/tex/
+ cp $(PACKAGE).pro .ctan/$(PACKAGE)/dvips/
+ cp $(PACKAGE).pro ~/Links/dvips-local/
+ rm -f .ctan/$(PACKAGE)/doc/*
+ cp $(PACKAGE)-doc.* .ctan/$(PACKAGE)/doc/
+ cp Changes .ctan/$(PACKAGE)/
+ cp README .ctan/$(PACKAGE)/
+ chmod -R a+r .ctan/$(PACKAGE)
+
+# EOF
Property changes on: trunk/Master/texmf-dist/source/generic/pst-fractal/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Modified: trunk/Master/texmf-dist/tex/generic/pst-fractal/pst-fractal.tex
===================================================================
--- trunk/Master/texmf-dist/tex/generic/pst-fractal/pst-fractal.tex 2020-03-11 00:48:41 UTC (rev 54234)
+++ trunk/Master/texmf-dist/tex/generic/pst-fractal/pst-fractal.tex 2020-03-11 21:16:29 UTC (rev 54235)
@@ -1,4 +1,4 @@
-%% $Id: pst-fractal.tex 846 2018-11-30 21:44:45Z herbert $
+%% $Id: pst-fractal.tex 1152 2020-03-10 19:33:03Z herbert $
%%
%% This is file `pst-fractal.tex',
%%
@@ -22,8 +22,8 @@
\ifx\PSTricksAddLoaded\endinput\else\input pstricks-add.tex\fi
\ifx\PSTXKeyLoaded\endinput\else \input pst-xkey \fi
%
-\def\fileversion{0.10}
-\def\filedate{2018/11/30}
+\def\fileversion{0.11}
+\def\filedate{2020/03/10}
\message{`PST-fractal' v\fileversion, \filedate\space (hv)}
%
\edef\PstAtCode{\the\catcode`\@} \catcode`\@=11\relax
@@ -509,10 +509,10 @@
\def\psKochflake at i{\@ifnextchar({\psKochflake at ii}{\psKochflake at ii(0,0)}}
\def\psKochflake at ii(#1){{%
\addbefore at par{radius=0.25cm,maxIter=5}%
- \pst at getcoor{#1}\pst at tempA%
- \begin at SpecialObj%
+ \pst at getcoor{#1}\pst at tempA
+ \begin at SpecialObj
\addto at pscode{
- gsave ^^J%
+ gsave ^^J
\pst at tempA translate
\pst at usecolor\pslinecolor
\pst at fractal@angle rotate ^^J
@@ -523,8 +523,8 @@
tx at Kochflake end ^^J
}% end add at pscode
\psk at fillstyle
- \addto at pscode{stroke grestore }
- \end at SpecialObj%
+ \addto at pscode{stroke grestore }%
+ \end at SpecialObj
}}
%
\def\psAppolonius{\pst at object{psAppolonius}}
Modified: trunk/Master/texmf-dist/tex/latex/pst-fractal/pst-fractal.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/pst-fractal/pst-fractal.sty 2020-03-11 00:48:41 UTC (rev 54234)
+++ trunk/Master/texmf-dist/tex/latex/pst-fractal/pst-fractal.sty 2020-03-11 21:16:29 UTC (rev 54235)
@@ -1,4 +1,4 @@
-%% $Id: pst-fractal-doc.tex 658 2017-11-26 16:55:41Z herbert $
+%% $Id: pst-fractal.sty 1154 2020-03-10 19:38:13Z herbert $
\RequirePackage{pstricks}
\ProvidesPackage{pst-fractal}[2007/09/25 package wrapper for
pst-fractal.tex (hv)]
Modified: trunk/Master/tlpkg/libexec/ctan2tds
===================================================================
--- trunk/Master/tlpkg/libexec/ctan2tds 2020-03-11 00:48:41 UTC (rev 54234)
+++ trunk/Master/tlpkg/libexec/ctan2tds 2020-03-11 21:16:29 UTC (rev 54235)
@@ -769,7 +769,7 @@
'makebarcode', "&MAKEcopy",
'makecell', "&MAKEnosymlinks",
'makedtx', "&MAKEflatten",
- 'makeglossariesgui', "skipping, extra java required'",
+ 'makeglossariesgui', "die 'skipping, extra java required'",
'maketexwork', "die 'skipping, too old'",
'makor', "&MAKEbase",
'malayalam-latex', "die 'skipping, until asked for'",#language/malayalam
More information about the tex-live-commits
mailing list.