Received: by mail.netbsd.org (Postfix, from userid 605) id 0FBBC84D8E; Mon, 9 Dec 2019 14:19:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8E3F784D2C for ; Mon, 9 Dec 2019 14:19:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id bpnle-VRhT30 for ; Mon, 9 Dec 2019 14:19:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id DE8D784CE2 for ; Mon, 9 Dec 2019 14:19:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D28E0FA97; Mon, 9 Dec 2019 14:19:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157590118475800" MIME-Version: 1.0 Date: Mon, 9 Dec 2019 14:19:44 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/lang/php To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20191209141944.D28E0FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_157590118475800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Mon Dec 9 14:19:44 UTC 2019 Modified Files: pkgsrc/lang/php: phpversion.mk Log Message: lang/php: change default version of php to 7.3.x Change default version of php from 7.1.x to 7.3.x. * PHP 7.1.x is now EOL after 1st Dec 2019. * PHP 7.3.x is actively maintained release. To generate a diff of this commit: cvs rdiff -u -r1.275 -r1.276 pkgsrc/lang/php/phpversion.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157590118475800 Content-Disposition: inline Content-Length: 1256 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/php/phpversion.mk diff -u pkgsrc/lang/php/phpversion.mk:1.275 pkgsrc/lang/php/phpversion.mk:1.276 --- pkgsrc/lang/php/phpversion.mk:1.275 Fri Nov 22 05:34:51 2019 +++ pkgsrc/lang/php/phpversion.mk Mon Dec 9 14:19:44 2019 @@ -1,4 +1,4 @@ -# $NetBSD: phpversion.mk,v 1.275 2019/11/22 05:34:51 taca Exp $ +# $NetBSD: phpversion.mk,v 1.276 2019/12/09 14:19:44 taca Exp $ # # This file selects a PHP version, based on the user's preferences and # the installed packages. It does not add a dependency on the PHP @@ -11,7 +11,7 @@ # the package. # # Possible: 56 71 72 73 -# Default: 71 +# Default: 73 # # === Infrastructure variables === # @@ -28,7 +28,7 @@ # The PHP versions that are accepted by the package. # # Possible: 56 71 72 73 -# Default: 71 +# Default: 73 56 71 72 # # PHP_VERSIONS_INCOMPATIBLE # The PHP versions that are not supported by the package. @@ -106,8 +106,8 @@ _SYS_VARS.php= PKG_PHP_VERSION PKG_PHP P .include "../../mk/bsd.prefs.mk" -PHP_VERSION_DEFAULT?= 71 -PHP_VERSIONS_ACCEPTED?= 56 71 72 73 +PHP_VERSION_DEFAULT?= 73 +PHP_VERSIONS_ACCEPTED?= 73 56 71 72 .for pv in ${PHP_VERSIONS_ACCEPTED} . if empty(PHP_VERSIONS_INCOMPATIBLE:M${pv}) _PHP_VERSIONS_ACCEPTED+= ${pv} --_----------=_157590118475800--