Check-in [ca978823f9]
Not logged in
Overview
Comment:Also update the installation tools.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: ca978823f93ad4e16bfc834471b4f6bea3ebc187
User & Date: mistachkin on 2023-01-21 20:00:29
Other Links: manifest | tags
Context
2023-06-06
21:42
Tag the Eagle Beta 53 release. check-in: 99904ced04 user: mistachkin tags: trunk, release, release-1.0-beta-53, release-beta-1.0.8503.24499
2023-01-21
20:00
Also update the installation tools. check-in: ca978823f9 user: mistachkin tags: trunk
19:56
Start using the 'tcl.to' domain for URN management. check-in: 8504add871 user: mistachkin tags: trunk
Changes

Modified tools/pkgr_an_d_get.sh from [86d54553f0] to [c0474adce0].

48
49
50
51
52
53
54
55

56
57
58
59
60
61
62
48
49
50
51
52
53
54

55
56
57
58
59
60
61
62







-
+








PKGR_TMP_ROOT=pkgr_tmproot_${PKGR_TMP_ID}

mkdir -p "${PKGR_TMP_ROOT}/pkgdtmp" || exit 1
mkdir -p "${PKGR_TMP_ROOT}/download" || exit 1
pushd "${PKGR_TMP_ROOT}/download" || exit 1

PKGR_CLIENT_URI=https://urn.to/r/pkg_client_full
PKGR_CLIENT_URI=https://tcl.to/r/pkg_client_full
PKGR_TMP_FILE=pkgrd_tmp_file.zip
PKGR_GET_OK=0

if [ -x "$(command -v wget)" ]; then
  for wgetArg in "" ""
  do
    if wget -4 $wgetArg "--output-document=${PKGR_TMP_FILE}" "${PKGR_CLIENT_URI}"; then

Modified tools/pkgr_an_d_install.sh from [f750311fa5] to [7bcb4e87c7].

81
82
83
84
85
86
87
88

89
90
91
92
93
94
95
81
82
83
84
85
86
87

88
89
90
91
92
93
94
95







-
+








PKGR_INSTALL_DIR=${PKGR_ROOT_DIR}/pkgd
PKGR_TMP_DIR=~/pkgdtmp

mkdir -p "${PKGR_INSTALL_DIR}" || exit 1
sudo -u "${PKGR_LOGIN_USER}" mkdir -p "${PKGR_TMP_DIR}" || exit 1

PKGR_CLIENT_URI=https://urn.to/r/pkg_client_full
PKGR_CLIENT_URI=https://tcl.to/r/pkg_client_full
PKGR_TMP_FILE=${PKGR_TMP_DIR}/pkgrd_tmp_${PKGR_TMP_ID}_file.zip
PKGR_GET_OK=0

if [ -x "$(command -v wget)" ]; then
  for wgetArg in "" ""
  do
    if wget -4 $wgetArg "--output-document=${PKGR_TMP_FILE}" "${PKGR_CLIENT_URI}"; then