From 6369682e2072d4cbca5e7c3c16e3e73f479de8e0 Mon Sep 17 00:00:00 2001 From: Robert Kirkman Date: Mon, 27 Apr 2026 03:24:45 -0500 Subject: [PATCH 1/2] chore(generate): update termux-pacman bootstrap version format - After this PR https://github.com/termux-pacman/termux-packages/pull/402 the termux-pacman bootstrap version format now has a `.` symbol instead of the second `-` symbol, which has been done in order to make the format match that which termux-apt has had since https://github.com/termux/termux-packages/commit/83dc034a1b3eb63bd43c33a5f5fe749c49fa6bae, so termux-docker needs to be updated to match, otherwise an error will occur if the bootstrap version is bumped without updating the format. - Bump both bootstrap versions at the same time to 2026.04.26, for consistency. --- generate.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generate.sh b/generate.sh index 3e90e9a..7c8b854 100755 --- a/generate.sh +++ b/generate.sh @@ -52,7 +52,7 @@ fi case "${TERMUX_PACKAGE_MANAGER}" in apt) TERMUX_DOCKER__IMAGE_NAME="termux/termux-docker" - TERMUX_DOCKER__BOOTSTRAP_VERSION="2026.04.05-r1%2Bapt.android-7" + TERMUX_DOCKER__BOOTSTRAP_VERSION="2026.04.26-r1%2Bapt.android-7" TERMUX_DOCKER__BOOTSTRAP_SRCURL="https://github.com/termux/termux-packages/releases/download/bootstrap-${TERMUX_DOCKER__BOOTSTRAP_VERSION}/bootstrap-${TERMUX_ARCH}.zip" declare -A REPO_BASE_URLS=( ["main"]="https://packages-cf.termux.dev/apt/termux-main/dists/stable/main" @@ -61,7 +61,7 @@ case "${TERMUX_PACKAGE_MANAGER}" in ;; pacman) TERMUX_DOCKER__IMAGE_NAME="termux/termux-docker-pacman" - TERMUX_DOCKER__BOOTSTRAP_VERSION="2026.04.05-r1%2Bpacman-android-7" + TERMUX_DOCKER__BOOTSTRAP_VERSION="2026.04.26-r1%2Bpacman.android-7" TERMUX_DOCKER__BOOTSTRAP_SRCURL="https://github.com/termux-pacman/termux-packages/releases/download/bootstrap-${TERMUX_DOCKER__BOOTSTRAP_VERSION}/bootstrap-${TERMUX_ARCH}.zip" declare -A REPO_BASE_URLS=( ["main"]="https://service.termux-pacman.dev/main" From 5219048ce9ef8fc0a674d08c8b5d5b5169a29dd1 Mon Sep 17 00:00:00 2001 From: Robert Kirkman Date: Mon, 27 Apr 2026 03:27:40 -0500 Subject: [PATCH 2/2] chore(generate): update to new termux-pacman mirror `sync.termux-pacman.dev` - After this PR: https://github.com/termux/termux-packages/pull/29464 --- generate.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generate.sh b/generate.sh index 7c8b854..d44d305 100755 --- a/generate.sh +++ b/generate.sh @@ -64,8 +64,8 @@ case "${TERMUX_PACKAGE_MANAGER}" in TERMUX_DOCKER__BOOTSTRAP_VERSION="2026.04.26-r1%2Bpacman.android-7" TERMUX_DOCKER__BOOTSTRAP_SRCURL="https://github.com/termux-pacman/termux-packages/releases/download/bootstrap-${TERMUX_DOCKER__BOOTSTRAP_VERSION}/bootstrap-${TERMUX_ARCH}.zip" declare -A REPO_BASE_URLS=( - ["main"]="https://service.termux-pacman.dev/main" - ["root"]="https://service.termux-pacman.dev/root" + ["main"]="https://sync.termux-pacman.dev/main" + ["root"]="https://sync.termux-pacman.dev/root" ) ;; *)