Received: by mail.netbsd.org (Postfix, from userid 605) id 72859850E0; Sat, 8 May 2021 13:21:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AA61F850DC for ; Sat, 8 May 2021 13:21:18 +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 sxbS8oHkoxWa for ; Sat, 8 May 2021 13:21:18 +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 059E284CD9 for ; Sat, 8 May 2021 13:21:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E6882FA95; Sat, 8 May 2021 13:21:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1620480077136190" MIME-Version: 1.0 Date: Sat, 8 May 2021 13:21:17 +0000 From: "Jaromir Dolecek" Subject: CVS commit: pkgsrc/lang/php To: pkgsrc-changes@NetBSD.org Reply-To: jdolecek@netbsd.org X-Mailer: log_accum Message-Id: <20210508132117.E6882FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1620480077136190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jdolecek Date: Sat May 8 13:21:17 UTC 2021 Modified Files: pkgsrc/lang/php: phpversion.mk Log Message: switch default for PHP to 7.4 PHP 7.3 is out of active support, and even security support will end on 6.12.2021 To generate a diff of this commit: cvs rdiff -u -r1.327 -r1.328 pkgsrc/lang/php/phpversion.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1620480077136190 Content-Disposition: inline Content-Length: 960 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.327 pkgsrc/lang/php/phpversion.mk:1.328 --- pkgsrc/lang/php/phpversion.mk:1.327 Fri May 7 14:46:52 2021 +++ pkgsrc/lang/php/phpversion.mk Sat May 8 13:21:17 2021 @@ -1,4 +1,4 @@ -# $NetBSD: phpversion.mk,v 1.327 2021/05/07 14:46:52 taca Exp $ +# $NetBSD: phpversion.mk,v 1.328 2021/05/08 13:21:17 jdolecek 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 73 74 80 -# Default: 73 +# Default: 74 # # === Infrastructure variables === # @@ -106,7 +106,7 @@ _SYS_VARS.php= PKG_PHP_VERSION PKG_PHP P .include "../../mk/bsd.prefs.mk" -PHP_VERSION_DEFAULT?= 73 +PHP_VERSION_DEFAULT?= 74 PHP_VERSIONS_ACCEPTED?= 73 74 56 80 .for pv in ${PHP_VERSIONS_ACCEPTED} . if empty(PHP_VERSIONS_INCOMPATIBLE:M${pv}) --_----------=_1620480077136190--