limarka 20.6.8.pre.354 → 20.6.8.pre.355
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/.travis.yml +3 -3
- data/containers/ruby-latex-pandoc.dockerfile +11 -33
- 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: 7cdafa677efa2fd346b9dac52a945a5893dab02f72fed588e57370227bedb2c5
|
|
4
|
+
data.tar.gz: 371dcc906bcad44cc3ae5aa9172c31d9a55d63ffb503f92613ffae3c18c288a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd682babf15c67d4e17a8d845060ae6ced3f3865bdee0dcf15992a51227eb753711a37e46d227744cac6b7efbcf5b1654e8b8777c4d066f3cb235b59e2a6e511
|
|
7
|
+
data.tar.gz: f5b836fd5727ea92f5b1323d36b45d7de6d03252c08f18c46e0d19ac14002d65138d010b3e2b29d1ee6048e337b19546b6f68a45145e11ad96c241d3f4f35779
|
data/.travis.yml
CHANGED
|
@@ -11,7 +11,7 @@ env:
|
|
|
11
11
|
jobs:
|
|
12
12
|
include:
|
|
13
13
|
- stage: testes
|
|
14
|
-
name: "Testes
|
|
14
|
+
name: "Testes RUBY"
|
|
15
15
|
before_install:
|
|
16
16
|
- sudo apt-get update -qq
|
|
17
17
|
- bin/instaladores/dependencias_execucao_install.sh && bin/instaladores/dependencias_desenvolvimento_install.sh
|
|
@@ -23,7 +23,7 @@ jobs:
|
|
|
23
23
|
- bundle exec rake spec:ruby
|
|
24
24
|
- bundle exec rake cucumber:ruby
|
|
25
25
|
- stage: testes
|
|
26
|
-
name: "Testes
|
|
26
|
+
name: "Testes com LaTeX (PDFs)"
|
|
27
27
|
cache:
|
|
28
28
|
directories:
|
|
29
29
|
- $HOME/.TinyTeX
|
|
@@ -68,5 +68,5 @@ jobs:
|
|
|
68
68
|
script: bin/build-docker.sh && bin/deploy-docker.sh $TRAVIS_TAG
|
|
69
69
|
on:
|
|
70
70
|
tags: true
|
|
71
|
-
|
|
71
|
+
after_script:
|
|
72
72
|
- cat /root/.TinyTeX/texmf-var/web2c/tlmgr.log
|
|
@@ -5,37 +5,18 @@ LABEL maintainer="eduardo.ufpb@gmail.com"
|
|
|
5
5
|
# Tentamos seguir as melhores práticas:
|
|
6
6
|
# https://docs.docker.com/develop/develop-images/dockerfile_best-practices/
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
poppler-utils \
|
|
14
|
-
unzip \
|
|
15
|
-
wget
|
|
8
|
+
WORKDIR /tmp
|
|
9
|
+
COPY bin/instaladores/dependencias_execucao_install.sh \
|
|
10
|
+
bin/instaladores/pandoc_install.sh \
|
|
11
|
+
bin/instaladores/tinytex_install.sh \
|
|
12
|
+
.
|
|
16
13
|
|
|
17
|
-
|
|
18
|
-
RUN wget -qO- "https://yihui.name/gh/tinytex/tools/install-unx.sh" | sh
|
|
19
|
-
ENV PATH="/root/bin:${PATH}"
|
|
14
|
+
RUN apt-get update && dependencias_execucao_install.sh
|
|
20
15
|
|
|
21
|
-
#
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
bookmark \
|
|
26
|
-
enumitem \
|
|
27
|
-
epstopdf-pkg \
|
|
28
|
-
ifetex \
|
|
29
|
-
lastpage \
|
|
30
|
-
lipsum \
|
|
31
|
-
listings \
|
|
32
|
-
ltcaption \
|
|
33
|
-
memoir \
|
|
34
|
-
microtype \
|
|
35
|
-
pdflscape \
|
|
36
|
-
pdfpages \
|
|
37
|
-
textcase \
|
|
38
|
-
xcolor
|
|
16
|
+
# Instala tinytex (/root/.TinyTex)
|
|
17
|
+
# e bibliotecas para o abntex2/limarka
|
|
18
|
+
RUN bin/instaladores/tinytex_install.sh
|
|
19
|
+
ENV PATH="/root/bin:~/.TinyTeX/bin/x86_64-linux:${PATH}"
|
|
39
20
|
|
|
40
21
|
# Configurando o idioma português #175: https://hub.docker.com/_/debian/#locales
|
|
41
22
|
RUN rm -rf /var/lib/apt/lists/* \
|
|
@@ -43,7 +24,4 @@ RUN rm -rf /var/lib/apt/lists/* \
|
|
|
43
24
|
ENV LANG pt_BR.UTF8
|
|
44
25
|
|
|
45
26
|
# Instalação do pandoc
|
|
46
|
-
|
|
47
|
-
RUN wget https://github.com/jgm/pandoc/releases/download/2.9.2.1/pandoc-2.9.2.1-1-amd64.deb \
|
|
48
|
-
&& dpkg -i pandoc-*.deb \
|
|
49
|
-
&& rm pandoc-*.deb
|
|
27
|
+
RUN pandoc_install.sh
|