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: Wed Dec 29 06:08:55 UTC 2021
Modified Files:
pkgsrc/lang/php: phpversion.mk
Log Message:
lang/php: drop dupport for php73
To generate a diff of this commit:
cvs rdiff -u -r1.352 -r1.353 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.352 pkgsrc/lang/php/phpversion.mk:1.353
--- pkgsrc/lang/php/phpversion.mk:1.352 Sun Dec 19 05:04:48 2021
+++ pkgsrc/lang/php/phpversion.mk Wed Dec 29 06:08:55 2021
@@ -1,4 +1,4 @@
-# $NetBSD: phpversion.mk,v 1.352 2021/12/19 05:04:48 taca Exp $
+# $NetBSD: phpversion.mk,v 1.353 2021/12/29 06:08:55 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 81
+# Possible: 56 74 80 81
# Default: 74
#
# === Infrastructure variables ===
@@ -27,18 +27,18 @@
# PHP_VERSIONS_ACCEPTED
# The PHP versions that are accepted by the package.
#
-# Possible: 56 73 74 80 81
-# Default: 73 56 74 80 81
+# Possible: 56 74 80 81
+# Default: 74 56 80 81
#
# PHP_VERSIONS_INCOMPATIBLE
# The PHP versions that are not supported by the package.
#
-# Possible: 56 73 74 80 81
+# Possible: 56 74 80 81
# Default: (empty)
#
# PHP_CHECK_INSTALLED
# Check installed version of PHP. Should be used by lang/php56,
-# lang/php73, lang/php74, lang/php80, and lang/php81 only.
+# lang/php74, lang/php80, and lang/php81 only.
#
# Possible: Yes No
# Default: Yes
@@ -48,7 +48,7 @@
# PKG_PHP_VERSION
# The selected PHP version.
#
-# Possible: 56 73 74 80 81
+# Possible: 56 74 80 81
# Default: ${PHP_VERSION_DEFAULT}
#
# PHP_BASE_VERS
@@ -67,12 +67,12 @@
# The directory of the PHP implementation, relative to the
# package directory.
#
-# Example: ../../lang/php73
+# Example: ../../lang/php74
#
# PHP_PKG_PREFIX
# The prefix that is prepended to the package name.
#
-# Example: php56 php73 php74 php80 php81
+# Example: php56 php74 php80 php81
#
# PHP_EXTENSION_DIR
# Relative path to ${PREFIX} for PHP's extensions. It is derived from
@@ -88,14 +88,12 @@ PHPVERSION_MK= defined
# Define each PHP's version.
PHP56_VERSION= 5.6.40
-PHP73_VERSION= 7.3.33
PHP74_VERSION= 7.4.27
PHP80_VERSION= 8.0.14
PHP81_VERSION= 8.1.1
# Define initial release of major version.
PHP56_RELDATE= 20140828
-PHP73_RELDATE= 20181200
PHP74_RELDATE= 20191128
PHP80_RELDATE= 20201124
PHP81_RELDATE= 20211125
@@ -109,7 +107,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 81
+PHP_VERSIONS_ACCEPTED?= 74 56 80 81
.for pv in ${PHP_VERSIONS_ACCEPTED}
. if empty(PHP_VERSIONS_INCOMPATIBLE:M${pv})
_PHP_VERSIONS_ACCEPTED+= ${pv}
@@ -131,9 +129,6 @@ _PHP_INSTALLED= yes
.elif exists(${LOCALBASE}/lib/php/${PHP74_RELDATE})
_PHP_VERSION_74_INSTALLED= yes
_PHP_INSTALLED= yes
-.elif exists(${LOCALBASE}/lib/php/${PHP73_RELDATE})
-_PHP_VERSION_73_INSTALLED= yes
-_PHP_INSTALLED= yes
.elif exists(${LOCALBASE}/lib/php/${PHP56_RELDATE})
_PHP_VERSION_56_INSTALLED= yes
_PHP_INSTALLED= yes
@@ -210,9 +205,6 @@ PHP_VERSION_REQD:= ${PKG_PHP_VERSION}
PHP_VERSION= ${PHP56_VERSION}
PHP_INITIAL_TEENY= 3
PHP_EXTENSION_DIR= lib/php/${PHP56_RELDATE}
-.elif ${_PHP_VERSION} == "73"
-PHP_VERSION= ${PHP73_VERSION}
-PHP_EXTENSION_DIR= lib/php/${PHP73_RELDATE}
.elif ${_PHP_VERSION} == "74"
PHP_VERSION= ${PHP74_VERSION}
PHP_EXTENSION_DIR= lib/php/${PHP74_RELDATE}
Home |
Main Index |
Thread Index |
Old Index