From 43a7f0730c807f0b72574caacf3c551f1c607662 Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Wed, 14 Apr 2021 17:51:30 +0300 Subject: [PATCH] termux-tools: termux-change-repo: refer to termux.org as default repository We have never used it as standalone host but instead as persistent URL pointing to the actual stable repository or other mirror shown by termux-change-repo utility. --- packages/termux-tools/build.sh | 2 +- packages/termux-tools/termux-change-repo | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/termux-tools/build.sh b/packages/termux-tools/build.sh index 316a36c5d..ea21ce0e9 100644 --- a/packages/termux-tools/build.sh +++ b/packages/termux-tools/build.sh @@ -2,7 +2,7 @@ TERMUX_PKG_HOMEPAGE=https://termux.com/ TERMUX_PKG_DESCRIPTION="Basic system tools for Termux" TERMUX_PKG_LICENSE="GPL-3.0" TERMUX_PKG_MAINTAINER="@termux" -TERMUX_PKG_VERSION=0.116 +TERMUX_PKG_VERSION=0.117 TERMUX_PKG_SKIP_SRC_EXTRACT=true TERMUX_PKG_PLATFORM_INDEPENDENT=true TERMUX_PKG_ESSENTIAL=true diff --git a/packages/termux-tools/termux-change-repo b/packages/termux-tools/termux-change-repo index 5318c2a1f..cac43d9c2 100755 --- a/packages/termux-tools/termux-change-repo +++ b/packages/termux-tools/termux-change-repo @@ -8,8 +8,8 @@ if [ "$1" == "--help" ] || [ "$1" == "-help" ]; then fi select_repository() { - if [ "$1" == "Official repositories" ]; then - echo "[*] Official repositories selected" + if [ "$1" == "Default repositories" ]; then + echo "[*] Default repositories selected" MAIN="https://termux.org/packages/" ROOT="https://dl.bintray.com/grimler/termux-root-packages-24" GAME="https://dl.bintray.com/grimler/game-packages-24" @@ -117,7 +117,7 @@ dialog \ "${REPOSITORIES[@]}" --and-widget \ --title "termux-change-repo" --clear \ --radiolist "Which mirror do you want to use?" 0 0 0 \ - "Official repositories" "Hosted on Bintray" on \ + "Default repositories" "The default package hosting" on \ "Mirrors by A1batross" "Hosted on termux.mentality.rip" off \ "Mirrors by Grimler" "Hosted on grimler.se" off \ "Mirrors by Xeffyr" "Hosted on IPFS" off \