texlive[66219] Master/texmf-dist/doc/metapost/base: mpost doc update

commits+karl at tug.org commits+karl at tug.org
Mon Feb 27 19:06:57 CET 2023


Revision: 66219
          http://tug.org/svn/texlive?view=revision&revision=66219
Author:   karl
Date:     2023-02-27 19:06:56 +0100 (Mon, 27 Feb 2023)
Log Message:
-----------
mpost doc update

Modified Paths:
--------------
    trunk/Master/texmf-dist/doc/metapost/base/CHANGES
    trunk/Master/texmf-dist/doc/metapost/base/mpboxes.pdf
    trunk/Master/texmf-dist/doc/metapost/base/mpgraph.pdf
    trunk/Master/texmf-dist/doc/metapost/base/mpman.pdf
    trunk/Master/texmf-dist/doc/metapost/base/source-manual/Makefile
    trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpgraph.tex
    trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-legacy.tex
    trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-numbersystems.tex
    trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-optab.tex
    trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-refman.tex
    trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman.tex

Modified: trunk/Master/texmf-dist/doc/metapost/base/CHANGES
===================================================================
--- trunk/Master/texmf-dist/doc/metapost/base/CHANGES	2023-02-27 17:09:29 UTC (rev 66218)
+++ trunk/Master/texmf-dist/doc/metapost/base/CHANGES	2023-02-27 18:06:56 UTC (rev 66219)
@@ -1,7 +1,38 @@
 
 This file is public domain.
 
+
 ----------------------------------------------------------------------
+What is new in MetaPost version 2.01:
+----------------------------------------------------------------------
+* It's a version needed to mark the patch mpx_copy_mpto.
+
+
+----------------------------------------------------------------------
+What is new in MetaPost version 2.0rc2:
+----------------------------------------------------------------------
+
+* Small cleanup of the code
+* Bump to version 2.0rc2: the current version is 2.00
+* Added the envelope primitives to mpman
+
+
+----------------------------------------------------------------------
+What is new in MetaPost version 2.0rc1:
+----------------------------------------------------------------------
+
+* Mainly fixes for wrong path directions, minor issues on tfm and png
+  backend. The version says "2.000" to keep the version as a valid
+  number.
+
+
+----------------------------------------------------------------------
+What is new in MetaPost version 1.9991:
+----------------------------------------------------------------------
+
+* Some issues fixed, but really this is in preparation of metapost 2.0.
+
+----------------------------------------------------------------------
 What is new in MetaPost version 1.999:
 ----------------------------------------------------------------------
 

Modified: trunk/Master/texmf-dist/doc/metapost/base/mpboxes.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/metapost/base/mpgraph.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/metapost/base/mpman.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/metapost/base/source-manual/Makefile
===================================================================
--- trunk/Master/texmf-dist/doc/metapost/base/source-manual/Makefile	2023-02-27 17:09:29 UTC (rev 66218)
+++ trunk/Master/texmf-dist/doc/metapost/base/source-manual/Makefile	2023-02-27 18:06:56 UTC (rev 66219)
@@ -5,8 +5,9 @@
 RM = -rm -f
 latex = latex
 pdflatex = pdflatex
-contextpdf = texexec
-contextdvi = texexec --dvi
+# texexec is no longer in TL, with the advent of lmtx.
+#contextpdf = texexec
+#contextdvi = texexec --dvi
 dvips = dvips
 bibtex = bibtex
 mpost = mpost -tex=tex
@@ -13,7 +14,7 @@
 mkindex = makeindex -c -s mpman.ist
 
 all: pdf
-pdf: mpman.pdf mpgraph.pdf mpboxes.pdf mplibapi.pdf
+pdf: mpman.pdf mpgraph.pdf mpboxes.pdf #mplibapi.pdf
 ps: mpman.ps mpgraph.ps mpboxes.ps mplibapi.ps
 
 mplibapi.pdf: mplibapi.tex
@@ -81,6 +82,27 @@
 	$(latex) mpman
 	$(dvips) mpman
 
+# Install the pdf files into a TL runtime (separate repository).
+install_files  = grdemo-doc.pdf grdemo.pdf
+install_files += mpboxes.pdf mpgraph.pdf
+install_files += mpman.pdf
+# 2023: leaving out mplibapi.pdf since I don't know how to build it.
+#
+# Clearly not a suitable destination directory for anyone else :). --karl.
+tldocdir = /home/texlive/karl/Master/texmf-dist/doc/metapost/base
+#
+# The sources go into a subdirectory.
+install_sm_files  = Makefile README TODO
+install_sm_files += *.d *.sty *.map *.mp *.ms *.bib *.tex *.ist
+install_sm_files += figs.1 grdemo.eps grdemo-doc.ps
+tldocdir_sm = $(tldocdir)/source-manual
+#
+INSTALL_DATA = cp -pfv
+#
+install-tl:
+#	$(INSTALL_DATA) $(install_files) $(tldocdir)/
+	$(INSTALL_DATA) $(install_sm_files) $(tldocdir_sm)/
+
 clean:
 	$(RM) *.aux *.bbl *.blg *.dvi *.idx *.ilg *.ind *.log *.mps *.mpx *.out *.toc mpxerr.*
 	$(RM) *.tui *.tuo *.tmp *-mpgraph.mp

Modified: trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpgraph.tex
===================================================================
--- trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpgraph.tex	2023-02-27 17:09:29 UTC (rev 66218)
+++ trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpgraph.tex	2023-02-27 18:06:56 UTC (rev 66219)
@@ -1,4 +1,4 @@
-% $Id: mpgraph.tex 870 2009-03-06 11:04:56Z stephanhennig $
+% $Id$
 % MetaPost graph doc, by John Hobby.  License at end.
 \listfiles
 \RequirePackage{ifpdf}

Modified: trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-legacy.tex
===================================================================
--- trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-legacy.tex	2023-02-27 17:09:29 UTC (rev 66218)
+++ trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-legacy.tex	2023-02-27 18:06:56 UTC (rev 66219)
@@ -1,4 +1,4 @@
-\svnInfo $Id: mpman-app-legacy.tex 2023 2014-05-21 08:47:19Z stephanhennig $
+\svnInfo $Id$
 \section{Legacy Information}
 \label{legacy}
 

Modified: trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-numbersystems.tex
===================================================================
--- trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-numbersystems.tex	2023-02-27 17:09:29 UTC (rev 66218)
+++ trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-numbersystems.tex	2023-02-27 18:06:56 UTC (rev 66219)
@@ -1,4 +1,4 @@
-\svnInfo $Id: mpman-app-numbersystems.tex 2163 2020-12-31 19:51:53Z luigi.scarso at gmail.com $
+\svnInfo $Id$
 \section{High-precision arithmetic with MetaPost}
 \label{hparith}
 

Modified: trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-optab.tex
===================================================================
--- trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-optab.tex	2023-02-27 17:09:29 UTC (rev 66218)
+++ trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-optab.tex	2023-02-27 18:06:56 UTC (rev 66219)
@@ -1,4 +1,4 @@
-\svnInfo $Id: mpman-app-optab.tex 1438 2010-10-26 20:08:17Z stephanhennig $
+\svnInfo $Id$
 %%% Two notes on column specification:
 %%% (i)  Column widths are manually chosen as small as possible to allow
 %%%      for a wider last X column.

Modified: trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-refman.tex
===================================================================
--- trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-refman.tex	2023-02-27 17:09:29 UTC (rev 66218)
+++ trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman-app-refman.tex	2023-02-27 18:06:56 UTC (rev 66219)
@@ -1,4 +1,4 @@
-\svnInfo $Id: mpman-app-refman.tex 2022 2014-05-20 21:50:47Z stephanhennig $
+\svnInfo $Id$
 \section{Reference Manual}
 \label{refman}
 

Modified: trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman.tex
===================================================================
--- trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman.tex	2023-02-27 17:09:29 UTC (rev 66218)
+++ trunk/Master/texmf-dist/doc/metapost/base/source-manual/mpman.tex	2023-02-27 18:06:56 UTC (rev 66219)
@@ -1,4 +1,4 @@
-% $Id: mpman.tex 2155 2019-06-02 09:39:55Z luigi.scarso at gmail.com $
+% $Id$
 % MetaPost manual, by John Hobby.  License at end.
 \listfiles
 \RequirePackage{ifpdf}
@@ -12,8 +12,8 @@
 \fi
 \documentclass{article} % article is NOT the original style
 \usepackage[nofancy]{svninfo}% Access VCS information.
-\svnInfo $Id: mpman.tex 2155 2019-06-02 09:39:55Z luigi.scarso at gmail.com $
-%\svnInfo $Id: mpman.tex 2155 2019-06-02 09:39:55Z luigi.scarso at gmail.com $
+\svnInfo $Id$
+%\svnInfo $Id$
 \newcommand*{\mpversion}{2.00}
 
 \usepackage[T1]{fontenc}



More information about the tex-live-commits mailing list.