changeset 113:2d531cbd0feb

Explicitely disable the automatic repo update (using "-U") in the fast-track check
author Franz Glasner <fzglas.hg@dom66.de>
date Tue, 15 Oct 2019 09:24:56 +0200
parents 0838fdca3a2b
children dad9f2d80c10
files bin/fpkg
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/bin/fpkg	Mon Oct 14 16:52:34 2019 +0200
+++ b/bin/fpkg	Tue Oct 15 09:24:56 2019 +0200
@@ -212,8 +212,8 @@
         while read _name _repo; do
             if [ "${_repo}" = "${LOCALBSDPORTS_REPO}" ]; then
                 echo "   ${_name}"
-                printf "      %-15s : %s\n" "${LOCALBSDPORTS_REPO}" "$(pkg version -r ${LOCALBSDPORTS_REPO} -n ${_name} -v)"
-                printf "      %-15s : %s\n" "${FREEBSD_REPO}" "$(pkg version -r ${FREEBSD_REPO} -n ${_name} -v)"
+                printf "      %-15s : %s\n" "${LOCALBSDPORTS_REPO}" "$(pkg version -U -r ${LOCALBSDPORTS_REPO} -n ${_name} -v)"
+                printf "      %-15s : %s\n" "${FREEBSD_REPO}" "$(pkg version -U -r ${FREEBSD_REPO} -n ${_name} -v)"
             fi
         done
     for _j in $(jls -N | awk '{if(NR>1)print $1}' | sort); do
@@ -224,8 +224,8 @@
                 while read _name _repo; do
                     if [ "${_repo}" = "${LOCALBSDPORTS_REPO}" ]; then
                         echo "   ${_name}"
-                        printf "      %s-15s : %s\n" "${LOCALBSDPORTS_REPO}" "$(pkg -j ${_j} version -r ${LOCALBSDPORTS_REPO} -n ${_name} -v)"
-                        printf "      %-15s : %s\n" "${FREEBSD_REPO}" "$(pkg -j ${_j} version -r ${FREEBSD_REPO} -n ${_name} -v)"
+                        printf "      %s-15s : %s\n" "${LOCALBSDPORTS_REPO}" "$(pkg -j ${_j} version -U -r ${LOCALBSDPORTS_REPO} -n ${_name} -v)"
+                        printf "      %-15s : %s\n" "${FREEBSD_REPO}" "$(pkg -j ${_j} version -U -r ${FREEBSD_REPO} -n ${_name} -v)"
             fi
                 done
         else