From 43df2a5d1901d55d7860bb0e98523297b57a139f Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Thu, 29 Jan 2026 14:51:56 -0400 Subject: [PATCH 1/2] fix: normalize Prince versions to DocRaptor Pipeline 9.2 --- scripts/pressbooks_required_libraries.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/pressbooks_required_libraries.sh b/scripts/pressbooks_required_libraries.sh index 7f9b222..76fe399 100755 --- a/scripts/pressbooks_required_libraries.sh +++ b/scripts/pressbooks_required_libraries.sh @@ -15,11 +15,11 @@ rm epubcheck-4.2.6.zip if [ "$ARCHITECTURE" ]; then if [ "$ARCHITECTURE" == amd64 ]; then aptitude install gdebi --assume-yes - wget https://www.princexml.com/download/prince_15-1_debian11_amd64.deb - gdebi prince_15-1_debian11_amd64.deb --n - rm prince_15-1_debian11_amd64.deb + wget https://www.princexml.com/download/prince_14.4-1_debian11_amd64.deb + gdebi prince_14.4-1_debian11_amd64.deb --n + rm prince_14.4-1_debian11_amd64.deb else - wget https://www.princexml.com/download/prince-20221028-linux-generic-aarch64.tar.gz + wget https://www.princexml.com/download/prince-20221028-linux-generic-aarch64.tar.gz # Corresponds to Prince 14.4 tar -xvzf prince-20221028-linux-generic-aarch64.tar.gz rm prince-20221028-linux-generic-aarch64.tar.gz cd prince-20221028-linux-generic-aarch64 @@ -49,4 +49,4 @@ rm SaxonHE9-9-1-7J.zip cp /app/files/saxon9he-xquery /usr/bin/saxon9he-xquery cp /app/files/saxon9he-xslt /usr/bin/saxon9he-xslt chmod 755 /usr/bin/saxon9he-xquery -chmod 755 /usr/bin/saxon9he-xslt \ No newline at end of file +chmod 755 /usr/bin/saxon9he-xslt From ce03b4ee62d8ebe8415de2c6b1aa26f6c6263039 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Thu, 29 Jan 2026 14:57:25 -0400 Subject: [PATCH 2/2] fix: normalize Prince versions to DocRaptor Pipeline 10.1 --- scripts/pressbooks_required_libraries.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/pressbooks_required_libraries.sh b/scripts/pressbooks_required_libraries.sh index 76fe399..d542c29 100755 --- a/scripts/pressbooks_required_libraries.sh +++ b/scripts/pressbooks_required_libraries.sh @@ -15,17 +15,17 @@ rm epubcheck-4.2.6.zip if [ "$ARCHITECTURE" ]; then if [ "$ARCHITECTURE" == amd64 ]; then aptitude install gdebi --assume-yes - wget https://www.princexml.com/download/prince_14.4-1_debian11_amd64.deb - gdebi prince_14.4-1_debian11_amd64.deb --n - rm prince_14.4-1_debian11_amd64.deb + wget https://www.princexml.com/download/prince_15.4.1-1_debian11_arm64.deb + gdebi prince_15.4.1-1_debian11_arm64.deb --n + rm prince_15.4.1-1_debian11_arm64.deb else - wget https://www.princexml.com/download/prince-20221028-linux-generic-aarch64.tar.gz # Corresponds to Prince 14.4 - tar -xvzf prince-20221028-linux-generic-aarch64.tar.gz - rm prince-20221028-linux-generic-aarch64.tar.gz - cd prince-20221028-linux-generic-aarch64 + wget https://www.princexml.com/download/prince-15.4.1-linux-generic-aarch64.tar.gz + tar -xvzf prince-15.4.1-linux-generic-aarch64.tar.gz + rm prince-15.4.1-linux-generic-aarch64.tar.gz + cd prince-15.4.1-linux-generic-aarch64 echo "" | ./install.sh /usr # install to /usr automatically cd .. - rm -rf prince-20221028-linux-generic-aarch64 + rm -rf prince-15.4.1-linux-generic-aarch64 fi else echo "You should configure your architecture in config_services/.env"