Page Menu
Home
Solus
Search
Configure Global Search
Log In
Files
F10844267
D2829.id6934.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
9 KB
Referenced Files
None
Subscribers
None
D2829.id6934.diff
View Options
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=<ext>.so' and
+; 'extension='php_<ext>.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=<ext>) 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,12 +1,11 @@
name : php
-version : 7.1.16
-release : 56
+version : 7.2.5
+release : 57
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 License
component : programming
-summary : PHP is a popular general-purpose scripting language that is especially
- suited to web development.
+summary : PHP is a popular general-purpose scripting language that is especially suited to web development.
description: |
PHP is a popular general-purpose scripting language that is especially suited to web development.
builddeps :
@@ -29,9 +28,7 @@
- gettext-devel
- gmp-devel
- imap-devel
- - mcrypt
- libjpeg-turbo-devel
- - libmcrypt-devel
- libmhash-devel
- libtool
- net-snmp-devel
@@ -92,7 +89,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
@@ -175,7 +175,6 @@
<Path fileType="library">/usr/lib64/php/modules/imap.so</Path>
<Path fileType="library">/usr/lib64/php/modules/intl.so</Path>
<Path fileType="library">/usr/lib64/php/modules/ldap.so</Path>
- <Path fileType="library">/usr/lib64/php/modules/mcrypt.so</Path>
<Path fileType="library">/usr/lib64/php/modules/mysqli.so</Path>
<Path fileType="library">/usr/lib64/php/modules/opcache.so</Path>
<Path fileType="library">/usr/lib64/php/modules/pdo_mysql.so</Path>
@@ -238,19 +237,19 @@
</Description>
<PartOf>programming.devel</PartOf>
<RuntimeDependencies>
- <Dependency release="56">php</Dependency>
+ <Dependency release="57">php</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/</Path>
</Files>
</Package>
<History>
- <Update release="56">
- <Date>2018-03-31</Date>
- <Version>7.1.16</Version>
+ <Update release="57">
+ <Date>2018-04-30</Date>
+ <Version>7.2.5</Version>
<Comment>Packaging update</Comment>
<Name>Philipp Trulson</Name>
<Email>philipp@trulson.de</Email>
</Update>
</History>
</PISI>
\ No newline at end of file
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Jun 11 2023, 8:30 PM (8 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5802852
Default Alt Text
D2829.id6934.diff (9 KB)
Attached To
Mode
D2829: Update php to 7.2.5
Attached
Detach File
Event Timeline
Log In to Comment