From c6f0d41b73cecfa8ec748d22ab7400584af6e6b4 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Fri, 23 Jan 2015 22:12:07 +0000 Subject: latexpand (23jan15) git-svn-id: svn://tug.org/texlive/trunk@36125 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/support/latexpand/Makefile | 15 --------------- Master/texmf-dist/doc/support/latexpand/README | 12 +++++++++++- .../texmf-dist/doc/support/latexpand/tests/README | 3 --- .../doc/support/latexpand/tests/df-conflict/a.tex | 7 ------- .../doc/support/latexpand/tests/df-conflict/b.tex | 1 - .../tests/df-conflict/b/README-df-conflict.txt | 1 - .../texmf-dist/doc/support/latexpand/tests/foo.tex | 3 --- .../doc/support/latexpand/tests/includegraphic.tex | 8 -------- .../doc/support/latexpand/tests/includer.tex | 21 --------------------- .../doc/support/latexpand/tests/just-comment.tex | 1 - .../doc/support/latexpand/tests/my-package.sty | 2 -- .../doc/support/latexpand/tests/no-eol.tex | 1 - .../doc/support/latexpand/tests/package-user.tex | 8 -------- .../doc/support/latexpand/tests/smile.pdf | Bin 6301 -> 0 bytes .../doc/support/latexpand/tests/text-after-end.tex | 16 ---------------- .../texmf-dist/doc/support/latexpand/version.txt | 4 ++-- 16 files changed, 13 insertions(+), 90 deletions(-) delete mode 100644 Master/texmf-dist/doc/support/latexpand/Makefile delete mode 100644 Master/texmf-dist/doc/support/latexpand/tests/README delete mode 100644 Master/texmf-dist/doc/support/latexpand/tests/df-conflict/a.tex delete mode 100644 Master/texmf-dist/doc/support/latexpand/tests/df-conflict/b.tex delete mode 100644 Master/texmf-dist/doc/support/latexpand/tests/df-conflict/b/README-df-conflict.txt delete mode 100644 Master/texmf-dist/doc/support/latexpand/tests/foo.tex delete mode 100644 Master/texmf-dist/doc/support/latexpand/tests/includegraphic.tex delete mode 100644 Master/texmf-dist/doc/support/latexpand/tests/includer.tex delete mode 100644 Master/texmf-dist/doc/support/latexpand/tests/just-comment.tex delete mode 100644 Master/texmf-dist/doc/support/latexpand/tests/my-package.sty delete mode 100644 Master/texmf-dist/doc/support/latexpand/tests/no-eol.tex delete mode 100644 Master/texmf-dist/doc/support/latexpand/tests/package-user.tex delete mode 100644 Master/texmf-dist/doc/support/latexpand/tests/smile.pdf delete mode 100644 Master/texmf-dist/doc/support/latexpand/tests/text-after-end.tex (limited to 'Master/texmf-dist/doc/support') diff --git a/Master/texmf-dist/doc/support/latexpand/Makefile b/Master/texmf-dist/doc/support/latexpand/Makefile deleted file mode 100644 index 08145b7b103..00000000000 --- a/Master/texmf-dist/doc/support/latexpand/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -all: dist/latexpand.zip - -dist/latexpand/README: latexpand - pod2text latexpand > $@ - -.PHONY: all force -dist/latexpand.zip: force - -$(RM) -r dist/ - mkdir -p dist/latexpand - @$(MAKE) dist/latexpand/README - @echo "latexpand version $$(git rev-parse HEAD).\n\ -Commited on $$(git show -s HEAD --pretty=format:'%cd')." > dist/latexpand/version.txt - git ls-files | grep -v '\.gitignore' | tar -cf - -T - | (cd dist/latexpand/ && tar xf -) - cd dist && zip -r latexpand.zip latexpand/ -force: diff --git a/Master/texmf-dist/doc/support/latexpand/README b/Master/texmf-dist/doc/support/latexpand/README index 673177188bd..1103a78b5b9 100644 --- a/Master/texmf-dist/doc/support/latexpand/README +++ b/Master/texmf-dist/doc/support/latexpand/README @@ -15,7 +15,8 @@ SYNOPSIS --expand-usepackage Expand \usepackage{...} directives if the corresponding .sty file is found in - $TEXINPUTS + $TEXINPUTS (or the current directory if + $TEXINPUTS is not set) --expand-bbl FILE Expand the bibliography by inlining FILE (should be a *.bbl file) @@ -27,6 +28,7 @@ SYNOPSIS --graphics_extensions colon-separated list of possible graphics extensions (used by --show-graphics to find the actual graphics files) + --fatal Die in case a file can't be found. USES The most common use of latexpand is to simplify distribution of source @@ -69,3 +71,11 @@ BUGS A workaround is to use --empty-comments when such tricky usage of the comments package is done. +SEE ALSO + Instructions to include only the relevant .bib items (french): + + https://lacl.fr/~caubert/notes/portabilite-du-tex.html#dependances + +VERSION + This is latexpand version v1.1.1. + diff --git a/Master/texmf-dist/doc/support/latexpand/tests/README b/Master/texmf-dist/doc/support/latexpand/tests/README deleted file mode 100644 index b43baccb369..00000000000 --- a/Master/texmf-dist/doc/support/latexpand/tests/README +++ /dev/null @@ -1,3 +0,0 @@ -Set of files to test latexpand. - -Tests are currently not automated :-(. diff --git a/Master/texmf-dist/doc/support/latexpand/tests/df-conflict/a.tex b/Master/texmf-dist/doc/support/latexpand/tests/df-conflict/a.tex deleted file mode 100644 index a91beee2607..00000000000 --- a/Master/texmf-dist/doc/support/latexpand/tests/df-conflict/a.tex +++ /dev/null @@ -1,7 +0,0 @@ -\documentclass{article} -\begin{document} - -Hello -\input{b} - -\end{document} diff --git a/Master/texmf-dist/doc/support/latexpand/tests/df-conflict/b.tex b/Master/texmf-dist/doc/support/latexpand/tests/df-conflict/b.tex deleted file mode 100644 index 1aa90fca797..00000000000 --- a/Master/texmf-dist/doc/support/latexpand/tests/df-conflict/b.tex +++ /dev/null @@ -1 +0,0 @@ -world. diff --git a/Master/texmf-dist/doc/support/latexpand/tests/df-conflict/b/README-df-conflict.txt b/Master/texmf-dist/doc/support/latexpand/tests/df-conflict/b/README-df-conflict.txt deleted file mode 100644 index 8097e2eb5fc..00000000000 --- a/Master/texmf-dist/doc/support/latexpand/tests/df-conflict/b/README-df-conflict.txt +++ /dev/null @@ -1 +0,0 @@ -This directory is likely to confuse latexpand. diff --git a/Master/texmf-dist/doc/support/latexpand/tests/foo.tex b/Master/texmf-dist/doc/support/latexpand/tests/foo.tex deleted file mode 100644 index e1bf33402dc..00000000000 --- a/Master/texmf-dist/doc/support/latexpand/tests/foo.tex +++ /dev/null @@ -1,3 +0,0 @@ -foo content -\def\foo@bar{foo bar} -\foo@bar{} diff --git a/Master/texmf-dist/doc/support/latexpand/tests/includegraphic.tex b/Master/texmf-dist/doc/support/latexpand/tests/includegraphic.tex deleted file mode 100644 index 213ad14c823..00000000000 --- a/Master/texmf-dist/doc/support/latexpand/tests/includegraphic.tex +++ /dev/null @@ -1,8 +0,0 @@ -\documentclass{article} - -\usepackage{graphicx} -\begin{document} -test includegraphics: -\includegraphics{smile.pdf} -\includegraphics[scale=2]{smile.pdf} -\end{document} diff --git a/Master/texmf-dist/doc/support/latexpand/tests/includer.tex b/Master/texmf-dist/doc/support/latexpand/tests/includer.tex deleted file mode 100644 index 29c60aa6bd9..00000000000 --- a/Master/texmf-dist/doc/support/latexpand/tests/includer.tex +++ /dev/null @@ -1,21 +0,0 @@ -\documentclass{article} - -\begin{document} -beforeinput\input{foo}afterinput - -beforeinput.tex\input{foo.tex}afterinput.tex - -before inclusion of just-comment\input just-comment.tex after inclusion of just-comment - -before inclusion of no-eol\input no-eol after inclusion of no-eol. - -before inclusion of no-eol\input{no-eol}after inclusion of no-eol (braces). - -beforeinclude\include{foo}afterinclude - -\end{document} - -%%% Local Variables: -%%% mode: latex -%%% TeX-master: t -%%% End: diff --git a/Master/texmf-dist/doc/support/latexpand/tests/just-comment.tex b/Master/texmf-dist/doc/support/latexpand/tests/just-comment.tex deleted file mode 100644 index 743ee4e4472..00000000000 --- a/Master/texmf-dist/doc/support/latexpand/tests/just-comment.tex +++ /dev/null @@ -1 +0,0 @@ -%just comment (no EOL) \ No newline at end of file diff --git a/Master/texmf-dist/doc/support/latexpand/tests/my-package.sty b/Master/texmf-dist/doc/support/latexpand/tests/my-package.sty deleted file mode 100644 index ab135ab069f..00000000000 --- a/Master/texmf-dist/doc/support/latexpand/tests/my-package.sty +++ /dev/null @@ -1,2 +0,0 @@ -% My package content -\def\foo{bar} diff --git a/Master/texmf-dist/doc/support/latexpand/tests/no-eol.tex b/Master/texmf-dist/doc/support/latexpand/tests/no-eol.tex deleted file mode 100644 index 5910948883b..00000000000 --- a/Master/texmf-dist/doc/support/latexpand/tests/no-eol.tex +++ /dev/null @@ -1 +0,0 @@ -text without EOL \ No newline at end of file diff --git a/Master/texmf-dist/doc/support/latexpand/tests/package-user.tex b/Master/texmf-dist/doc/support/latexpand/tests/package-user.tex deleted file mode 100644 index 87df974b679..00000000000 --- a/Master/texmf-dist/doc/support/latexpand/tests/package-user.tex +++ /dev/null @@ -1,8 +0,0 @@ -\documentclass{article} - -\usepackage{lmodern} -\usepackage{my-package} - -\begin{document} - -\end{document} diff --git a/Master/texmf-dist/doc/support/latexpand/tests/smile.pdf b/Master/texmf-dist/doc/support/latexpand/tests/smile.pdf deleted file mode 100644 index 9224e22a794..00000000000 Binary files a/Master/texmf-dist/doc/support/latexpand/tests/smile.pdf and /dev/null differ diff --git a/Master/texmf-dist/doc/support/latexpand/tests/text-after-end.tex b/Master/texmf-dist/doc/support/latexpand/tests/text-after-end.tex deleted file mode 100644 index 16bd1b73398..00000000000 --- a/Master/texmf-dist/doc/support/latexpand/tests/text-after-end.tex +++ /dev/null @@ -1,16 +0,0 @@ -\documentclass{article} - -\begin{document} -should be displayed -\verb|\end{document}| -should be displayed too. -\end{document} end of line discarded. - -should not be displayed. -\end{document} -should not be displayed either. - -%%% Local Variables: -%%% mode: latex -%%% TeX-master: t -%%% End: diff --git a/Master/texmf-dist/doc/support/latexpand/version.txt b/Master/texmf-dist/doc/support/latexpand/version.txt index b56d2f73afb..ddf593e422c 100644 --- a/Master/texmf-dist/doc/support/latexpand/version.txt +++ b/Master/texmf-dist/doc/support/latexpand/version.txt @@ -1,2 +1,2 @@ -latexpand version ac5896be7dc7c7481695c1ac23da838a31b5c50b. -Commited on Fri Apr 4 09:58:49 2014 +0200. +latexpand version v1.1.1 (931b9665fee76da7e6f9c902c4d7f629f791def1). +Committed on Fri Jan 23 10:55:18 2015 +0100. -- cgit v1.2.3