limarka 20.6.8.pre.355 → 20.6.8.pre.357
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +5 -5
- data/bin/build-docker.sh +1 -1
- data/bin/instaladores/dependencias_desenvolvimento_install.sh +1 -1
- data/bin/instaladores/dependencias_execucao_install.sh +4 -2
- data/bin/instaladores/pandoc_install.sh +1 -1
- data/bin/instaladores/tinytex_install.sh +3 -7
- data/containers/ruby-latex-pandoc.dockerfile +4 -4
- 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: 8a2c733e824314d6872abc54ff91e405916544796c92882d2f8c74159d838850
|
4
|
+
data.tar.gz: 4a02ede8098492dc3410cf1c53f16b36f927dea016da5fda5ce815194a847b0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c298b522a9b335cea37dbe31469ccc335d1a2705e95b591fbfa09591b85aa2d33ddf3517cb9207f2fe292afbfc7364442d3472508cf77d74b1160380a3cc924
|
7
|
+
data.tar.gz: 0a6685eaba1fb7bece201424975de3a11f6dba835881f7b4b58c760dfa5ac901ff1d9f5fcea8f8dd59bf21f57176d3037c619dee24ebdd30895a2dfec41d646f
|
data/.travis.yml
CHANGED
@@ -14,8 +14,8 @@ jobs:
|
|
14
14
|
name: "Testes RUBY"
|
15
15
|
before_install:
|
16
16
|
- sudo apt-get update -qq
|
17
|
-
- bin/instaladores/dependencias_execucao_install.sh && bin/instaladores/dependencias_desenvolvimento_install.sh
|
18
|
-
- bin/instaladores/pandoc_install.sh -q
|
17
|
+
- sudo bin/instaladores/dependencias_execucao_install.sh && sudo bin/instaladores/dependencias_desenvolvimento_install.sh
|
18
|
+
- sudo bin/instaladores/pandoc_install.sh -q
|
19
19
|
before_script:
|
20
20
|
- pandoc -v
|
21
21
|
- git clone --depth=1 https://github.com/abntex/trabalho-academico-limarka.git modelo-oficial
|
@@ -29,9 +29,9 @@ jobs:
|
|
29
29
|
- $HOME/.TinyTeX
|
30
30
|
before_install:
|
31
31
|
- sudo apt-get update -qq
|
32
|
-
- bin/instaladores/dependencias_execucao_install.sh && bin/instaladores/dependencias_desenvolvimento_install.sh
|
33
|
-
- bin/instaladores/pandoc_install.sh -q
|
34
|
-
- bin/instaladores/tinytex_install.sh
|
32
|
+
- sudo bin/instaladores/dependencias_execucao_install.sh && sudo bin/instaladores/dependencias_desenvolvimento_install.sh
|
33
|
+
- sudo bin/instaladores/pandoc_install.sh -q
|
34
|
+
- sudo bin/instaladores/tinytex_install.sh
|
35
35
|
- export PATH=$PATH:~/.TinyTeX/bin/x86_64-linux
|
36
36
|
before_script:
|
37
37
|
- tlmgr --version && tlmgr show --only-installed
|
data/bin/build-docker.sh
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/env sh
|
2
2
|
# $1: limarka version
|
3
3
|
echo "Gerando imagem do limarka..."
|
4
|
-
docker build -t ruby-latex-pandoc -
|
4
|
+
docker build -t ruby-latex-pandoc . -f containers/ruby-latex-pandoc.dockerfile
|
5
5
|
docker build -t limarka - < containers/limarka.dockerfile
|
6
6
|
docker images
|
@@ -1,15 +1,11 @@
|
|
1
1
|
#!/usr/bin/env sh
|
2
2
|
|
3
|
-
if command -v tlmgr > /dev/null; then
|
3
|
+
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
|
-
fi
|
7
|
-
|
8
|
-
if [ $tex_em_cache -eq 1 ]; then
|
9
|
-
: #echo TinyTeX não será instalado.
|
10
6
|
else
|
11
7
|
wget -qO- "https://yihui.name/gh/tinytex/tools/install-unx.sh" | sh
|
12
|
-
tlmgr install \
|
8
|
+
~/bin/tlmgr install \
|
13
9
|
abntex2 \
|
14
10
|
babel-portuges \
|
15
11
|
bookmark \
|
@@ -28,5 +24,5 @@ else
|
|
28
24
|
texliveonfly \
|
29
25
|
textcase \
|
30
26
|
xcolor
|
31
|
-
tlmgr option -- autobackup 0
|
27
|
+
~/bin/tlmgr option -- autobackup 0
|
32
28
|
fi
|
@@ -9,13 +9,13 @@ WORKDIR /tmp
|
|
9
9
|
COPY bin/instaladores/dependencias_execucao_install.sh \
|
10
10
|
bin/instaladores/pandoc_install.sh \
|
11
11
|
bin/instaladores/tinytex_install.sh \
|
12
|
-
|
12
|
+
/tmp/
|
13
13
|
|
14
|
-
RUN apt-get update && dependencias_execucao_install.sh
|
14
|
+
RUN apt-get update && /tmp/dependencias_execucao_install.sh
|
15
15
|
|
16
16
|
# Instala tinytex (/root/.TinyTex)
|
17
17
|
# e bibliotecas para o abntex2/limarka
|
18
|
-
RUN
|
18
|
+
RUN IGNORE_CACHE=1 /tmp/tinytex_install.sh
|
19
19
|
ENV PATH="/root/bin:~/.TinyTeX/bin/x86_64-linux:${PATH}"
|
20
20
|
|
21
21
|
# Configurando o idioma português #175: https://hub.docker.com/_/debian/#locales
|
@@ -24,4 +24,4 @@ RUN rm -rf /var/lib/apt/lists/* \
|
|
24
24
|
ENV LANG pt_BR.UTF8
|
25
25
|
|
26
26
|
# Instalação do pandoc
|
27
|
-
RUN pandoc_install.sh
|
27
|
+
RUN /tmp/pandoc_install.sh
|