Skip to content

Commit 3e097d8

Browse files
committed
Upgrade to TeXLive 20190410.
1 parent f625f5e commit 3e097d8

File tree

3 files changed

+5639
-10
lines changed

3 files changed

+5639
-10
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Modular TeXLive release
22

3-
[The official tarballs of TeXLive](http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2018/)
3+
[The official tarballs of TeXLive](http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2019/)
44
are very large in size; approximately 3.5 GB. Most documents created
55
using TeXLive only depend on a fraction of this data. This makes the
66
official tarballs unsuitable for use in automated build processes that
@@ -19,22 +19,22 @@ named after the path of the subtree, where `/` is substituted with `--`.
1919
The official tarballs were downloaded, having the following checksums:
2020

2121
```
22-
0b5657c97ff203bd8fadb28986a167c731db9e7947ff65f6680dda57ca4971b7 texlive-20180414-bin.tar.xz
23-
5b4397854723405f20df7172e73a04cee2d3ab712f78b064a7f523d6ab9f0329 texlive-20180414-extra.tar.xz
24-
bae2fa05ea1858b489f8138bea855c6d65829cf595c1fb219c5d65f4fe8b1fad texlive-20180414-texmf.tar.xz
22+
571a9b681ef85b7b5de5ead5c655ab1a1f5f366207a6761423b11f78e73d7d1d texlive-20190410-bin.tar.xz
23+
488233d728b274952f7770e24f4a0cfa6976cd15dec44951d8985a629570cc8e texlive-20190410-extra.tar.xz
24+
c2ec974abc98b91995969e7871a0b56dbc80dd8508113ffcff6923e912c4c402 texlive-20190410-texmf.tar.xz
2525
```
2626

2727
They were then decomposed and uploaded as follows:
2828

2929
```
3030
for i in bin extra texmf; do
31-
tar -xf ~/Downloads/texlive-20180414-$i.tar.xz
31+
tar -xf ~/Downloads/texlive-20190410-$i.tar.xz
3232
done
3333
mkdir output
34-
./create_tarballs.py texlive-20180414-bin
35-
./create_tarballs.py texlive-20180414-extra/tlpkg/TeXLive
36-
./create_tarballs.py texlive-20180414-texmf
37-
(cd output; sha256sum *) > sha256sums-20180414.txt
34+
./create_tarballs.py texlive-20190410-bin
35+
./create_tarballs.py texlive-20190410-extra/tlpkg/TeXLive
36+
./create_tarballs.py texlive-20190410-texmf
37+
(cd output; ls | xargs sha256) > sha256sums-20190410.txt
3838
./upload.sh <GitHub API token> <GitHub release ID>
3939
```
4040

create_tarballs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def create_tarballs(path):
5353
for directory in directories:
5454
for entry in collect_files(os.path.join(path, directory)):
5555
files.append(os.path.join(directory, entry))
56-
if len(files) > (750 if directories else 3000):
56+
if len(files) > (2000 if directories else 3000):
5757
raise Exception(
5858
"Package %s is too large. It has %d files." % (path, len(files))
5959
)

0 commit comments

Comments
 (0)