limarka 20.6.16.pre.362 → 20.7.13.pre.363
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/instaladores/tinytex_install.sh +5 -2
- data/lib/limarka/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 385ba527533e12c2a558d55e6b18c262f1b535099ca78d3d8d3c92b0f19f4d50
|
|
4
|
+
data.tar.gz: b1bb734d32977681e797ceb73043e7c326e2363d5d99ed1a9ddaae03e2953eb2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29fcc810e80277f33a9e18fe6ffceeca9079fac4866eba21611d4479622df7290f9781cf5e15930e4be1dc72c992cb6e86fe633a6f2cb772dee707e2dc5ddc4c
|
|
7
|
+
data.tar.gz: ccbd6acae7fc189c83113411668dc6758cf1598a90c47b4c987721f13aa35992a3c98b49713e560768bf6c3b88a221e0a3317833ad79c584a11abb55b15a3190
|
|
@@ -4,8 +4,11 @@ if [ "$IGNORE_CACHE" != "1" ] && command -v tlmgr > /dev/null; then
|
|
|
4
4
|
tex_em_cache=1
|
|
5
5
|
echo TinyTeX não será instalado pois foi encontrado no cache.
|
|
6
6
|
else
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
# O mirror //linorg.usp.br/CTAN está muito lento, uilizando outro
|
|
8
|
+
wget -qO- "https://yihui.name/gh/tinytex/tools/install-unx.sh" | CTAN_REPO=http://mirrors.rit.edu/CTAN/systems/texlive/tlnet sh
|
|
9
|
+
tlmgr option repository http://mirrors.rit.edu/CTAN/systems/texlive/tlnet
|
|
10
|
+
|
|
11
|
+
~/bin/tlmgr --verify-repo=none install \
|
|
9
12
|
abntex2 \
|
|
10
13
|
babel-portuges \
|
|
11
14
|
biber \
|
data/lib/limarka/version.rb
CHANGED