From 70a753dc297327e3387471efdd998d25f1bba4dc Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sun, 25 Dec 2022 20:18:05 +0100 Subject: [PATCH] Improve microblog.pub setup. --- bullseye/setup_scripts/setup_microblogpub.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bullseye/setup_scripts/setup_microblogpub.sh b/bullseye/setup_scripts/setup_microblogpub.sh index 60f3c57..8066430 100755 --- a/bullseye/setup_scripts/setup_microblogpub.sh +++ b/bullseye/setup_scripts/setup_microblogpub.sh @@ -26,12 +26,13 @@ python_version=3.11.1 python_dirname="Python-${python_version}" su -lc "wget https://www.python.org/ftp/python/${python_version}/${python_dirname}.tgz" plom su -lc "tar -xvf ${python_dirname}.tgz" plom -su -lc "cd /home/plom/${python_dirname} && ./configure --enable-optimizations && make && make test" +# su -lc "cd /home/plom/${python_dirname} && ./configure --enable-optimizations && make && make test" +su -lc "cd /home/plom/${python_dirname} && ./configure --enable-optimizations && make" cd /home/plom/${python_dirname}/ make altinstall cd # TODO delete python build dir -su -lc "curl -sSL https://install.python-poetry.org | python3" - plom +su -lc "curl -sSL https://install.python-poetry.org | python3.11" - plom su -lc "git clone https://git.sr.ht/~tsileo/microblog.pub testing.microblog.pub" - plom su -lc "poetry config installer.parallel false" - plom su -lc "cd testing.microblog.pub && poetry install" - plom -- 2.30.2