limarka 20.6.8.pre.355 → 20.6.16.pre.361

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7cdafa677efa2fd346b9dac52a945a5893dab02f72fed588e57370227bedb2c5
4
- data.tar.gz: 371dcc906bcad44cc3ae5aa9172c31d9a55d63ffb503f92613ffae3c18c288a3
3
+ metadata.gz: a2d5c413681ea0f6376568043c7bf16dc63669e139a3395a4d5d0dbedce76f3b
4
+ data.tar.gz: 4089b087a39d8fa21a6273d02e9b342f6a2d2922d9b3b719c4a3e3f5c631bca2
5
5
  SHA512:
6
- metadata.gz: dd682babf15c67d4e17a8d845060ae6ced3f3865bdee0dcf15992a51227eb753711a37e46d227744cac6b7efbcf5b1654e8b8777c4d066f3cb235b59e2a6e511
7
- data.tar.gz: f5b836fd5727ea92f5b1323d36b45d7de6d03252c08f18c46e0d19ac14002d65138d010b3e2b29d1ee6048e337b19546b6f68a45145e11ad96c241d3f4f35779
6
+ metadata.gz: a59cd1a46af023b0967d66a544158a4169a7fab0429b2ba8383b655f2d796a0031528b2e1b365aff4a3fb6864e1ec770ab320fdaf842625dfd036a743dc646cc
7
+ data.tar.gz: a4b9bd9be3f13702ab2932502591b7d4b5f175e4b7a6b14ff83469d6e6d2a33d42e92cc3ebd6728881983449e720b31808844ab7fa2c480411e089bfcdf55ce3
@@ -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
@@ -50,7 +50,8 @@ jobs:
50
50
  - cat tmp/simples/xxx-trabalho-academico.tex
51
51
  - cat tmp/simples/xxx-trabalho-academico.log
52
52
  - cat tmp/simples/xxx-trabalho-academico.txt
53
- - stage: deploy
53
+ - stage: testes
54
+ name: "Deploy docker and rubygems"
54
55
  install: skip
55
56
  script: echo tag $TRAVIS_TAG slug $TRAVIS_REPO_SLUG branch $TRAVIS_BRANCH
56
57
  deploy:
@@ -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 - < containers/ruby-latex-pandoc.dockerfile
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,3 +1,5 @@
1
+ #!/usr/bin/env sh
2
+
1
3
  # $1: TAG
2
4
  # http://codewiki.wikidot.com/shell-script:if-else
3
5
  if [ -n "$1" ]
@@ -13,7 +15,7 @@ else
13
15
  ltags="limarka/limarka:dev"
14
16
  fi
15
17
 
16
- echo "Aplicando tags..."
18
+ echo "Aplicando tags: $rtptags e $ltags"
17
19
  for tag in $rtptags
18
20
  do
19
21
  docker tag ruby-latex-pandoc "$tag"
@@ -62,7 +62,6 @@ if [ "$codename" = "bionic" ]; then
62
62
  ruby-ffi \
63
63
  libffi-dev \
64
64
  unzip \
65
- xclip \
66
65
  wget \
67
66
  perl \
68
67
  luajit \
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env sh
2
2
 
3
- sudo apt-get install -y -qq \
3
+ apt-get install -y -qq \
4
4
  pdfgrep \
5
5
  poppler-utils
@@ -1,6 +1,16 @@
1
1
  #!/usr/bin/env sh
2
2
 
3
- sudo apt-get install -y -qq \
4
- language-pack-pt \
3
+ # Algumas dependencias de desenvolvimento são adicionadas,
4
+ # as dapendencias dos gems do limarka precisam ser compilados.
5
+ # https://github.com/travis-ci/travis.rb/issues/558
6
+
7
+ apt-get install -y -qq \
8
+ gcc \
9
+ libffi-dev \
10
+ libfontconfig \
5
11
  locales \
6
- unzip
12
+ make \
13
+ perl-doc \
14
+ ruby-dev \
15
+ unzip \
16
+ wget
@@ -17,4 +17,4 @@ else
17
17
  wget -c $PANDOC_DEB
18
18
  fi
19
19
 
20
- sudo dpkg -i pandoc-*.deb && rm pandoc-*.deb
20
+ dpkg -i pandoc-*.deb && rm pandoc-*.deb
@@ -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
@@ -0,0 +1,71 @@
1
+ FROM alpine:3.7
2
+
3
+ LABEL maintainer="eduardo.ufpb@gmail.com"
4
+
5
+ # Tentamos seguir as melhores práticas:
6
+ # https://docs.docker.com/develop/develop-images/dockerfile_best-practices/
7
+
8
+ RUN apk update \
9
+ && apk upgrade \
10
+ && apk add --no-cache --update \
11
+ alpine-sdk \
12
+ build-base \
13
+ fontconfig \
14
+ pdfgrep \
15
+ perl \
16
+ poppler-utils \
17
+ ruby-dev \
18
+ ruby \
19
+ unzip \
20
+ wget
21
+
22
+ # Instala tinytex (/root/.TinyTex)
23
+ RUN wget -qO- "https://yihui.name/gh/tinytex/tools/install-unx.sh" | sh
24
+ ENV PATH="/root/bin:${PATH}"
25
+
26
+ # instala bibliotecas para o abntex2/limarka
27
+ RUN tlmgr install \
28
+ abntex2 \
29
+ babel-portuges \
30
+ bookmark \
31
+ enumitem \
32
+ epstopdf-pkg \
33
+ iftex \
34
+ lastpage \
35
+ lipsum \
36
+ listings \
37
+ caption \
38
+ memoir \
39
+ microtype \
40
+ pdflscape \
41
+ pdfpages \
42
+ textcase \
43
+ xcolor
44
+
45
+ # Configurando o idioma português
46
+ ENV MUSL_LOCALE_DEPS cmake make musl-dev gcc gettext-dev libintl
47
+ ENV MUSL_LOCPATH /usr/share/i18n/locales/musl
48
+
49
+ RUN apk add --no-cache \
50
+ $MUSL_LOCALE_DEPS \
51
+ && wget https://gitlab.com/rilian-la-te/musl-locales/-/archive/master/musl-locales-master.zip \
52
+ && unzip musl-locales-master.zip \
53
+ && cd musl-locales-master \
54
+ && cmake -DLOCALE_PROFILE=OFF -D CMAKE_INSTALL_PREFIX:PATH=/usr . && make && make install \
55
+ && cd .. && rm -r musl-locales-master
56
+
57
+ ENV LANG pt_BR.UTF8
58
+
59
+ # Instalação do pandoc
60
+ RUN wget -O pandoc.tar.gz https://github.com/jgm/pandoc/releases/download/2.9.2.1/pandoc-2.9.2.1-linux-amd64.tar.gz \
61
+ && tar xvzf pandoc.tar.gz --strip-components 1 -C /usr/local/ && rm pandoc.tar.gz
62
+
63
+ RUN gem install limarka; exit 0
64
+
65
+ RUN apk del ruby-dev build-base wget alpine-sdk unzip cmake make musl-dev gcc
66
+
67
+ VOLUME ["/trabalho"]
68
+ WORKDIR /trabalho
69
+
70
+ CMD ["--help"]
71
+ ENTRYPOINT ["/usr/local/bundle/bin/limarka"]
@@ -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 bin/instaladores/tinytex_install.sh
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
@@ -47,7 +47,6 @@ module Limarka
47
47
  puts "limarka "+Limarka::VERSION
48
48
  s = `pandoc --version`
49
49
  s << `ruby --version`
50
- s << `pdftk --version`
51
50
  s << `latexmk --version`
52
51
  s << `xelatex --version`
53
52
  puts s
@@ -74,7 +73,6 @@ module Limarka
74
73
  end
75
74
 
76
75
  method_option :interativo, :aliases => '-i', :desc => 'Solicita os parâmetros de forma interativa.', :type => :boolean, :default => false
77
- method_option :clipboard, :aliases => '-c', :desc => 'Utiliza o conteúdo da área de transferência como o nome do arquivo.', :type => :boolean, :default => false
78
76
 
79
77
  # method_option :arquivo, :aliases => '-a', :desc => 'Caminho completo ou apenas o nome do arquivo na pasta imagens. Somente arquivos existêntes são válidos. Se não for especificado e o nome do arquivo esteja copiado (na área de transferência), e o arquivo existir, ele será utilizado.'
80
78
  method_option :legenda, :aliases => '-l', :desc => 'Legenda da figura.', :default => "Legenda da figura."
@@ -88,10 +86,6 @@ DESC
88
86
  desc "fig ARQUIVO", "Imprime códigos para inclusão de imagens em conformidade com ABNT (em LaTeX)"
89
87
  def fig(arquivo=nil)
90
88
 
91
- if (options[:clipboard]) then
92
- arquivo = Clipboard.paste # Ler do clipboard, requer xclip: sudo apt-get install xclip
93
- end
94
-
95
89
  if (arquivo) then
96
90
  if arquivo.start_with?("file://") then
97
91
  arquivo = arquivo[7,-1]
@@ -12,16 +12,12 @@ module Limarka
12
12
  class Ref < Thor
13
13
  include Thor::Actions
14
14
 
15
- method_option :clipboard, :aliases => '-c', :desc => 'Incluir referência bibtex do clipboard (área de transferência)', :default => false, :type => :boolean
16
15
  method_option :bibfile, :aliases => '-f', :desc => 'Arquivo de referências bibtex onde será incluído a referência', :default => "referencias.bib", :type => :string
17
16
  desc "add", "Adiciona referência ao arquivo de bibliografia."
18
17
  long_desc <<-DESC
19
- Quando você estiver navegando poderá copiar a referência bibtex (do google acadêmico, Zotero, etc.) e incluir ao arquivo de gerência de bibliografia (geralmente referencias.bib) utilizando esse comando. A inclusão do texto ocorrerá da entrada padrão, a não ser que a leitura do clipboard seja acionada (opção `-c`).
18
+ Quando você estiver navegando poderá copiar a referência bibtex (do google acadêmico, Zotero, etc.) e incluir ao arquivo de gerência de bibliografia (geralmente referencias.bib) utilizando esse comando. A inclusão do texto ocorrerá da entrada padrão.
20
19
  DESC
21
20
  def add
22
- if (options[:clipboard]) then
23
- referencia = $stdin.read
24
- end
25
21
  begin
26
22
  entry = BibTeX.parse(referencia)
27
23
  error = entry.length.zero?
@@ -1,4 +1,4 @@
1
1
  module Limarka
2
2
  # O Versionamento é ano e mês
3
- VERSION = "20.6.8"
3
+ VERSION = "20.6.16"
4
4
  end
@@ -39,7 +39,6 @@ Gem::Specification.new do |spec|
39
39
  spec.add_development_dependency "cucumber"
40
40
  spec.add_development_dependency "aruba"
41
41
 
42
- #spec.add_dependency "clipboard"
43
42
  spec.add_dependency "ffi"
44
43
  spec.add_dependency "colorize"
45
44
  #spec.add_dependency "pdf-forms", "~> 1.2"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: limarka
3
3
  version: !ruby/object:Gem::Version
4
- version: 20.6.8.pre.355
4
+ version: 20.6.16.pre.361
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eduardo de Santana Medeiros Alexandre
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-06-16 00:00:00.000000000 Z
11
+ date: 2020-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -320,6 +320,7 @@ files:
320
320
  - changelogs/unreleased/.gitkeep
321
321
  - changelogs/unreleased/20190705161205868_simplificando.yml
322
322
  - changelogs/unreleased/20200608091738394_remove_dependencias.yml
323
+ - containers/alphine-ruby-latex-pandoc.dockerfile
323
324
  - containers/limarka.dockerfile
324
325
  - containers/ruby-latex-pandoc.dockerfile
325
326
  - docs/paper/codemeta.json