https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=273291

--- Comment #4 from Tomoaki AOKI <[email protected]> ---
Additional note.
I've checked, to be sure, no pkgs for non-14 base is remaining with a stupid
script below. At first run, some pkgs for old base remained, so I've checked if
I no longer use it, or no ports I need requires it directly or indirectly and
deinstalled them.

After deinstalling, I've deleted firefox-117* from poudriere repo and rebuilt
it to be sure.


#!/bin/sh

CURVERS=14
TMPLIST=/tmp/pkglist

pkg version -o | cut -f 1 -w > ${TMPLIST}

cat ${TMPLIST} | while read PACKAGE
do
  ARCH=`pkg query %q ${PACKAGE}`
  if [ ${CURVERS} != `echo ${ARCH} | cut -f 2 -d :` ]
  then
    echo Port ${PACKAGE} : ${ARCH}
  fi
done

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to