summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/latex-tds
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-07-06 23:20:09 +0000
committerKarl Berry <karl@freefriends.org>2014-07-06 23:20:09 +0000
commitec948d3b3664ebec090ac66655670d1f09151358 (patch)
tree385f659b2917726c0deaa9c95bf9a379e118f2d3 /Master/texmf-dist/source/latex/latex-tds
parentbac7a94f9a90916d66e6148b93295f8a30d85146 (diff)
asciidoc (6jul14)
git-svn-id: svn://tug.org/texlive/trunk@34534 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/latex-tds')
-rw-r--r--Master/texmf-dist/source/latex/latex-tds/README.asciidoc9
-rwxr-xr-xMaster/texmf-dist/source/latex/latex-tds/build.pl35
2 files changed, 35 insertions, 9 deletions
diff --git a/Master/texmf-dist/source/latex/latex-tds/README.asciidoc b/Master/texmf-dist/source/latex/latex-tds/README.asciidoc
index d43c5590600..b50471d1153 100644
--- a/Master/texmf-dist/source/latex/latex-tds/README.asciidoc
+++ b/Master/texmf-dist/source/latex/latex-tds/README.asciidoc
@@ -1,7 +1,7 @@
README for project latex-tds
============================
:author: Heiko Oberdiek
-:revdate: 2014/05/16
+:revdate: 2014/06/12
:lang: en
:toc:
:numbered:
@@ -86,7 +86,8 @@ The link addresses are the sources for the modules.
{ctan}macros/latex/required/amslatex.zip[CTAN:macros/latex/required/amslatex.zip] +
ftp://ftp.ams.org/pub/tex/amsrefs/amsrefs.zip +
ftp://ftp.ams.org/pub/tex/amscls.zip +
- ftp://ftp.ams.org/pub/tex/amsmath.zip
+ ftp://ftp.ams.org/pub/tex/amsmath.zip +
+ http://tug.org/~karl/amsbooka.zip
*amsfonts*::
{ctan}install/fonts/amsfonts.tds.zip[CTAN:install/fonts/amsfonts.tds.zip]
*psnfss*::
@@ -693,3 +694,7 @@ History
* +fix-expl3-lua.ini+ added to support putting package expl into a format.
* Script +check-tds-installation.pl+ added.
* Module amslatex: +TDS:bibtex/bst/ams+ renamed to +TDS:bibtex/bst/amscls+.
+2014/05/21::
+ * Module amslatex: Sources for +amsbooka+ added.
+2014/06/12::
+ * Module base: Update of +fixltx2e.dtx+.
diff --git a/Master/texmf-dist/source/latex/latex-tds/build.pl b/Master/texmf-dist/source/latex/latex-tds/build.pl
index eb18d87d58a..6c19ef63b82 100755
--- a/Master/texmf-dist/source/latex/latex-tds/build.pl
+++ b/Master/texmf-dist/source/latex/latex-tds/build.pl
@@ -4,8 +4,8 @@ $^W=1;
my $prj = 'latex-tds';
my $file = 'build.pl';
-my $version = '1.190';
-my $date = '2014-05-16';
+my $version = '1.191';
+my $date = '2014-05-21';
my $author = 'Heiko Oberdiek';
my $copyright = "Copyright 2006-2014 $author";
chomp(my $license = <<"END_LICENSE");
@@ -34,6 +34,7 @@ my $time_start = time;
my $url_ctan = 'ftp://dante.ctan.org/tex-archive';
my $url_ams = 'ftp://ftp.ams.org/pub/tex';
+my $url_amsbooka = 'http://tug.org/~karl/amsbooka.zip';
my $url_ltxprj = 'http://www.latex-project.org/';
my @required_list = (
@@ -66,6 +67,7 @@ my $error = "!!! Error:";
my $dir_incoming = 'incoming';
my $dir_incoming_ctan = "$dir_incoming/ctan";
my $dir_incoming_ams = "$dir_incoming/ams";
+my $dir_incoming_amsbooka = "$dir_incoming/amsbooka";
my $dir_incoming_ltxprj = "$dir_incoming/ltxprj";
my $dir_ltxpub = "latex2e-public";
my $dir_incoming_ltxpub = "$dir_incoming/$dir_ltxpub";
@@ -351,6 +353,8 @@ if (@list_modules > 0) {
download_err('lgc2');
download_err('tlc2');
download_ctan_file('armtex.zip', 'language/armenian');
+ ensure_directory($dir_incoming_amsbooka);
+ download("$dir_incoming_amsbooka/amsbooka.zip", $url_amsbooka);
}
### VCS
@@ -509,6 +513,9 @@ section('Unpacking');
## . "$dir_build/amslatex/texmf/source/latex/amsrefs/README");
# run("$prg_cp $dir_build/amslatex/ctan/amsrefs/amsrefs.dtx "
# . "$dir_build/amslatex/texmf/source/latex/amsrefs/amsrefs.dtx");
+ unpacking_flat('amslatex',
+ "$dir_incoming_amsbooka/amsbooka.zip",
+ "$dir_build/amslatex");
}
if ($modules{'amsfonts'}) {
@@ -710,6 +717,14 @@ section('Install source');
errorlog.tex
logmac.tex
]);
+ if ($modules{'amslatex'}) {
+ cd "$dir_build/amslatex";
+ install "texmf/source/latex/amscls", qw[
+ amsbooka.dtx
+ amsbooka.ins
+ ];
+ cd $cwd;
+ }
}
### Patch source files after source install
@@ -753,7 +768,6 @@ section('Patches after source install');
}
if ($modules{'knuth'}) {
-
foreach my $file (qw[
errorlog.tex
logmac.tex
@@ -763,7 +777,6 @@ section('Patches after source install');
]) {
patch("knuth/$file");
}
-
}
if ($modules{'amslatex'}) {
@@ -796,6 +809,7 @@ section('Docstrip');
docstrip('graphics', 'graphics');
docstrip('graphics', 'graphics-drivers');
docstrip('tools', 'tools');
+ docstrip('amslatex', 'amsbooka');
## patch for amsthm.sty, part 1/2
#if ($modules{'amslatex'}) {
@@ -839,9 +853,6 @@ section('TDS cleanup');
# cite-x*.tex jr.bib
map { run("$prg_mv $_ $dir_tds/doc/latex/amsrefs/"); } @list;
}
- # CTAN:macros/latex/required/amslatex/other/*
- run("$prg_cp $dir_build/amslatex/other/amsbooka.sty"
- . " $dir_build/amslatex/texmf/tex/latex/amscls/amsbooka.sty");
}
}
@@ -982,6 +993,12 @@ section('Install tex doc');
cd $cwd;
}
+ if ($modules{'amslatex'}) {
+ cd "$dir_build/amslatex";
+ install('texmf/tex/latex/amscls', 'amsbooka.sty');
+ cd $cwd;
+ }
+
## patch for amsthm.sty, part 2/2
#if ($modules{'amslatex'}) {
# cd "$dir_build/amslatex/amscls";
@@ -1503,6 +1520,10 @@ if ($modules{'amslatex'}) {
];
cd $cwd;
+ cd "$dir_build/amslatex";
+ generate_doc 'amscls', 'amsbooka';
+ cd $cwd;
+
cd "$dir_build/amslatex/amsrefs";
symlink '../texmf', 'texmf';
map { generate_doc 'amsrefs', $_; } qw[