Skip to content

Commit

Permalink
ci: make install (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
LogCreative committed Dec 23, 2022
1 parent 3886cbf commit 4cec95d
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 32 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ build: prepare
format:
latexindent main.tex -l latexindent.yaml -w $(LATEXINDENT_ARGS)

# Install the package to TeX Live / MacTeX
# For MiKTeX users, if you encounter `please use --texmfhome option`,
# I wish you could do the job manually by using
# `l3build install --texmfhome path/to/install`.
# For more details, see the development guide.
install:
cd src && l3build install

# Clean temporary files
clean:
latexmk -C $(LATEXMK_ARGS)
Expand Down
27 changes: 21 additions & 6 deletions src/MANIFEST.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 20 additions & 6 deletions src/build.lua
Original file line number Diff line number Diff line change
Expand Up @@ -291,15 +291,28 @@ end
-- FIXME: subfolders could not be detected. Use plain text for temporary fix.
manifest_setup = function ()
local groups = {
{
subheading = "Minimal manifest",
description = [[
The following group lists all the necessary files that required by the runtime.
You could install these files to your TeX distribution or distribute them with
your main document.]]
},
{
name = "Minimal workset",
description = "* vi/",
dir = tdsdir.."/tex/"..moduledir,
files = {"*.*"},
exclude = {".",".."},
flag = false,
skipfiledescription = true,
},
{
subheading = "Repository manifest",
description = [[
The following groups list the files included in the development repository of the package.
Files listed with a ‘†’ marker are included in the TDS but not CTAN files, and files listed
with ‘‡’ are included in both.
> **Minimal workset**: All files in **Derived files** and **Graphic resources**.
Or directly use files in **TeX files (TDS)**.
]],
},
{
Expand Down Expand Up @@ -435,9 +448,10 @@ The following group lists the files included in the CTAN package.
{
subheading = "Online manifest",
description = [[
The following group lists the files included in the Online distribution.
You could upload the package to any online plateforms or use it as the
minimal workset on the local machine.
The following group lists the files included in the online distribution.
You could upload the package to any online plateforms. Compared with
**Minimal workset**, this distribution comes with all the plugins and
quick start guide as the main file.
You could generate the package by going to the root directory and
using the command `make build-online` in the terminal.
]],
Expand Down
58 changes: 38 additions & 20 deletions src/doc/sjtubeamerdevguide.tex
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ \subsection{Build Overview}
\begin{itemize}
\item Unpacking Doc\TeX{} files.
\item Generating documentation.
\item Caching and clean demos.
\item Caching and cleaning demos.
\item Generating Visual Studio Code snippets (as is in
\texttt{.vscode/sjtubeamer.code-snippets})
\item Generating \texttt{MANIFEST.md} to show the repository structure.
Expand All @@ -241,7 +241,7 @@ \subsection{Build Overview}
\item Compiling \verb"main.tex" for users.
\item Building the cover collection.
\item Formatting codes.
\item Build the online distribution \texttt{sjtubeamer-online.zip}.
\item Building the online distribution \texttt{sjtubeamer-online.zip}.
\end{itemize}

\subsection{l3build}\label{sec:l3build}
Expand All @@ -258,12 +258,29 @@ \subsubsection{Built-In Commands}\label{sec:builtincmd}

\fcmd{l3build install} This command will install current version from
\verb"source" to your \TeX{} distribution. Remember to update the
\verb"l3build" to the latest version to avoid misbehaving. This
command requires an argument \verb"--texmfhome" option to specify the
install path, which could be obtained from Mik\TeX{} Console or the
\verb"tlmgr". Then, refresh the database of filenames in your TeX{}
distribution. This command is useful if you want this template to be globally
available for all documents on your computer.
\verb"l3build" to the latest version to avoid misbehaving.

For MiK\TeX{} users, this command requires an argument
\begin{verbatim}
l3build install --texmfhome /path/to/install
\end{verbatim}
to specify the install path, which could be obtained from Mik\TeX{} Console
(Settings $\rightarrow$ Directories $\rightarrow$ TEXMF root directories
(Install)). It is often not necessary for \TeX{} Live and Mac\TeX{} users,
unless you want to install the files in a different place other than
\verb"TEXMFHOME" (the value could be obtained by
\verb"kpsewhich -var-value TEXMFHOME"). If you specify the package location by
\verb"--texmfhome", then you need to refresh the database of filenames in your
TeX{} distribution by \verb"texhash" or \verb"sudo texhash" to elevate the
privileges if it prompts ``directory not writable. Skipping...''. In fact, if
the filenames stay the same, you don't need to refresh the database (no need to
use the command \verb"texhash" after the first-time installation, basically).
You don't need to \verb"texhash" at all if you follow the default behavior of
installing the package into \verb"TEXMFHOME" (which will be detected
automatically without the database).

This command is useful if you want this template to be globally available for
all documents on your computer.

\fcmd{l3build unpack} This command will unpack the source code and create a
sandbox environment in \verb"build/local". You can create your own test
Expand All @@ -272,26 +289,19 @@ \subsubsection{Built-In Commands}\label{sec:builtincmd}

\fcmd{l3build check} Process a regression test, with an optional parameter to
perform one of the following tests:
\begin{center}
\ttfamily color font inner outer sjtuvi
\end{center}
\begin{verbatim}
color font inner outer sjtuvi
\end{verbatim}
which will show if the module is standing-free. If the compilation error
occurs, please check if your code uses one definition from another module
without requiring it first, or an undefined control sequence occurs.

This command will also move the generated style files to the root directory.

\fcmd{l3build doc} This command will generate the documentation of this
package.
% We set an overall testing file \verb"doc/min.tex" to test all features of \themename.
% \begin{center}
% unpack $\rightarrow$ \verb"min.tex" $\rightarrow$ documentations
% \end{center}
Since the doc has a lot of dependencies (or unit tests), you can cache the demo
package. Since the doc has a lot of dependencies (or unit tests), you can cache the demo
files to \verb"support/tutorial" directory. This could be done by the exclusive
\verb"l3build cache-demo" in Section \ref{sec:exclcmd}.
% Change the variable in \verb"build.lua": \verb"cachedemo=true" to cache the demo automatically, and remove the variable to clean the cached files.
% We highly recommend that using *nix to compile the doc.

\fcmd{l3build save color} If you make some modification to the framework
(except \verb"sjtucover") and change the result. To save the current
Expand Down Expand Up @@ -431,6 +441,14 @@ \subsection{Continuous Integration}\label{sec:make}
For those who are familiar with \verb"makefile" system, the following commands
might be helpful to build the package under the root directory:

\fcmd{make install} This command will run \verb"l3build install", which installs
the unpacked files to \TeX{} Live and Mac\TeX{} \verb"TEXMFHOME" directory
according to \verb"l3build" documentation.
Unfortunately, it is likely to fail on MiK\TeX{} since the \verb"TEXMFHOME" is
usually empty. Hope that MiK\TeX{} users won't use this command or try to modify
the \verb"Makefile" to add some parameters mentioned in Section \ref{sec:l3build}
to meet your need.

\fcmd{make generate} This command will unpack the Doc\TeX{} files into style
files and update the generated files in the root directory.

Expand Down Expand Up @@ -1050,7 +1068,7 @@ \subsection{Beamer Interface}\label{sec:beamer}
package \cite{beamerman}. You can acquire the doc by the terminal
command:
\begin{verbatim}
texdoc beame
texdoc beamer
\end{verbatim}
Then, you could choose to use some preset theme, or call the macro to control
the appearance of each component.
Expand Down

0 comments on commit 4cec95d

Please sign in to comment.