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: Sat Feb 22 15:27:33 UTC 2025
Modified Files:
pkgsrc/lang/php: phpversion.mk
Log Message:
lang/php: add php84 support
To generate a diff of this commit:
cvs rdiff -u -r1.454 -r1.455 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.454 pkgsrc/lang/php/phpversion.mk:1.455
--- pkgsrc/lang/php/phpversion.mk:1.454 Mon Feb 17 15:28:31 2025
+++ pkgsrc/lang/php/phpversion.mk Sat Feb 22 15:27:33 2025
@@ -1,4 +1,4 @@
-# $NetBSD: phpversion.mk,v 1.454 2025/02/17 15:28:31 taca Exp $
+# $NetBSD: phpversion.mk,v 1.455 2025/02/22 15:27:33 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 74 81 82 83
+# Possible: 56 74 81 82 83 84
# Default: 82
#
# === Infrastructure variables ===
@@ -27,13 +27,13 @@
# PHP_VERSIONS_ACCEPTED
# The PHP versions that are accepted by the package.
#
-# Possible: 56 74 81 82 83
-# Default: 82 81 83 74 56
+# Possible: 56 74 81 82 83 84
+# Default: 82 81 83 84 74 56
#
# PHP_VERSIONS_INCOMPATIBLE
# The PHP versions that are not supported by the package.
#
-# Possible: 56 74 81 82 83
+# Possible: 56 74 81 82 83 84
# Default: (empty)
#
# PHP_MINIMUM_TEENY
@@ -44,7 +44,7 @@
# PHP_VER
# The selected PHP version.
#
-# Possible: 56 74 81 82 83
+# Possible: 56 74 81 82 83 84
# Default: ${PHP_VERSION_DEFAULT}
#
# PHP_VERSION
@@ -72,7 +72,7 @@
# PHP_PKG_PREFIX
# The prefix that is prepended to the package name.
#
-# Example: php56 php74 php81 php82 php83
+# Example: php56 php74 php81 php82 php83 php84
#
# PHP_INCDIR
# PHP include directory path relative to ${PREFIX}.
@@ -113,6 +113,7 @@ PHP74_VERSION= 7.4.33
PHP81_VERSION= 8.1.31
PHP82_VERSION= 8.2.27
PHP83_VERSION= 8.3.17
+PHP84_VERSION= 8.4.4
_VARGROUPS+= php
_USER_VARS.php= PHP_VERSION_DEFAULT
@@ -122,7 +123,7 @@ _SYS_VARS.php= PHP_VERSION_PHP PHPPKGSRC
.include "../../mk/bsd.prefs.mk"
PHP_VERSION_DEFAULT?= 82
-PHP_VERSIONS_ACCEPTED?= 82 81 83 74 56
+PHP_VERSIONS_ACCEPTED?= 82 81 83 84 74 56
.for pv in ${PHP_VERSIONS_ACCEPTED}
. if empty(PHP_VERSIONS_INCOMPATIBLE:M${pv})
_PHP_VERSIONS_ACCEPTED+= ${pv}
@@ -174,6 +175,8 @@ PHP_VERSION= ${PHP81_VERSION}
PHP_VERSION= ${PHP82_VERSION}
.elif ${_PHP_VERSION} == 83
PHP_VERSION= ${PHP83_VERSION}
+.elif ${_PHP_VERSION} == 84
+PHP_VERSION= ${PHP84_VERSION}
.else
# force an error
PKG_FAIL_REASON+= "${_PHP_VERSION} is not a valid package"
Home |
Main Index |
Thread Index |
Old Index