pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang



Module Name:    pkgsrc
Committed By:   taca
Date:           Thu Mar 16 13:52:02 UTC 2023

Modified Files:
        pkgsrc/lang/php: phpversion.mk
        pkgsrc/lang/php81: Makefile Makefile.common distinfo

Log Message:
lang/php81: update to 8.1.17

16 Mar 2023, PHP 8.1.17

- Core:
  . Fixed incorrect check condition in ZEND_YIELD. (nielsdos)
  . Fixed incorrect check condition in type inference. (nielsdos)
  . Fixed overflow check in OnUpdateMemoryConsumption. (nielsdos)
  . Fixed bug GH-9916 (Entering shutdown sequence with a fiber suspended in a
    Generator emits an unavoidable fatal error or crashes). (Arnaud)
  . Fixed bug GH-10437 (Segfault/assertion when using fibers in shutdown
    function after bailout). (trowski)
  . Fixed SSA object type update for compound assignment opcodes. (nielsdos)
  . Fixed language scanner generation build. (Daniel Black)
  . Fixed zend_update_static_property() calling zend_update_static_property_ex()
    misleadingly with the wrong return type. (nielsdos)
  . Fix bug GH-10570 (Fixed unknown string hash on property fetch with integer
    constant name). (nielsdos)
  . Fixed php_fopen_primary_script() call resulted on zend_destroy_file_handle()
    freeing dangling pointers on the handle as it was uninitialized. (nielsdos)

- Curl:
  . Fixed deprecation warning at compile time. (Max Kellermann)
  . Fixed bug GH-10270 (Unable to return CURL_READFUNC_PAUSE in readfunc
    callback). (Pierrick Charron)

- Date:
  . Fix GH-10447 ('p' format specifier does not yield 'Z' for 00:00). (Derick)

- FFI:
  . Fixed incorrect bitshifting and masking in ffi bitfield. (nielsdos)

- Fiber:
  . Fixed assembly on alpine x86. (nielsdos)
  . Fixed bug GH-10496 (segfault when garbage collector is invoked inside of
    fiber). (Bob, Arnaud)

- FPM:
  . Fixed bug GH-10315 (FPM unknown child alert not valid). (Jakub Zelenka)
  . Fixed bug GH-10385 (FPM successful config test early exit). (nielsdos)

- Intl:
  . Fixed bug GH-10647 (Spoolchecker isSuspicious/areConfusable methods
    error code's argument always returning NULL0. (Nathan Freeman)

- JSON:
  . Fixed JSON scanner and parser generation build.
    (Daniel Black, Jakub Zelenka)

- MBString:
  . ext/mbstring: fix new_value length check. (Max Kellermann)
  . Fix bug GH-10627 (mb_convert_encoding crashes PHP on Windows). (nielsdos)

- Opcache:
  . Fix incorrect page_size check. (nielsdos)

- OpenSSL:
  . Fixed php_openssl_set_server_dh_param() DH params errors handling. (nielsdos)

- PDO OCI:
  . Fixed bug #60994 (Reading a multibyte CLOB caps at 8192 chars).
    (Michael Voříšek)

- PHPDBG:
  . Fixed bug GH-10715 (heap buffer overflow on --run option misuse). (nielsdos)

- PGSQL:
  . Fix GH-10672 (pg_lo_open segfaults in the strict_types mode). (girgias)

- Phar:
  . Fix incorrect check in phar tar parsing. (nielsdos)

- Reflection:
  . Fixed bug GH-10623 (Reflection::getClosureUsedVariables opcode fix with
    variadic arguments). (nielsdos)
  . Fix Segfault when using ReflectionFiber suspended by an internal function.
    (danog)

- Session:
  . Fixed ps_files_cleanup_dir() on failure code paths with -1 instead of 0 as
    the latter was considered success by callers. (nielsdos).

- Standard:
  . Fixed bug GH-10292 (Made the default value of the first param of srand() and
    mt_srand() unknown). (kocsismate)
  . Fix incorrect check in cs_8559_5 in map_from_unicode(). (nielsdos)
  . Fix bug GH-9697 for reset/end/next/prev() attempting to move pointer of
    properties table for certain internal classes such as FFI classes
  . Fix incorrect error check in browsecap for pcre2_match(). (nielsdos)

- Tidy:
  . Fix memory leaks when attempting to open a non-existing file or a file over
    4GB. (Girgias)
  . Add missing error check on tidyLoadConfig. (nielsdos)

- Zlib:
  . Fixed output_handler directive value's length which counted the string
    terminator. (nieldos)


To generate a diff of this commit:
cvs rdiff -u -r1.391 -r1.392 pkgsrc/lang/php/phpversion.mk
cvs rdiff -u -r1.13 -r1.14 pkgsrc/lang/php81/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/lang/php81/Makefile.common
cvs rdiff -u -r1.20 -r1.21 pkgsrc/lang/php81/distinfo

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.391 pkgsrc/lang/php/phpversion.mk:1.392
--- pkgsrc/lang/php/phpversion.mk:1.391 Wed Feb 15 14:16:44 2023
+++ pkgsrc/lang/php/phpversion.mk       Thu Mar 16 13:52:01 2023
@@ -1,4 +1,4 @@
-# $NetBSD: phpversion.mk,v 1.391 2023/02/15 14:16:44 taca Exp $
+# $NetBSD: phpversion.mk,v 1.392 2023/03/16 13:52:01 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
@@ -90,7 +90,7 @@ PHPVERSION_MK=        defined
 PHP56_VERSION= 5.6.40
 PHP74_VERSION= 7.4.33
 PHP80_VERSION= 8.0.28
-PHP81_VERSION= 8.1.16
+PHP81_VERSION= 8.1.17
 PHP82_VERSION= 8.2.3
 
 # Define API version or initial release of major version.

Index: pkgsrc/lang/php81/Makefile
diff -u pkgsrc/lang/php81/Makefile:1.13 pkgsrc/lang/php81/Makefile:1.14
--- pkgsrc/lang/php81/Makefile:1.13     Wed Feb 22 00:03:09 2023
+++ pkgsrc/lang/php81/Makefile  Thu Mar 16 13:52:01 2023
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.13 2023/02/22 00:03:09 taca Exp $
+# $NetBSD: Makefile,v 1.14 2023/03/16 13:52:01 taca Exp $
 
 #
 # We can't omit PKGNAME here to handle PKG_OPTIONS.
 #
 PKGNAME=               php-${PHP_VERSION:S/RC/rc/}
-PKGREVISION=           1
 
 COMMENT=               PHP Hypertext Preprocessor version 8.1
 LICENSE=               php

Index: pkgsrc/lang/php81/Makefile.common
diff -u pkgsrc/lang/php81/Makefile.common:1.3 pkgsrc/lang/php81/Makefile.common:1.4
--- pkgsrc/lang/php81/Makefile.common:1.3       Wed Mar  1 07:18:07 2023
+++ pkgsrc/lang/php81/Makefile.common   Thu Mar 16 13:52:01 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.3 2023/03/01 07:18:07 wiz Exp $
+# $NetBSD: Makefile.common,v 1.4 2023/03/16 13:52:01 taca Exp $
 # used by lang/php81/Makefile.php
 # used by lang/php/ext.mk
 # used by meta-pkgs/php81-extensions/Makefile
@@ -7,7 +7,6 @@ PHP_VERSION_REQD=       81
 
 .include "../../lang/php/common.mk"
 
-DIST_SUBDIR?=          php81-20230214
 CATEGORIES+=           www
 MAINTAINER?=           pkgsrc-users%NetBSD.org@localhost
 

Index: pkgsrc/lang/php81/distinfo
diff -u pkgsrc/lang/php81/distinfo:1.20 pkgsrc/lang/php81/distinfo:1.21
--- pkgsrc/lang/php81/distinfo:1.20     Sun Feb 19 12:54:23 2023
+++ pkgsrc/lang/php81/distinfo  Thu Mar 16 13:52:01 2023
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.20 2023/02/19 12:54:23 taca Exp $
+$NetBSD: distinfo,v 1.21 2023/03/16 13:52:01 taca Exp $
 
-BLAKE2s (php81-20230214/php-8.1.16.tar.xz) = f87094e12870371bcdd17e09fdc01fd092cd16e899468ae9b14c02cd9c3f729e
-SHA512 (php81-20230214/php-8.1.16.tar.xz) = 4515da38803272abfafb069d1684c66dbb5086987b148c48dd7d8acf8f5316d255cf321ec57d6fbffe914a35551a533446ac13c34bb7c984e0d109247e8e64da
-Size (php81-20230214/php-8.1.16.tar.xz) = 11760948 bytes
+BLAKE2s (php-8.1.17.tar.xz) = e93509ec942b8d13d06a40ccca2e1df13b1323fa18e840461ad2083cd44bd7c4
+SHA512 (php-8.1.17.tar.xz) = c139f805a6373d8a849954ed6df04e459fca01ae3dc576ba9327d0a988fb5a79dd99ed40754a5aba91eaccb80e75dfaa6b6f31f5802d8f8576df2f625cfdd3f6
+Size (php-8.1.17.tar.xz) = 11818552 bytes
 SHA1 (patch-build_libtool.m4) = e58a2bcebe9e9d7dc7255354fd9fe57878e3f8a6
 SHA1 (patch-configure) = e91e22267a9b7ebcc16a586ba6f325c772adb13c
 SHA1 (patch-disable-filter-url) = 0a2c19c18f089448a8d842e99738b292ab9e5640



Home | Main Index | Thread Index | Old Index