diff options
author | Kai Knoblich <kai@FreeBSD.org> | 2021-05-07 12:59:37 +0000 |
---|---|---|
committer | Kai Knoblich <kai@FreeBSD.org> | 2021-05-07 13:26:34 +0000 |
commit | 3185130dadb66a63e1341c46570084a67b8cd6f3 (patch) | |
tree | d8a153f1d2c8e1bfd62f6d2254bb5299a3dadafb | |
parent | 5ca33357dc35daa92f13df026afc16e4c7f038dc (diff) |
UPDATING: Adjust Python 3.7 -> 3.8 instructions for portmaster
Some ports, which use PYTHON_PKGNAMESUFFIX for their package name (e.g.
devel/scons), must also be taken into account when portmaster is used.
PR: 255663
Reported by: nork@ninth-nine.com, Rozhuk Ivan
-rw-r--r-- | UPDATING | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -57,8 +57,8 @@ you update your ports collection, before attempting any port upgrades. For portmaster users: # sh # portmaster -o lang/python38 python37 - # REINSTALL="$(pkg info -o py37-\* | awk '{printf "%s ", $2}')" - # pkg delete -f py37-\* + # REINSTALL="$(pkg info -o "*py37*" | awk '{printf "%s ", $2}')" + # pkg delete -f "*py37*" # portmaster $REINSTALL # REBUILD=$(pkg query -g "%n:%dn" '*' | grep py3 | grep -v py38 | cut -d : -f 1 | sort -u) # portmaster $REBUILD |