Skip to content

Commit

Permalink
Prepare the package for the 2.8.2 release and pretest TeX Live 2020
Browse files Browse the repository at this point in the history
  • Loading branch information
Witiko committed Mar 19, 2020
1 parent 81c9dae commit e27140d
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 21 deletions.
24 changes: 10 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,39 +10,35 @@ jobs:
steps:
- restore_cache:
keys:
- markdown-v2.8.1-tl2019-{{ .Branch }}
- markdown-v2.8.1-tl2019-master
- markdown-v2.8.1-tl2019-
- markdown-v2.8.2-tl2020_pretest-{{ .Branch }}
- markdown-v2.8.2-tl2020_pretest-master
- markdown-v2.8.2-tl2020_pretest-
# Install TeX Live
- run: |
set -e
mkdir -p ~/apt-cache/partial
sudo apt-get -o dir::cache::archives="$HOME"/apt-cache update
if [[ ! -e ~/texlive-cache ]]; then
cd /tmp
sudo apt-get -o dir::cache::archives="$HOME"/apt-cache install p7zip-full
wget ftp://tug.org/tex-archive/systems/texlive/Images/texlive2019.iso
7z x texlive2019.iso
chmod +x install-tl
rsync -v -a --delete --exclude="mactex*" ftp.cstug.cz::pub/tex/local/tlpretest /tmp
cd /tmp/tlpretest
sudo ./install-tl <<<I
sudo mv /usr/local/texlive ~/texlive-cache
cd -
fi
# Install additional packages
- run: |
set -e
sudo apt-get -o dir::cache::archives="$HOME"/apt-cache install pandoc parallel
sudo pip install pygments
mkdir -p ~/apt-cache/partial
sudo apt-get -o dir::cache::archives="$HOME"/apt-cache update
sudo apt-get -o dir::cache::archives="$HOME"/apt-cache install pandoc parallel python-pygments
- save_cache:
key: markdown-v2.8.1-tl2019-{{ .Branch }}
key: markdown-v2.8.2-tl2020_pretest-{{ .Branch }}
paths:
- ~/apt-cache/partial
- ~/texlive-cache
# Add TeX Live to the PATH environmental variable
- run: |
set -e
sudo mv ~/texlive-cache /usr/local/texlive
echo 'export PATH=/usr/local/texlive/2019/bin/x86_64-linux:"$PATH"' >>$BASH_ENV
echo 'export PATH=/usr/local/texlive/2020/bin/x86_64-linux:"$PATH"' >>$BASH_ENV
- checkout
# Install the Markdown package
- run: |
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Copyright (C) 2016-2018 Vít Novotný
Copyright (C) 2016-2020 Vít Novotný

This work may be distributed and/or modified under the
conditions of the LaTeX Project Public License, either version 1.3
Expand Down
4 changes: 2 additions & 2 deletions docstrip.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
-- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE^^J%
-- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.^^J%
-- ^^J%
-- Copyright (C) 2016-2019 Vít Novotný^^J%
-- Copyright (C) 2016-2020 Vít Novotný^^J%
-- ^^J%
-- This work may be distributed and/or modified under the^^J%
-- conditions of the LaTeX Project Public License, either version 1.3^^J%
Expand Down Expand Up @@ -62,7 +62,7 @@
\let\luapostamble\empty
\declarepreamble\texpreamble
Copyright (C) 2016-2019 Vít Novotný
Copyright (C) 2016-2020 Vít Novotný
This work may be distributed and/or modified under the
conditions of the LaTeX Project Public License, either version 1.3
Expand Down
8 changes: 4 additions & 4 deletions markdown.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -570,11 +570,11 @@ documentation][techdoc].
% \fi
% \begin{macrocode}
local metadata = {
version = "2.8.1",
version = "2.8.2",
comment = "A module for the conversion from markdown to plain TeX",
author = "John MacFarlane, Hans Hagen, Vít Novotný",
copyright = {"2009-2016 John MacFarlane, Hans Hagen",
"2016-2019 Vít Novotný"},
"2016-2020 Vít Novotný"},
license = "LPPL 1.3"
}

Expand Down Expand Up @@ -5660,8 +5660,8 @@ pdftex --shell-escape document.tex
%
% \end{markdown}
% \begin{macrocode}
\def\markdownLastModified{2019/04/30}%
\def\markdownVersion{2.8.1}%
\def\markdownLastModified{2020/03/20}%
\def\markdownVersion{2.8.2}%
% \end{macrocode}
% \par
% \begin{markdown}
Expand Down

0 comments on commit e27140d

Please sign in to comment.