dotfiles.git

commit 0effe7bfa0e7d53d80dd7fe9595069392b737b3d

Author: Adam <git@apiote.xyz>

delete podman/lilypond

 .config/podman/lilypond/Dockerfile | 17 -----------------
 .config/podman/lilypond/lilyfy.sh | 14 --------------


diff --git a/.config/podman/lilypond/Dockerfile b/.config/podman/lilypond/Dockerfile
deleted file mode 100644
index b9e6397dbdf805eddb422446da8c7e5c7ed5ebf4..0000000000000000000000000000000000000000
--- a/.config/podman/lilypond/Dockerfile
+++ /dev/null
@@ -1,17 +0,0 @@
-# required testing for findutils >= 4.5
-FROM debian:testing
-
-RUN apt-get update && apt-get install -y wget bzip2 ghostscript openssh-client git && rm -rf /var/lib/apt/lists/*
-
-WORKDIR /root
-
-#COPY diff.sh .
-#RUN chmod +x diff.sh
-ADD https://lilypond.org/download/binaries/linux-64/lilypond-2.20.0-1.linux-64.sh ./
-RUN chmod +x lilypond-2.20.0-1.linux-64.sh
-#RUN ./diff.sh
-RUN ./lilypond-2.20.0-1.linux-64.sh --batch --prefix /root/stable
-RUN rm lilypond-2.20.0-1.linux-64.sh
-COPY lilyfy.sh /root/stable/bin
-
-ENV PATH /root/stable/bin:$PATH




diff --git a/.config/podman/lilypond/lilyfy.sh b/.config/podman/lilypond/lilyfy.sh
deleted file mode 100644
index a9ae14f39f737286322f79b503ff8cca404bc685..0000000000000000000000000000000000000000
--- a/.config/podman/lilypond/lilyfy.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-mkdir -p pdfs
-
-FILES=`git diff-tree --no-commit-id --name-only -r "$CI_BUILD_REF" | grep ".ly$" | grep -v setup.ly | wc -l`
-
-if [ $FILES -eq 0 ]; then
-	echo No lilypond file changed, rebuilding all files
-	find . -name \*.ly ! -name setup.ly -execdir lilypond "--output=`pwd`/pdfs/{}" "{}" \;
-else
-	echo Building changed files.
-	git diff-tree --no-commit-id --name-only -r "$CI_BUILD_REF" | grep ".ly$" | grep -v setup.ly | xargs -I % find "%" -name \*.ly -execdir lilypond "--output=`pwd`/pdfs/{}" "{}" \;
-fi
-