From bd37a4efbb424aa8d262d73d3eb705dcd5284861 Mon Sep 17 00:00:00 2001 From: Andy Postnikov Date: Wed, 10 Sep 2025 00:06:08 +0200 Subject: [PATCH] community/php83: upgrade to 8.3.26 --- community/php83/APKBUILD | 6 ++++-- community/php83/fix-curl-test.patch | 12 ++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 community/php83/fix-curl-test.patch diff --git a/community/php83/APKBUILD b/community/php83/APKBUILD index 4881e893ae9..7a2f1b3bb25 100644 --- a/community/php83/APKBUILD +++ b/community/php83/APKBUILD @@ -25,7 +25,7 @@ # json | https://wiki.php.net/rfc/always_enable_json pkgname=php83 -pkgver=8.3.25 +pkgver=8.3.26 pkgrel=0 _apiver=20230831 _suffix=${pkgname#php} @@ -115,6 +115,7 @@ source="https://www.php.net/distributions/php-$pkgver.tar.xz $pkgname-fpm-version-suffix.patch phpinfo-avif.patch loongarch64-support-for-fibers.patch + fix-curl-test.patch " builddir="$srcdir/php-$pkgver" @@ -639,7 +640,7 @@ _extensions_by_load_order() { } sha512sums=" -4853c3bcced4aa791fb3f08b8e3d20a9f83cdb00757a3e500247b0da98a5156c31fa73b9cde3c3773e17129ab931573d086c766177cb882c217d8af1b48e719f php-8.3.25.tar.xz +252c0c95bb2c4d6bf03e686c205777b529aaebe52f143754b369069d7a8aa5b45e8c2addb968287d6473cee507df62729e2527607b796fb764d3f036ba89fafb php-8.3.26.tar.xz 39be7f05f71656107f730818d6abcb4065e550e5b2e2c7021b3490d329c967064012dbeb63ee790ecb65a8e0f7a0f59148de2c692d7879d773acee21fe412bee php83-fpm.initd 1b177644e92be37b28ccc3f8a583aeaf636293d45517d6225c0d6e1c7639d33f734e5f671b5e703b8be00c936422de4a1845039b0eff0e60df5e70cde13186b7 php83-fpm.logrotate 283716161585c68b41be2540312414f028dfee9fcd63fde34662379dd3f05709136e9bd2dc1ba843e8832fdde643eba202d024623d1d46300f9fbf3bebdbf0d2 php83-module.conf @@ -654,4 +655,5 @@ ec206639d076ddac6c2d1db697a5428ed3be979157db39417af7fbe6ab837e8dc00315ae0e55aea4 1af8ce5c76d153bd9d61d49864201a5144d26f3131b47c517d329f19267965d8b4eafcc96b319f15967d85a8243a653dee323599b6ca9dbde9ff83b31517767e php83-fpm-version-suffix.patch 8833c5c6f5225f5e85a9cd842274e4e6b2f55dc572a13bdb3066c624f82c9f39fa07cb2f8f242092ff814f61f0cb8abaa792b1f93c16ad341f1a8dec05a6ca2d phpinfo-avif.patch 6b81d6644a6c0d777712507276f367d54b3ea6062178372f576a49707ad7e808848386dacb745abebed2ba036c2bca967c54d54fc3ec99e8d5e9c5bb09f6a8b0 loongarch64-support-for-fibers.patch +19a4cb8f8fc072726f99a1088491bb76606a94236bf26857394858fe11f7aa28be87c04ba2b056b2647676e8d780c0e415ae7c790bf2e5759d296e00cbd6d379 fix-curl-test.patch " diff --git a/community/php83/fix-curl-test.patch b/community/php83/fix-curl-test.patch new file mode 100644 index 00000000000..f9fe5b0f0a5 --- /dev/null +++ b/community/php83/fix-curl-test.patch @@ -0,0 +1,12 @@ +Patch-Related: https://github.com/php/php-src/issues/19925 +--- a/ext/curl/tests/curl_setopt_ssl.phpt ++++ b/ext/curl/tests/curl_setopt_ssl.phpt +@@ -101,7 +101,7 @@ + echo "\n"; + echo "case 3: client cert and empty key from string\n"; + $ch = curl_init("https://127.0.0.1:$port/"); +- var_dump(curl_setopt($ch, CURLOPT_SSLCERT_BLOB, $clientCert)); ++ var_dump(curl_setopt($ch, CURLOPT_SSLCERT_BLOB, '')); + var_dump(curl_setopt($ch, CURLOPT_SSLKEY_BLOB, '')); + var_dump(curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false)); + var_dump(curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false));