pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/php



Module Name:    pkgsrc
Committed By:   taca
Date:           Sun Nov 28 00:37:24 UTC 2021

Modified Files:
        pkgsrc/lang/php: phpversion.mk

Log Message:
langphp: add support for php81

Oops, forgot to commit this.  Noted by wiz@, thanks much.


To generate a diff of this commit:
cvs rdiff -u -r1.347 -r1.348 pkgsrc/lang/php/phpversion.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/php/phpversion.mk
diff -u pkgsrc/lang/php/phpversion.mk:1.347 pkgsrc/lang/php/phpversion.mk:1.348
--- pkgsrc/lang/php/phpversion.mk:1.347 Fri Nov 19 14:29:04 2021
+++ pkgsrc/lang/php/phpversion.mk       Sun Nov 28 00:37:24 2021
@@ -1,4 +1,4 @@
-# $NetBSD: phpversion.mk,v 1.347 2021/11/19 14:29:04 taca Exp $
+# $NetBSD: phpversion.mk,v 1.348 2021/11/28 00:37:24 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
@@ -10,7 +10,7 @@
 #      The PHP version to choose when more than one is acceptable to
 #      the package.
 #
-#      Possible: 56 73 74 80
+#      Possible: 56 73 74 80 81
 #      Default: 74
 #
 # === Infrastructure variables ===
@@ -27,13 +27,13 @@
 # PHP_VERSIONS_ACCEPTED
 #      The PHP versions that are accepted by the package.
 #
-#      Possible: 56 73 74 80
-#      Default: 73 56 74 80
+#      Possible: 56 73 74 80 81
+#      Default: 73 56 74 80 81
 #
 # PHP_VERSIONS_INCOMPATIBLE
 #      The PHP versions that are not supported by the package.
 #
-#      Possible: 56 73 74 80
+#      Possible: 56 73 74 80 81
 #      Default: (empty)
 #
 # PHP_CHECK_INSTALLED
@@ -48,7 +48,7 @@
 # PKG_PHP_VERSION
 #      The selected PHP version.
 #
-#      Possible: 56 73 74 80
+#      Possible: 56 73 74 80 81
 #      Default: ${PHP_VERSION_DEFAULT}
 #
 # PHP_BASE_VERS
@@ -72,7 +72,7 @@
 # PHP_PKG_PREFIX
 #      The prefix that is prepended to the package name.
 #
-#      Example: php56 php73 php74 php80
+#      Example: php56 php73 php74 php80 php81
 #
 # PHP_EXTENSION_DIR
 #      Relative path to ${PREFIX} for PHP's extensions.  It is derived from
@@ -91,12 +91,14 @@ PHP56_VERSION=      5.6.40
 PHP73_VERSION= 7.3.33
 PHP74_VERSION= 7.4.26
 PHP80_VERSION= 8.0.13
+PHP81_VERSION= 8.1.0
 
 # Define initial release of major version.
 PHP56_RELDATE= 20140828
 PHP73_RELDATE= 20181200
 PHP74_RELDATE= 20191128
 PHP80_RELDATE= 20201124
+PHP81_RELDATE= 20211125
 
 _VARGROUPS+=   php
 _USER_VARS.php=        PHP_VERSION_DEFAULT
@@ -107,7 +109,7 @@ _SYS_VARS.php=      PKG_PHP_VERSION PKG_PHP P
 .include "../../mk/bsd.prefs.mk"
 
 PHP_VERSION_DEFAULT?=          74
-PHP_VERSIONS_ACCEPTED?=                73 74 56 80
+PHP_VERSIONS_ACCEPTED?=                73 74 56 80 81
 .for pv in ${PHP_VERSIONS_ACCEPTED}
 .  if empty(PHP_VERSIONS_INCOMPATIBLE:M${pv})
 _PHP_VERSIONS_ACCEPTED+=       ${pv}
@@ -120,7 +122,10 @@ _PHP_VERSION_${pv}_OK=     yes
 .endfor
 
 # check what is installed
-.if exists(${LOCALBASE}/lib/php/${PHP80_RELDATE})
+.if exists(${LOCALBASE}/lib/php/${PHP81_RELDATE})
+_PHP_VERSION_81_INSTALLED=     yes
+_PHP_INSTALLED=                        yes
+.elif exists(${LOCALBASE}/lib/php/${PHP80_RELDATE})
 _PHP_VERSION_80_INSTALLED=     yes
 _PHP_INSTALLED=                        yes
 .elif exists(${LOCALBASE}/lib/php/${PHP74_RELDATE})
@@ -214,6 +219,9 @@ PHP_EXTENSION_DIR=  lib/php/${PHP74_RELDA
 .elif ${_PHP_VERSION} == "80"
 PHP_VERSION=           ${PHP80_VERSION}
 PHP_EXTENSION_DIR=     lib/php/${PHP80_RELDATE}
+.elif ${_PHP_VERSION} == "81"
+PHP_VERSION=           ${PHP81_VERSION}
+PHP_EXTENSION_DIR=     lib/php/${PHP81_RELDATE}
 .else
 # force an error
 PKG_FAIL_REASON+=      "${PKG_PHP} is not a valid package"



Home | Main Index | Thread Index | Old Index