mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-20 12:42:50 +00:00
Retire old erlang script, replace with new one
Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
This commit is contained in:
parent
3bd346bbf6
commit
e590153c6e
@ -1,47 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
set -e
|
|
||||||
set -o pipefail
|
|
||||||
|
|
||||||
_here=`dirname $(realpath $0)`
|
|
||||||
apt_sync="${_here}/apt-sync.py"
|
|
||||||
yum_sync="${_here}/yum-sync.py"
|
|
||||||
|
|
||||||
BASE_PATH="${TUNASYNC_WORKING_DIR}"
|
|
||||||
BASE_URL="https://binaries2.erlang-solutions.com"
|
|
||||||
|
|
||||||
YUM_PATH="${BASE_PATH}/centos"
|
|
||||||
UBUNTU_PATH="${BASE_PATH}/ubuntu"
|
|
||||||
DEBIAN_PATH="${BASE_PATH}/debian"
|
|
||||||
export REPO_SIZE_FILE=/tmp/reposize.$RANDOM
|
|
||||||
|
|
||||||
# generate codenames for repos
|
|
||||||
ubuntu_os=(bionic focal jammy)
|
|
||||||
debian_os=(bullseye buster)
|
|
||||||
deb_suffixes=(
|
|
||||||
mongooseim-5
|
|
||||||
mongooseim-6
|
|
||||||
esl-erlang-24
|
|
||||||
esl-erlang-25
|
|
||||||
esl-erlang-26
|
|
||||||
elixir-1.12
|
|
||||||
elixir-1.13
|
|
||||||
elixir-1.14
|
|
||||||
elixir-1.15
|
|
||||||
)
|
|
||||||
|
|
||||||
function join_by { local IFS="$1"; shift; echo "$*"; }
|
|
||||||
ubuntu_codenames=$(join_by ',' $(IFS=','; eval echo {"${ubuntu_os[*]}"}-{"${deb_suffixes[*]}"}))
|
|
||||||
debian_codenames=$(join_by ',' $(IFS=','; eval echo {"${debian_os[*]}"}-{"${deb_suffixes[*]}"}))
|
|
||||||
|
|
||||||
# =================== APT repos ===============================
|
|
||||||
|
|
||||||
"$apt_sync" --delete "${BASE_URL}/ubuntu" "$ubuntu_codenames" contrib amd64,arm64 "$UBUNTU_PATH"
|
|
||||||
echo "Ubuntu finished"
|
|
||||||
"$apt_sync" --delete "${BASE_URL}/debian" "$debian_codenames" contrib amd64,arm64 "$DEBIAN_PATH"
|
|
||||||
echo "Debian finished"
|
|
||||||
|
|
||||||
# =================== YUM repos ===============================
|
|
||||||
# "$yum_sync" "${BASE_URL}/rpm/centos/@{os_ver}/@{arch}" 7 erlang x86_64 "@{os_ver}" "$YUM_PATH"
|
|
||||||
# echo "YUM finished"
|
|
||||||
|
|
||||||
"${_here}/helpers/size-sum.sh" $REPO_SIZE_FILE --rm
|
|
34
erlang.sh
34
erlang.sh
@ -7,21 +7,43 @@ apt_sync="${_here}/apt-sync.py"
|
|||||||
yum_sync="${_here}/yum-sync.py"
|
yum_sync="${_here}/yum-sync.py"
|
||||||
|
|
||||||
BASE_PATH="${TUNASYNC_WORKING_DIR}"
|
BASE_PATH="${TUNASYNC_WORKING_DIR}"
|
||||||
BASE_URL="https://packages.erlang-solutions.com"
|
BASE_URL="${TUNASYNC_UPSTREAM_URL}"
|
||||||
|
|
||||||
YUM_PATH="${BASE_PATH}/centos"
|
CENTOS_PATH="${BASE_PATH}/centos"
|
||||||
UBUNTU_PATH="${BASE_PATH}/ubuntu"
|
UBUNTU_PATH="${BASE_PATH}/ubuntu"
|
||||||
DEBIAN_PATH="${BASE_PATH}/debian"
|
DEBIAN_PATH="${BASE_PATH}/debian"
|
||||||
export REPO_SIZE_FILE=/tmp/reposize.$RANDOM
|
export REPO_SIZE_FILE=/tmp/reposize.$RANDOM
|
||||||
|
|
||||||
|
# generate codenames for repos
|
||||||
|
ubuntu_os=(bionic focal jammy)
|
||||||
|
debian_os=(bullseye buster)
|
||||||
|
deb_suffixes=(
|
||||||
|
mongooseim-5
|
||||||
|
mongooseim-6
|
||||||
|
esl-erlang-24
|
||||||
|
esl-erlang-25
|
||||||
|
esl-erlang-26
|
||||||
|
elixir-1.12
|
||||||
|
elixir-1.13
|
||||||
|
elixir-1.14
|
||||||
|
elixir-1.15
|
||||||
|
)
|
||||||
|
|
||||||
|
function join_by { local IFS="$1"; shift; echo "$*"; }
|
||||||
|
ubuntu_codenames=$(join_by ',' $(IFS=','; eval echo {"${ubuntu_os[*]}"}-{"${deb_suffixes[*]}"}))
|
||||||
|
debian_codenames=$(join_by ',' $(IFS=','; eval echo {"${debian_os[*]}"}-{"${deb_suffixes[*]}"}))
|
||||||
|
|
||||||
# =================== APT repos ===============================
|
# =================== APT repos ===============================
|
||||||
"$apt_sync" --delete "${BASE_URL}/ubuntu" @ubuntu-lts contrib amd64,i386 "$UBUNTU_PATH"
|
|
||||||
|
"$apt_sync" --delete "${BASE_URL}/ubuntu" "$ubuntu_codenames" contrib amd64,arm64 "$UBUNTU_PATH"
|
||||||
echo "Ubuntu finished"
|
echo "Ubuntu finished"
|
||||||
"$apt_sync" --delete "${BASE_URL}/debian" @debian-current contrib amd64,i386 "$DEBIAN_PATH"
|
"$apt_sync" --delete "${BASE_URL}/debian" "$debian_codenames" contrib amd64,arm64 "$DEBIAN_PATH"
|
||||||
echo "Debian finished"
|
echo "Debian finished"
|
||||||
|
|
||||||
# =================== YUM repos ===============================
|
# =================== YUM repos ===============================
|
||||||
"$yum_sync" "${BASE_URL}/rpm/centos/@{os_ver}/@{arch}" 7 erlang x86_64 "@{os_ver}" "$YUM_PATH"
|
## DISABLED due to invalid repo structure
|
||||||
echo "YUM finished"
|
|
||||||
|
# "$yum_sync" "${BASE_URL}/centos/@{os_ver}/@{arch}" 7 erlang x86_64 "@{os_ver}" "$CENTOS_PATH"
|
||||||
|
# echo "CentOS finished"
|
||||||
|
|
||||||
"${_here}/helpers/size-sum.sh" $REPO_SIZE_FILE --rm
|
"${_here}/helpers/size-sum.sh" $REPO_SIZE_FILE --rm
|
||||||
|
27
retired/erlang.sh
Executable file
27
retired/erlang.sh
Executable file
@ -0,0 +1,27 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
_here=`dirname $(realpath $0)`
|
||||||
|
apt_sync="${_here}/apt-sync.py"
|
||||||
|
yum_sync="${_here}/yum-sync.py"
|
||||||
|
|
||||||
|
BASE_PATH="${TUNASYNC_WORKING_DIR}"
|
||||||
|
BASE_URL="https://packages.erlang-solutions.com"
|
||||||
|
|
||||||
|
YUM_PATH="${BASE_PATH}/centos"
|
||||||
|
UBUNTU_PATH="${BASE_PATH}/ubuntu"
|
||||||
|
DEBIAN_PATH="${BASE_PATH}/debian"
|
||||||
|
export REPO_SIZE_FILE=/tmp/reposize.$RANDOM
|
||||||
|
|
||||||
|
# =================== APT repos ===============================
|
||||||
|
"$apt_sync" --delete "${BASE_URL}/ubuntu" @ubuntu-lts contrib amd64,i386 "$UBUNTU_PATH"
|
||||||
|
echo "Ubuntu finished"
|
||||||
|
"$apt_sync" --delete "${BASE_URL}/debian" @debian-current contrib amd64,i386 "$DEBIAN_PATH"
|
||||||
|
echo "Debian finished"
|
||||||
|
|
||||||
|
# =================== YUM repos ===============================
|
||||||
|
"$yum_sync" "${BASE_URL}/rpm/centos/@{os_ver}/@{arch}" 7 erlang x86_64 "@{os_ver}" "$YUM_PATH"
|
||||||
|
echo "YUM finished"
|
||||||
|
|
||||||
|
"${_here}/helpers/size-sum.sh" $REPO_SIZE_FILE --rm
|
Loading…
x
Reference in New Issue
Block a user