diff --git a/abi_used_libs b/abi_used_libs --- a/abi_used_libs +++ b/abi_used_libs @@ -17,10 +17,8 @@ libjpeg.so.8 liblber-2.4.so.2 libldap-2.4.so.2 -libltdl.so.7 liblzma.so.5 libm.so.6 -libmcrypt.so.4 libncursesw.so.5 libnetsnmp.so.30 libpam.so.0 diff --git a/files/php.ini-production b/files/php.ini-production --- a/files/php.ini-production +++ b/files/php.ini-production @@ -294,7 +294,7 @@ ; callback-function. unserialize_callback_func = -; When floats & doubles are serialized store serialize_precision significant +; When floats & doubles are serialized, store serialize_precision significant ; digits after the floating point. The default value ensures that when floats ; are decoded with unserialize, the data will remain the same. ; The value is also used for json_encode when encoding double values. @@ -525,11 +525,12 @@ ; Store the last error/warning message in $php_errormsg (boolean). Setting this value ; to On can assist in debugging and is appropriate for development servers. It should ; however be disabled on production servers. +; This directive is DEPRECATED. ; Default Value: Off -; Development Value: On +; Development Value: Off ; Production Value: Off ; http://php.net/track-errors -track_errors = Off +;track_errors = Off ; Turn off normal error reporting and emit XML-RPC error XML ; http://php.net/xmlrpc-errors @@ -678,11 +679,10 @@ ; http://php.net/auto-append-file auto_append_file = -; By default, PHP will output a character encoding using -; the Content-type: header. To disable sending of the charset, simply -; set it to be empty. +; By default, PHP will output a media type using the Content-Type header. To +; disable this, simply set it to be empty. ; -; PHP's built-in default is text/html +; PHP's built-in default media type is set to text/html. ; http://php.net/default-mimetype default_mimetype = "text/html" @@ -867,57 +867,55 @@ ; If you wish to have an extension loaded automatically, use the following ; syntax: ; -; extension=modulename.extension -; -; For example, on Windows: +; extension=modulename ; -; extension=msql.dll +; For example: ; -; ... or under UNIX: +; extension=mysqli ; -; extension=msql.so +; When the extension library to load is not located in the default extension +; directory, You may specify an absolute path to the library file: ; -; ... or with a path: +; extension=/path/to/extension/mysqli.so ; -; extension=/path/to/extension/msql.so +; Note : The syntax used in previous PHP versions ('extension=.so' and +; 'extension='php_.dll') is supported for legacy reasons and may be +; deprecated in a future PHP major version. So, when it is possible, please +; move to the new ('extension=) syntax. ; -; If you only provide the name of the extension, PHP will look for it in its -; default extension directory. +; Notes for Windows environments : ; -; Windows Extensions -; Note that ODBC support is built in, so no dll is needed for it. -; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5+) -; extension folders as well as the separate PECL DLL download (PHP 5+). -; Be sure to appropriately set the extension_dir directive. +; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+) +; extension folders as well as the separate PECL DLL download (PHP 5+). +; Be sure to appropriately set the extension_dir directive. ; -extension=bz2.so -extension=calendar.so -extension=curl.so -extension=enchant.so -extension=exif.so -extension=ftp.so -extension=gd.so -extension=gettext.so -extension=gmp.so -extension=iconv.so -extension=imap.so -extension=intl.so -extension=ldap.so -extension=mcrypt.so -extension=mysqli.so -extension=pdo_mysql.so -extension=pdo_pgsql.so -extension=pdo_sqlite.so -extension=pgsql.so -extension=posix.so -extension=shmop.so -extension=snmp.so -extension=soap.so -extension=sockets.so -extension=sqlite3.so -extension=tidy.so -extension=zip.so -zend_extension=opcache.so +extension=bz2 +extension=calendar +extension=curl +extension=enchant +extension=exif +extension=ftp +extension=gd +extension=gettext +extension=gmp +extension=iconv +extension=imap +extension=intl +extension=ldap +extension=mysqli +extension=pdo_mysql +extension=pdo_pgsql +extension=pdo_sqlite +extension=pgsql +extension=posix +extension=shmop +extension=snmp +extension=soap +extension=sockets +extension=sqlite3 +extension=tidy +extension=zip +zend_extension=opcache ;;;;;;;;;;;;;;;;;;; ; Module Settings ; @@ -1043,7 +1041,7 @@ ;mail.force_extra_parameters = ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename -mail.add_x_header = On +mail.add_x_header = Off ; The path to a log file that will log all mail() calls. Log entries include ; the full path of the script, line number, To address and headers. @@ -1051,10 +1049,6 @@ ; Log mail to syslog (Event Log on Windows). ;mail.log = syslog -[SQL] -; http://php.net/sql.safe-mode -sql.safe_mode = Off - [ODBC] ; http://php.net/odbc.default-db ;odbc.default_db = Not yet implemented @@ -1497,6 +1491,7 @@ ; Development Value: "" ; Production Value: "" ;session.trans_sid_hosts="" + ; Define how many bits are stored in each character when converting ; the binary hash data to something readable. ; Possible values: @@ -1578,7 +1573,7 @@ ; http://php.net/assert.exception ;assert.exception = On -; Issue a PHP warning for each failed assertion. +; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active) ; http://php.net/assert.warning ;assert.warning = On @@ -1756,17 +1751,6 @@ ; Sets the maximum number of open links or -1 for unlimited. ldap.max_links = -1 -[mcrypt] -; For more information about mcrypt settings see http://php.net/mcrypt-module-open - -; Directory where to load mcrypt algorithms -; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt) -;mcrypt.algorithms_dir= - -; Directory where to load mcrypt modes -; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt) -;mcrypt.modes_dir= - [dba] ;dba.default_handler= @@ -1775,7 +1759,7 @@ ;opcache.enable=1 ; Determines if Zend OPCache is enabled for the CLI version of PHP -;opcache.enable_cli=1 +;opcache.enable_cli=0 ; The OPcache shared memory storage size. ;opcache.memory_consumption=128 @@ -1784,7 +1768,7 @@ ;opcache.interned_strings_buffer=8 ; The maximum number of keys (scripts) in the OPcache hash table. -; Only numbers between 200 and 100000 are allowed. +; Only numbers between 200 and 1000000 are allowed. ;opcache.max_accelerated_files=10000 ; The maximum percentage of "wasted" memory until a restart is scheduled. @@ -1812,10 +1796,6 @@ ; size of the optimized code. ;opcache.save_comments=1 -; If enabled, a fast shutdown sequence is used for the accelerated code -; Depending on the used Memory Manager this may cause some incompatibilities. -;opcache.fast_shutdown=0 - ; Allow file existence override (file_exists, etc.) performance feature. ;opcache.enable_file_override=0 diff --git a/package.yml b/package.yml --- a/package.yml +++ b/package.yml @@ -1,8 +1,8 @@ name : php -version : 7.1.16 -release : 58 +version : 7.2.5 +release : 59 source : - - http://php.net/distributions/php-7.1.16.tar.xz : a5d67e477248a3911af7ef85c8400c1ba8cd632184186fd31070b96714e669f1 + - http://php.net/distributions/php-7.2.5.tar.xz : af70a33b3f7a51510467199b39af151333fbbe4cc21923bad9c7cf64268cddb2 license : PHP-3.01 component : programming summary : PHP is a popular general-purpose scripting language that is especially suited to web development @@ -28,8 +28,6 @@ - bzip2-devel - gettext-devel - imap-devel - - mcrypt - - libmcrypt-devel - libmhash-devel - libtool - net-snmp-devel @@ -89,7 +87,6 @@ --with-ldap-sasl \ --with-libdir=lib64 \ --with-libzip \ - --with-mcrypt=shared \ --with-mhash \ --with-mysqli=shared,mysqlnd \ --with-openssl \ diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml --- a/pspec_x86_64.xml +++ b/pspec_x86_64.xml @@ -2,19 +2,19 @@ php - Pierre-Yves - pyu@riseup.net + Philipp Trulson + philipp@trulson.de PHP-3.01 programming - PHP is a popular general-purpose scripting language that is especially suited to web development. + PHP is a popular general-purpose scripting language that is especially suited to web development PHP is a popular general-purpose scripting language that is especially suited to web development. https://solus-project.com/sources/README.Solus php - PHP is a popular general-purpose scripting language that is especially suited to web development. + PHP is a popular general-purpose scripting language that is especially suited to web development PHP is a popular general-purpose scripting language that is especially suited to web development. programming @@ -175,7 +175,6 @@ /usr/lib64/php/modules/imap.so /usr/lib64/php/modules/intl.so /usr/lib64/php/modules/ldap.so - /usr/lib64/php/modules/mcrypt.so /usr/lib64/php/modules/mysqli.so /usr/lib64/php/modules/opcache.so /usr/lib64/php/modules/pdo_mysql.so @@ -238,19 +237,19 @@ programming.devel - php + php /usr/include/ - - 2018-04-28 - 7.1.16 + + 2018-05-07 + 7.2.5 Packaging update - Pierre-Yves - pyu@riseup.net + Philipp Trulson + philipp@trulson.de - + \ No newline at end of file