From owner-svn-ports-head@freebsd.org Thu Nov 3 14:34:15 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E5B9C2DF65; Thu, 3 Nov 2016 14:34:15 +0000 (UTC) (envelope-from mat@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 mx1.freebsd.org (Postfix) with ESMTPS id AF9641D79; Thu, 3 Nov 2016 14:34:14 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA3EYDOg008168; Thu, 3 Nov 2016 14:34:13 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA3EYDdc008166; Thu, 3 Nov 2016 14:34:13 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201611031434.uA3EYDdc008166@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 3 Nov 2016 14:34:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425221 - 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.23 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: Thu, 03 Nov 2016 14:34:15 -0000 Author: mat Date: Thu Nov 3 14:34:13 2016 New Revision: 425221 URL: https://svnweb.freebsd.org/changeset/ports/425221 Log: Change the default Perl version to 5.24. We have been stuck with Perl 5.20 for too long. Now that the main problem, mod_perl2, has been updated to work with Perl 5.22+, we can go and live with a modern Perl. PR: 213810 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Modified: head/Mk/bsd.default-versions.mk (contents, props changed) head/UPDATING Modified: head/Mk/bsd.default-versions.mk ============================================================================== --- head/Mk/bsd.default-versions.mk Thu Nov 3 14:31:03 2016 (r425220) +++ head/Mk/bsd.default-versions.mk Thu Nov 3 14:34:13 2016 (r425221) @@ -54,7 +54,7 @@ MYSQL_DEFAULT?= 5.6 # Possible values: 5.18, 5.20, 5.22, devel .if !exists(${LOCALBASE}/bin/perl) || (!defined(_PORTS_ENV_CHECK) && \ defined(PACKAGE_BUILDING)) -PERL5_DEFAULT?= 5.20 +PERL5_DEFAULT?= 5.24 .elif !defined(PERL5_DEFAULT) # There's no need to replace development versions, like "5.23" with "devel" # because 1) nobody is supposed to use it outside of poudriere, and 2) it must Modified: head/UPDATING ============================================================================== --- head/UPDATING Thu Nov 3 14:31:03 2016 (r425220) +++ head/UPDATING Thu Nov 3 14:34:13 2016 (r425221) @@ -5,6 +5,41 @@ 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.24. 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.20 to 5.24, do: + + First, add to /etc/make.conf: + + DEFAULT_VERSIONS+= perl5=5.24 + + Portupgrade users: + portupgrade -o lang/perl5.24 -f lang/perl5.20 + + You can now remove the DEFAULT_VERSIONS line added earlier + from /etc/make.conf + + Then you will need to rebuild everything that uses libperl.so, you + can do so with: + + portupgrade -f `pkg shlib -qR libperl.so.5.20` + + Portmaster users: + portmaster -o lang/perl5.24 lang/perl5.20 + + You can now remove the DEFAULT_VERSIONS line added earlier + from /etc/make.conf + + Then you will need to rebuild everything that uses libperl.so, you + can do so with: + + portmaster -f `pkg shlib -qR libperl.so.5.20` + 20161102: AFFECTS: users of security/acme-client AUTHOR: brnrd@FreeBSD.org