Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D900684F24 for ; Mon, 13 Nov 2023 16:33:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id S8NkvjVCNcGJ for ; Mon, 13 Nov 2023 16:33:10 +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 5610C84EAF for ; Mon, 13 Nov 2023 16:33:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4A240FA3D; Mon, 13 Nov 2023 16:33:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1699893190144840" MIME-Version: 1.0 Date: Mon, 13 Nov 2023 16:33:10 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/lang/php To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20231113163310.4A240FA3D@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1699893190144840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Mon Nov 13 16:33:10 UTC 2023 Modified Files: pkgsrc/lang/php: phpversion.mk Log Message: lang/php: switch default PHP's version to 8.1 Switch default PHP's version to 8.1 after discussion on tech-pkg@. To generate a diff of this commit: cvs rdiff -u -r1.412 -r1.413 pkgsrc/lang/php/phpversion.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1699893190144840 Content-Disposition: inline Content-Length: 1694 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.412 pkgsrc/lang/php/phpversion.mk:1.413 --- pkgsrc/lang/php/phpversion.mk:1.412 Fri Oct 27 15:04:30 2023 +++ pkgsrc/lang/php/phpversion.mk Mon Nov 13 16:33:10 2023 @@ -1,4 +1,4 @@ -# $NetBSD: phpversion.mk,v 1.412 2023/10/27 15:04:30 taca Exp $ +# $NetBSD: phpversion.mk,v 1.413 2023/11/13 16:33:10 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 74 80 81 82 -# Default: 74 +# Default: 81 # # === Infrastructure variables === # @@ -28,7 +28,7 @@ # The PHP versions that are accepted by the package. # # Possible: 56 74 80 81 82 -# Default: 74 56 80 81 82 +# Default: 81 82 74 56 80 # # PHP_VERSIONS_INCOMPATIBLE # The PHP versions that are not supported by the package. @@ -58,7 +58,7 @@ # The selected PHP's major version. # # Possible: 5 7 8 -# Default: 7 +# Default: 8 # # PKG_PHP # The same as ${PKG_PHP_VERSION}, prefixed with "php-". @@ -67,7 +67,7 @@ # The directory of the PHP implementation, relative to the # package directory. # -# Example: ../../lang/php74 +# Example: ../../lang/php81 # # PHP_PKG_PREFIX # The prefix that is prepended to the package name. @@ -108,8 +108,8 @@ _SYS_VARS.php= PKG_PHP_VERSION PKG_PHP P .include "../../mk/bsd.prefs.mk" -PHP_VERSION_DEFAULT?= 74 -PHP_VERSIONS_ACCEPTED?= 74 56 80 81 82 +PHP_VERSION_DEFAULT?= 81 +PHP_VERSIONS_ACCEPTED?= 81 82 74 56 80 .for pv in ${PHP_VERSIONS_ACCEPTED} . if empty(PHP_VERSIONS_INCOMPATIBLE:M${pv}) _PHP_VERSIONS_ACCEPTED+= ${pv} --_----------=_1699893190144840--