Add support for ext-uv (#758)

pull/764/head
Daniil Gentili 2023-06-18 00:16:14 +02:00 committed by GitHub
parent 0fe930eefc
commit a87b75296d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 0 deletions

View File

@ -115,6 +115,11 @@ The `pdo_sqlsrv` and `sqlsrv` PHP extensions require the Microsoft ODBC Driver f
On Alpine Linux there's no way to automatically install its latest version, so we install it manually. On Alpine Linux there's no way to automatically install its latest version, so we install it manually.
We need to monitor new releases at https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server#alpine18 We need to monitor new releases at https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server#alpine18
### uv
The only available versions of the `uv` PHP extension are all beta.
We should switch to the stable release once it will be available.
## xdiff ## xdiff
The `xdiff` PHP extension uses the LibXDiff library. The `xdiff` PHP extension uses the LibXDiff library.

View File

@ -116,6 +116,7 @@ timezonedb 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
uopz 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 uopz 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
uploadprogress 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 uploadprogress 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
uuid 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 uuid 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
uv 8.0 8.1 8.2
vips 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 vips 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
wddx 5.5 5.6 7.0 7.1 7.2 7.3 wddx 5.5 5.6 7.0 7.1 7.2 7.3
xdebug 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 xdebug 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2

View File

@ -1336,6 +1336,14 @@ buildRequiredPackageLists() {
uuid@debian) uuid@debian)
buildRequiredPackageLists_volatile="$buildRequiredPackageLists_volatile uuid-dev" buildRequiredPackageLists_volatile="$buildRequiredPackageLists_volatile uuid-dev"
;; ;;
uv@alpine)
buildRequiredPackageLists_persistent="$buildRequiredPackageLists_persistent libuv"
buildRequiredPackageLists_volatile="$buildRequiredPackageLists_volatile libuv-dev"
;;
uv@debian)
buildRequiredPackageLists_persistent="$buildRequiredPackageLists_persistent libuv1"
buildRequiredPackageLists_volatile="$buildRequiredPackageLists_volatile libuv1-dev"
;;
vips@alpine) vips@alpine)
buildRequiredPackageLists_persistent="$buildRequiredPackageLists_persistent vips" buildRequiredPackageLists_persistent="$buildRequiredPackageLists_persistent vips"
buildRequiredPackageLists_volatile="$buildRequiredPackageLists_volatile vips-dev" buildRequiredPackageLists_volatile="$buildRequiredPackageLists_volatile vips-dev"
@ -3571,6 +3579,15 @@ installRemoteModule() {
fi fi
fi fi
;; ;;
uv)
if test -z "$installRemoteModule_version"; then
if test $PHP_MAJMIN_VERSION -lt 800; then
installRemoteModule_version=0.2.4
else
installRemoteModule_version=beta
fi
fi
;;
xdebug) xdebug)
if test -z "$installRemoteModule_version"; then if test -z "$installRemoteModule_version"; then
if test $PHP_MAJMIN_VERSION -le 500; then if test $PHP_MAJMIN_VERSION -le 500; then