From owner-svn-ports-head@FreeBSD.ORG Wed May 13 10:20:19 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 69FEAF9C; Wed, 13 May 2015 10:20:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3E63B1FEE; Wed, 13 May 2015 10:20:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4DAKJUP086746; Wed, 13 May 2015 10:20:19 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4DAKI5S086698; Wed, 13 May 2015 10:20:18 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201505131020.t4DAKI5S086698@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 13 May 2015 10:20:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386205 - in head: . Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 May 2015 10:20:19 -0000 Author: mat Date: Wed May 13 10:20:18 2015 New Revision: 386205 URL: https://svnweb.freebsd.org/changeset/ports/386205 Log: Change the default Perl to 5.20. PR: 200134 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Modified: head/Mk/bsd.default-versions.mk head/UPDATING Modified: head/Mk/bsd.default-versions.mk ============================================================================== --- head/Mk/bsd.default-versions.mk Wed May 13 08:22:37 2015 (r386204) +++ head/Mk/bsd.default-versions.mk Wed May 13 10:20:18 2015 (r386205) @@ -23,7 +23,7 @@ FPC_DEFAULT?= 2.6.4 GCC_DEFAULT?= 4.8 LUA_DEFAULT?= 5.2 MYSQL_DEFAULT?= 5.6 -PERL5_DEFAULT?= 5.18 +PERL5_DEFAULT?= 5.20 PGSQL_DEFAULT?= 9.3 PHP_DEFAULT?= 5.6 PYTHON_DEFAULT?= 2.7 Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed May 13 08:22:37 2015 (r386204) +++ head/UPDATING Wed May 13 10:20:18 2015 (r386205) @@ -5,6 +5,31 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20150513: + AFFECTS: users of lang/perl5* + AUTHOR: mat@FreeBSD.org + + The default Perl version has been switched to Perl 5.20. If you are using + binary packages to upgrade your system, you do not have anything to do, pkg + upgrade will do the right thing. For the other people, assuming you are + migrating from 5.18 to 5.20, do: + + Portupgrade users: + portupgrade -o lang/perl5.20 -f lang/perl5.18 + + portupgrade -f `pkg shlib -R libperl.so.5.18|tail +2` + + Portmaster users: + portmaster -o lang/perl5.20 lang/perl5.18 + + portmaster -f `pkg shlib -R libperl.so.5.18|tail +2` + + IMPORTANT: + In case you have not updated your system in a while, and specifically, + followed the 20141126 instructions regarding the new Perl layout, you + should follow those more extensive instructions rather than the + conservative presented here. + 20150510: AFFECTS: users of mail/postfix mail/postfix-current AUTHOR: ohauer@FreeBSD.org