From owner-svn-ports-all@freebsd.org Sat Dec 21 12:20:16 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 3ACFD1D2D6F; Sat, 21 Dec 2019 12:20:16 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47g4Sc0mtsz4D86; Sat, 21 Dec 2019 12:20:16 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 15C41F386; Sat, 21 Dec 2019 12:20:16 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xBLCKFs7025395; Sat, 21 Dec 2019 12:20:15 GMT (envelope-from netchild@FreeBSD.org) Received: (from netchild@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBLCKFCL025394; Sat, 21 Dec 2019 12:20:15 GMT (envelope-from netchild@FreeBSD.org) Message-Id: <201912211220.xBLCKFCL025394@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: netchild set sender to netchild@FreeBSD.org using -f From: Alexander Leidinger Date: Sat, 21 Dec 2019 12:20:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r520560 - head X-SVN-Group: ports-head X-SVN-Commit-Author: netchild X-SVN-Commit-Paths: head X-SVN-Commit-Revision: 520560 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Dec 2019 12:20:16 -0000 Author: netchild Date: Sat Dec 21 12:20:15 2019 New Revision: 520560 URL: https://svnweb.freebsd.org/changeset/ports/520560 Log: Update the python entry with instructions for portmaster users. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Sat Dec 21 12:09:37 2019 (r520559) +++ head/UPDATING Sat Dec 21 12:20:15 2019 (r520560) @@ -14,9 +14,18 @@ you update your ports collection, before attempting an For ports users wanting to keep version 3.6 as default, add DEFAULT_VERSIONS+= python=3.6 python3=3.6 to make.conf - This may ease the upgrade: + This may ease the upgrade for users of pre-build packages: # sh # for i in $(pkg query -g %n 'py36-*'); do pkg set -yn ${i}:py37-${i#py36-}; done + # pkg upgrade + + For portmaster users: + # portmaster -o lang/python37 python36 + # REINSTALL="$(pkg info -o py36-\* | awk '{printf "%s ", $2}')" + # pkg delete -f py36-\* + # portmaster $REINSTALL + # REBUILD=$(pkg query -g "%n:%dn" '*' | grep py3 | grep -v py37 | cut -d : -f 1 | sort -u) + # portmaster $REBUILD 20191204 AFFECTS: users of mail/nextcloud-mail