From cad309b6a507bc75ad94fc20b3120092249830a1 Mon Sep 17 00:00:00 2001 From: Andy Grunwald Date: Sun, 26 Jul 2026 22:36:46 +0200 Subject: [PATCH] Remove software-properties-common from Apache Tika install (#16054) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The container was switched from bookworm to trixie in #16036, but software-properties-common does not exist in Debian 13. apt aborts the whole dependency line on the single missing package (exit code 100), so a fresh install never gets past "Installing Dependencies". The package only provides add-apt-repository, which this script never calls — no PPAs or custom repos are configured anywhere. It is a dead dependency, so dropping it needs no replacement; every other package on that line exists in trixie. Fixes #16053 Co-authored-by: Claude Opus 5 (1M context) --- install/apache-tika-install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/install/apache-tika-install.sh b/install/apache-tika-install.sh index ea36d2043..5c277e2bf 100644 --- a/install/apache-tika-install.sh +++ b/install/apache-tika-install.sh @@ -15,7 +15,6 @@ update_os msg_info "Installing Dependencies" $STD apt-get install -y \ - software-properties-common \ gdal-bin \ tesseract-ocr \ tesseract-ocr-eng \