On Sat, 2023-06-03 at 08:22 -0700, Paul E. McKenney wrote: > On Sat, Jun 03, 2023 at 02:02:23PM +0900, Akira Yokosawa wrote: > > Hi Leo, > > > > Why is this "RFC" ??? :-) > > > > On Thu, 1 Jun 2023 17:38:16 -0300, Leonardo Bras wrote: > > > Arch Linux folks deprecated the texlive-most package group in favor of > > > texlive-meta, which should contain the same packages with an aditional > > > tool. > > > > > > Fix this script to use texlive-meta, so the gitlab pipeline is able to > > > build the pdfs. > > > > > > Signed-off-by: Leonardo Bras <leobras.c@xxxxxxxxx> > > > --- > > > utilities/gitlab-ci.yml | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > diff --git a/utilities/gitlab-ci.yml b/utilities/gitlab-ci.yml > > > index 42eda60f..6c3ec1e6 100644 > > > --- a/utilities/gitlab-ci.yml > > > +++ b/utilities/gitlab-ci.yml > > > @@ -19,7 +19,7 @@ generate_pdfs: > > > stage: build > > > > > > before_script: > > > - - pacman --noconfirm -Sy texlive-most fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation > > > + - pacman --noconfirm -Sy texlive-meta fig2dev ghostscript graphviz inkscape wget make which fontconfig git ttf-dejavu gnu-free-fonts ttf-liberation > > > - mkdir -p ~/.local/share/fonts && cp fonts/steel-city-comic.regular.ttf ~/.local/share/fonts/ && fc-cache > > > - wget https://sourceforge.net/projects/fig2ps/files/latest/download -O /dev/shm/fig2ps.tbz > > > - mkdir /dev/shm/build && tar -xjf /dev/shm/fig2ps.tbz -C /dev/shm/build --strip-components=1 > > > > I don't think there is anybody who bothers with gitlab-ci > > other than you. You can do whatever you'd like, I guess. > > > > FWIW, > > > > Reviewed-by: Akira Yokosawa <akiyks@xxxxxxxxx> > > Queued and pushed, thank you both! > > Thanx, Paul Thanks Paul! > > > Sidenote: > > > > Since commit 1f907f3d77dd ("Use fig2dev as fallback to fig2eps"), > > there is no need to install fig2ps in the container. > > > > Thanks, Akira > >