gnu: php: Update to 7.3.0.
* gnu/packages/php.scm (php)[version]: Update to 7.3.0. [arguments]: Delete "sapi/cli/tests/upload_2G.phpt" substitution and delete "ext/pcre/tests/bug76909.phpt" file. [inputs]: Replace 'pcre' with 'pcre2'.
This commit is contained in:
parent
ce3fef9fcd
commit
ebcb58c9e8
@ -53,7 +53,7 @@
|
|||||||
(define-public php
|
(define-public php
|
||||||
(package
|
(package
|
||||||
(name "php")
|
(name "php")
|
||||||
(version "7.2.12")
|
(version "7.3.0")
|
||||||
(home-page "https://secure.php.net/")
|
(home-page "https://secure.php.net/")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
@ -61,7 +61,7 @@
|
|||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1qbz2j9kzqxxp0mmx02zavvz20ji7izqdnri25g1mrwyhz60974q"))
|
"1db0lm84hynilrjj3k1s7skp1y2gl4ip1ihr7662i2xgannmq6bx"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(with-directory-excursion "ext"
|
'(with-directory-excursion "ext"
|
||||||
@ -74,7 +74,7 @@
|
|||||||
;;"fileinfo/libmagic" ; This is a patched version of libmagic.
|
;;"fileinfo/libmagic" ; This is a patched version of libmagic.
|
||||||
'("gd/libgd"
|
'("gd/libgd"
|
||||||
"mbstring/oniguruma"
|
"mbstring/oniguruma"
|
||||||
"pcre/pcrelib"
|
"pcre/pcre2lib"
|
||||||
"sqlite3/libsqlite"
|
"sqlite3/libsqlite"
|
||||||
"xmlrpc/libxmlrpc"
|
"xmlrpc/libxmlrpc"
|
||||||
"zip/lib"))
|
"zip/lib"))
|
||||||
@ -176,11 +176,6 @@
|
|||||||
(substitute* "ext/standard/tests/streams/bug60602.phpt"
|
(substitute* "ext/standard/tests/streams/bug60602.phpt"
|
||||||
(("'ls'") (string-append "'" (which "ls") "'")))
|
(("'ls'") (string-append "'" (which "ls") "'")))
|
||||||
|
|
||||||
;; The expected output is slightly different from what is given,
|
|
||||||
;; in a section that's not related to the actual test
|
|
||||||
(substitute* "sapi/cli/tests/upload_2G.phpt"
|
|
||||||
(("Test\\\\n") "Test\n\n"))
|
|
||||||
|
|
||||||
;; Drop tests that are known to fail.
|
;; Drop tests that are known to fail.
|
||||||
(for-each delete-file
|
(for-each delete-file
|
||||||
'("ext/posix/tests/posix_getgrgid.phpt" ; Requires /etc/group.
|
'("ext/posix/tests/posix_getgrgid.phpt" ; Requires /etc/group.
|
||||||
@ -291,7 +286,10 @@
|
|||||||
"ext/ldap/tests/ldap_set_option_error.phpt"
|
"ext/ldap/tests/ldap_set_option_error.phpt"
|
||||||
|
|
||||||
;; Sometimes cannot start the LDAP server.
|
;; Sometimes cannot start the LDAP server.
|
||||||
"ext/ldap/tests/bug76248.phpt"))
|
"ext/ldap/tests/bug76248.phpt"
|
||||||
|
|
||||||
|
;; Bug #76909 preg_match difference between 7.3 and < 7.3
|
||||||
|
"ext/pcre/tests/bug76909.phpt"))
|
||||||
|
|
||||||
;; Skip tests requiring network access.
|
;; Skip tests requiring network access.
|
||||||
(setenv "SKIP_ONLINE_TESTS" "1")
|
(setenv "SKIP_ONLINE_TESTS" "1")
|
||||||
@ -324,7 +322,7 @@
|
|||||||
("oniguruma" ,oniguruma-5)
|
("oniguruma" ,oniguruma-5)
|
||||||
("openldap" ,openldap)
|
("openldap" ,openldap)
|
||||||
("openssl" ,openssl)
|
("openssl" ,openssl)
|
||||||
("pcre" ,pcre)
|
("pcre" ,pcre2)
|
||||||
("postgresql" ,postgresql)
|
("postgresql" ,postgresql)
|
||||||
("readline" ,readline)
|
("readline" ,readline)
|
||||||
("sqlite" ,sqlite)
|
("sqlite" ,sqlite)
|
||||||
|
Loading…
Reference in New Issue
Block a user