summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-03-30 02:38:02 +0000
committerKarl Berry <karl@freefriends.org>2012-03-30 02:38:02 +0000
commit136d1c4aee9f91326ee4774ca941bd10223d4a58 (patch)
treea6334c62b46746ffa4f813025dc5bdc4a0fe0805
parentca471ab11e600c32f066266a3be8055847798370 (diff)
/home/texlive/karl/Master/tlpkg/bin/tl-update-auto
git-svn-id: svn://tug.org/texlive/trunk@25783 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xBuild/source/build-aux/depcomp31
-rwxr-xr-xBuild/source/extra/xz/build-aux/depcomp31
-rw-r--r--Master/doc.html62
3 files changed, 78 insertions, 46 deletions
diff --git a/Build/source/build-aux/depcomp b/Build/source/build-aux/depcomp
index 81e64f6bf3b..debb6ffa3ea 100755
--- a/Build/source/build-aux/depcomp
+++ b/Build/source/build-aux/depcomp
@@ -1,7 +1,7 @@
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
-scriptversion=2012-03-12.15; # UTC
+scriptversion=2012-03-27.16; # UTC
# Copyright (C) 1999-2012 Free Software Foundation, Inc.
@@ -288,23 +288,26 @@ aix)
;;
icc)
- # Intel's C compiler understands '-MD -MF file'. However on
- # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
+ # Intel's C compiler anf tcc (Tiny C Compiler) understand '-MD -MF file'.
+ # However on
+ # $CC -MD -MF foo.d -c -o sub/foo.o sub/foo.c
# ICC 7.0 will fill foo.d with something like
# foo.o: sub/foo.c
# foo.o: sub/foo.h
- # which is wrong. We want:
+ # which is wrong. We want
# sub/foo.o: sub/foo.c
# sub/foo.o: sub/foo.h
# sub/foo.c:
# sub/foo.h:
# ICC 7.1 will output
# foo.o: sub/foo.c sub/foo.h
- # and will wrap long lines using \ :
+ # and will wrap long lines using '\':
# foo.o: sub/foo.c ... \
# sub/foo.h ... \
# ...
-
+ # tcc 0.9.26 (FIXME still under development at the moment of writing)
+ # will emit a similar output, but also prepend the continuation lines
+ # with horizontal tabulation characters.
"$@" -MD -MF "$tmpdepfile"
stat=$?
if test $stat -eq 0; then :
@@ -317,11 +320,17 @@ icc)
# or 'foo.o: dep1.h dep2.h \', or ' dep3.h dep4.h \'.
# Do two passes, one to just change these to
# '$object: dependent.h' and one to simply 'dependent.h:'.
- sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
- # Some versions of the HPUX 10.20 sed can't process this invocation
- # correctly. Breaking it into two sed invocations is a workaround.
- sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" |
- sed -e 's/$/ :/' >> "$depfile"
+ sed -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \
+ < "$tmpdepfile" > "$depfile"
+ sed '
+ s/[ '"$tab"'][ '"$tab"']*/ /g
+ s/^ *//
+ s/ *\\*$//
+ s/^[^:]*: *//
+ /^$/d
+ /:$/d
+ s/$/ :/
+ ' < "$tmpdepfile" >> "$depfile"
rm -f "$tmpdepfile"
;;
diff --git a/Build/source/extra/xz/build-aux/depcomp b/Build/source/extra/xz/build-aux/depcomp
index 81e64f6bf3b..debb6ffa3ea 100755
--- a/Build/source/extra/xz/build-aux/depcomp
+++ b/Build/source/extra/xz/build-aux/depcomp
@@ -1,7 +1,7 @@
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
-scriptversion=2012-03-12.15; # UTC
+scriptversion=2012-03-27.16; # UTC
# Copyright (C) 1999-2012 Free Software Foundation, Inc.
@@ -288,23 +288,26 @@ aix)
;;
icc)
- # Intel's C compiler understands '-MD -MF file'. However on
- # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
+ # Intel's C compiler anf tcc (Tiny C Compiler) understand '-MD -MF file'.
+ # However on
+ # $CC -MD -MF foo.d -c -o sub/foo.o sub/foo.c
# ICC 7.0 will fill foo.d with something like
# foo.o: sub/foo.c
# foo.o: sub/foo.h
- # which is wrong. We want:
+ # which is wrong. We want
# sub/foo.o: sub/foo.c
# sub/foo.o: sub/foo.h
# sub/foo.c:
# sub/foo.h:
# ICC 7.1 will output
# foo.o: sub/foo.c sub/foo.h
- # and will wrap long lines using \ :
+ # and will wrap long lines using '\':
# foo.o: sub/foo.c ... \
# sub/foo.h ... \
# ...
-
+ # tcc 0.9.26 (FIXME still under development at the moment of writing)
+ # will emit a similar output, but also prepend the continuation lines
+ # with horizontal tabulation characters.
"$@" -MD -MF "$tmpdepfile"
stat=$?
if test $stat -eq 0; then :
@@ -317,11 +320,17 @@ icc)
# or 'foo.o: dep1.h dep2.h \', or ' dep3.h dep4.h \'.
# Do two passes, one to just change these to
# '$object: dependent.h' and one to simply 'dependent.h:'.
- sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
- # Some versions of the HPUX 10.20 sed can't process this invocation
- # correctly. Breaking it into two sed invocations is a workaround.
- sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" |
- sed -e 's/$/ :/' >> "$depfile"
+ sed -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \
+ < "$tmpdepfile" > "$depfile"
+ sed '
+ s/[ '"$tab"'][ '"$tab"']*/ /g
+ s/^ *//
+ s/ *\\*$//
+ s/^[^:]*: *//
+ /^$/d
+ /:$/d
+ s/$/ :/
+ ' < "$tmpdepfile" >> "$depfile"
rm -f "$tmpdepfile"
;;
diff --git a/Master/doc.html b/Master/doc.html
index 3387975ba14..23e6e18f28b 100644
--- a/Master/doc.html
+++ b/Master/doc.html
@@ -1144,6 +1144,11 @@ Typesetting biological species names
<a href="texmf-dist/doc/latex/biocon/source.pdf">source.pdf</a>.
</small></li>
+<li><b><a href="texmf-dist/doc/generic/bitelist">bitelist</a></b>:<small>
+Split list, in TeX's mouth.
+<a href="texmf-dist/doc/generic/bitelist/bitelist.pdf">bitelist.pdf</a>.
+</small></li>
+
<li><b><a href="texmf-dist/doc/latex/bizcard">bizcard</a></b>:<small>
Typeset business cards.
<a href="texmf-dist/doc/latex/bizcard/bizcard.pdf">bizcard.pdf</a>,
@@ -1358,7 +1363,7 @@ Create illustrations for network protocol specifications.
<h2 id="letter-C">C</h2>
-<ol start="198">
+<ol start="199">
<li><b><a href="texmf-dist/doc/fonts/enc/c90">c90</a></b>:<small>
<a href="texmf-dist/doc/fonts/enc/c90/c90.pdf">c90.pdf</a>.
@@ -2246,6 +2251,10 @@ String manipulation in LaTeX.
<a href="texmf-dist/doc/latex/coolstr/coolstr.pdf">coolstr.pdf</a>.
</small></li>
+<li><b><a href="texmf-dist/doc/latex/coolthms">coolthms</a></b>:<small>
+<a href="texmf-dist/doc/latex/coolthms/coolthms.pdf">coolthms.pdf</a>.
+</small></li>
+
<li><b><a href="texmf-dist/doc/latex/cooltooltips">cooltooltips</a></b>:<small>
Associate a pop-up window and tooltip with PDF hyperlinks.
<a href="texmf-dist/doc/latex/cooltooltips/cooltooltips.pdf">cooltooltips.pdf</a>.
@@ -2486,7 +2495,7 @@ Cyrillic bibtex and makeindex.
<h2 id="letter-D">D</h2>
-<ol start="364">
+<ol start="366">
<li><b><a href="texmf-dist/doc/latex/dashbox">dashbox</a></b>:<small>
Draw dashed boxes.
@@ -2893,7 +2902,7 @@ Construct Dynkin tree diagrams.
<h2 id="letter-E">E</h2>
-<ol start="435">
+<ol start="437">
<li><b><a href="texmf-dist/doc/latex/ean13isbn">ean13isbn</a></b>:<small>
Print EAN13 for ISBN.
@@ -3474,7 +3483,7 @@ Extend the standard classes' size options.
<h2 id="letter-F">F</h2>
-<ol start="537">
+<ol start="539">
<li><b><a href="texmf-dist/doc/latex/facsimile">facsimile</a></b>:<small>
Document class for preparing faxes.
@@ -4079,7 +4088,7 @@ Get first and last words of a page.
<h2 id="letter-G">G</h2>
-<ol start="633">
+<ol start="635">
<li><b><a href="texmf-dist/doc/latex/g-brief">g-brief</a></b>:<small>
Letter document class.
@@ -4443,7 +4452,7 @@ Macros for typesetting the GuIT logo.
<h2 id="letter-H">H</h2>
-<ol start="694">
+<ol start="696">
<li><b><a href="texmf-dist/doc/latex/HA-prosper">HA-prosper</a></b>:<small>
Patches and improvements for prosper.
@@ -4645,7 +4654,7 @@ Basic support for multiple languages in Plain TeX.
<h2 id="letter-I">I</h2>
-<ol start="728">
+<ol start="730">
<li><b><a href="texmf-dist/doc/latex/ibycus-babel">ibycus-babel</a></b>:<small>
Use the Ibycus 4 Greek font with Babel
@@ -4925,7 +4934,7 @@ A two-element sans-serif font.
<h2 id="letter-J">J</h2>
-<ol start="777">
+<ol start="779">
<li><b><a href="texmf-dist/doc/fonts/jablantile">jablantile</a></b>:<small>
Metafont version of tiles in the style of Slavik Jablan.
@@ -5031,7 +5040,7 @@ A replacement for LaTeX's verbatim package.
<h2 id="letter-K">K</h2>
-<ol start="793">
+<ol start="795">
<li><b><a href="texmf-dist/doc/latex/kantlipsum">kantlipsum</a></b>:<small>
Generate sentences in Kant's style.
@@ -5179,7 +5188,7 @@ A two-element sans-serif typeface.
<h2 id="letter-L">L</h2>
-<ol start="812">
+<ol start="814">
<li><b><a href="texmf-dist/doc/latex/l2picfaq">l2picfaq</a></b>:<small>
LaTeX pictures "how-to" (German).
@@ -6001,7 +6010,7 @@ Set of slide fonts based on CM.
<h2 id="letter-M">M</h2>
-<ol start="935">
+<ol start="937">
<li><b><a href="texmf-dist/doc/latex/macqassign">macqassign</a></b>:<small>
Typeset assignments for Macquarie University.
@@ -6962,7 +6971,7 @@ Build a format based on the preamble of a LaTeX file.
<h2 id="letter-N">N</h2>
-<ol start="1071">
+<ol start="1073">
<li><b><a href="texmf-dist/doc/latex/nag">nag</a></b>:<small>
Detecting and warning about obsolete LaTeX commands
@@ -7248,7 +7257,7 @@ Print numbers with separators and exponent if necessary.
<h2 id="letter-O">O</h2>
-<ol start="1115">
+<ol start="1117">
<li><b><a href="texmf-dist/doc/latex/oberdiek">oberdiek</a></b>:<small>
A bundle of packages submitted by Heiko Oberdiek.
@@ -7509,7 +7518,7 @@ Combine LaTeX commands over included graphics.
<h2 id="letter-P">P</h2>
-<ol start="1140">
+<ol start="1142">
<li><b><a href="texmf-dist/doc/latex/pagecolor">pagecolor</a></b>:<small>
Interrogate page colour.
@@ -8797,7 +8806,7 @@ Virtual maths alphabets based on pxfonts and txfonts.
<h2 id="letter-Q">Q</h2>
-<ol start="1341">
+<ol start="1343">
<li><b><a href="texmf-dist/doc/latex/qcm">qcm</a></b>:<small>
A LaTeX2e class for making multiple choice questionnaires
@@ -8841,7 +8850,7 @@ Consistent quote marks.
<h2 id="letter-R">R</h2>
-<ol start="1348">
+<ol start="1350">
<li><b><a href="texmf-dist/doc/latex/randbild">randbild</a></b>:<small>
Marginal pictures.
@@ -9085,7 +9094,7 @@ Class for Ryerson Unversity Graduate School requirements.
<h2 id="letter-S">S</h2>
-<ol start="1390">
+<ol start="1392">
<li><b><a href="texmf-dist/doc/latex/sageep">sageep</a></b>:<small>
Format papers for the annual meeting of EEGS.
@@ -9909,7 +9918,7 @@ Format systems of equations.
<h2 id="letter-T">T</h2>
-<ol start="1523">
+<ol start="1525">
<li><b><a href="texmf-dist/doc/latex/t-angles">t-angles</a></b>:<small>
Draw tangles, trees, Hopf algebra operations and other pictures.
@@ -10754,6 +10763,11 @@ Create commutative diagrams with TikZ
<a href="texmf-dist/doc/latex/tikzpagenodes/tikzpagenodes.pdf">tikzpagenodes.pdf</a>.
</small></li>
+<li><b><a href="texmf-dist/doc/latex/tikzpfeile">tikzpfeile</a></b>:<small>
+Draw arrows using PGF/TikZ.
+<a href="texmf-dist/doc/latex/tikzpfeile/tikzpfeile.pdf">tikzpfeile.pdf</a>.
+</small></li>
+
<li><b><a href="texmf-dist/doc/fonts/tipa">tipa</a></b>:<small>
Fonts and macros for IPA phonetics characters.
<a href="texmf-dist/doc/fonts/tipa/tipaman.pdf">tipaman.pdf</a>,
@@ -11179,7 +11193,7 @@ Print a typographic grid.
<h2 id="letter-U">U</h2>
-<ol start="1690">
+<ol start="1693">
<li><b><a href="texmf-dist/doc/latex/uaclasses">uaclasses</a></b>:<small>
University of Arizona thesis and dissertation format.
@@ -11360,7 +11374,7 @@ University of Washington thesis class.
<h2 id="letter-V">V</h2>
-<ol start="1722">
+<ol start="1725">
<li><b><a href="texmf-dist/doc/bibtex/vancouver">vancouver</a></b>:<small>
Bibliographic style file for Biomedical Journals.
@@ -11522,7 +11536,7 @@ Variable-width multiple text columns.
<h2 id="letter-W">W</h2>
-<ol start="1749">
+<ol start="1752">
<li><b><a href="texmf-dist/doc/fonts/wadalab">wadalab</a></b>:<small>
Wadalab (Japanese) font packages.
@@ -11604,7 +11618,7 @@ Produces figures which text can flow around.
<h2 id="letter-X">X</h2>
-<ol start="1763">
+<ol start="1766">
<li><b><a href="texmf-dist/doc/latex/xargs">xargs</a></b>:<small>
Define commands with many optional arguments.
@@ -11839,7 +11853,7 @@ Tree macros using XY-Pic.
<h2 id="letter-Y">Y</h2>
-<ol start="1799">
+<ol start="1802">
<li><b><a href="texmf-dist/doc/latex/yafoot">yafoot</a></b>:<small>
A bundle of miscellaneous footnote packages.
@@ -11887,7 +11901,7 @@ Many-featured Young tableaux and Young diagrams.
<h2 id="letter-Z">Z</h2>
-<ol start="1807">
+<ol start="1810">
<li><b><a href="texmf-dist/doc/latex/zed-csp">zed-csp</a></b>:<small>
Typesetting Z and CSP format specifications.