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 May 12 14:41:38 UTC 2024
Modified Files:
pkgsrc/lang/php: phpversion.mk
Log Message:
lang/php: drop php80 support
To generate a diff of this commit:
cvs rdiff -u -r1.431 -r1.432 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.431 pkgsrc/lang/php/phpversion.mk:1.432
--- pkgsrc/lang/php/phpversion.mk:1.431 Fri May 10 15:50:33 2024
+++ pkgsrc/lang/php/phpversion.mk Sun May 12 14:41:38 2024
@@ -1,4 +1,4 @@
-# $NetBSD: phpversion.mk,v 1.431 2024/05/10 15:50:33 taca Exp $
+# $NetBSD: phpversion.mk,v 1.432 2024/05/12 14:41:38 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 80 81 82 83
+# Possible: 56 74 81 82 83
# Default: 82
#
# === Infrastructure variables ===
@@ -27,19 +27,18 @@
# PHP_VERSIONS_ACCEPTED
# The PHP versions that are accepted by the package.
#
-# Possible: 56 74 80 81 82 83
-# Default: 82 81 83 74 56 80
+# Possible: 56 74 81 82 83
+# Default: 82 81 83 74 56
#
# PHP_VERSIONS_INCOMPATIBLE
# The PHP versions that are not supported by the package.
#
-# Possible: 56 74 80 81 82 83
+# Possible: 56 74 81 82 83
# Default: (empty)
#
# PHP_CHECK_INSTALLED
# Check installed version of PHP. Should be only used by
-# lang/php56, lang/php74, lang/php80, lang/php81, lang/php82
-# and lang/php83.
+# lang/php56, lang/php74, lang/php81, lang/php82 and lang/php83.
#
# Possible: Yes No
# Default: Yes
@@ -49,7 +48,7 @@
# PKG_PHP_VERSION
# The selected PHP version.
#
-# Possible: 56 74 80 81 82 83
+# Possible: 56 74 81 82 83
# Default: ${PHP_VERSION_DEFAULT}
#
# PHP_BASE_VERS
@@ -73,7 +72,7 @@
# PHP_PKG_PREFIX
# The prefix that is prepended to the package name.
#
-# Example: php56 php74 php80 php81 php82 php83
+# Example: php56 php74 php81 php82 php83
#
# PHP_EXTENSION_DIR
# Relative path to ${PREFIX} for PHP's extensions. It is derived from
@@ -90,7 +89,6 @@ PHPVERSION_MK= defined
# Define each PHP's version.
PHP56_VERSION= 5.6.40
PHP74_VERSION= 7.4.33
-PHP80_VERSION= 8.0.30
PHP81_VERSION= 8.1.28
PHP82_VERSION= 8.2.19
PHP83_VERSION= 8.3.7
@@ -98,7 +96,6 @@ PHP83_VERSION= 8.3.7
# Define API version or initial release of major version.
PHP56_RELDATE= 20140828
PHP74_RELDATE= 20191128
-PHP80_RELDATE= 20201124
PHP81_RELDATE= 20211125
PHP82_RELDATE= 20220829
PHP83_RELDATE= 20231123
@@ -112,7 +109,7 @@ _SYS_VARS.php= PKG_PHP_VERSION PKG_PHP P
.include "../../mk/bsd.prefs.mk"
PHP_VERSION_DEFAULT?= 82
-PHP_VERSIONS_ACCEPTED?= 82 81 83 74 56 80
+PHP_VERSIONS_ACCEPTED?= 82 81 83 74 56
.for pv in ${PHP_VERSIONS_ACCEPTED}
. if empty(PHP_VERSIONS_INCOMPATIBLE:M${pv})
_PHP_VERSIONS_ACCEPTED+= ${pv}
@@ -134,9 +131,6 @@ _PHP_INSTALLED= yes
.elif 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})
_PHP_VERSION_74_INSTALLED= yes
_PHP_INSTALLED= yes
@@ -219,9 +213,6 @@ PHP_EXTENSION_DIR= lib/php/${PHP56_RELDA
.elif ${_PHP_VERSION} == 74
PHP_VERSION= ${PHP74_VERSION}
PHP_EXTENSION_DIR= lib/php/${PHP74_RELDATE}
-.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}
Home |
Main Index |
Thread Index |
Old Index