From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:48519) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hWgfh-0002aC-T9 for guix-patches@gnu.org; Fri, 31 May 2019 08:30:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hWgfe-0001Ly-Tn for guix-patches@gnu.org; Fri, 31 May 2019 08:30:09 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49681) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hWgfc-0001KT-1m for guix-patches@gnu.org; Fri, 31 May 2019 08:30:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hWgfb-0001Ir-T9 for guix-patches@gnu.org; Fri, 31 May 2019 08:30:03 -0400 Subject: [bug#36025] [PATCH] Update php to 7.3.6 Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:47879) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hWgfA-0002Dj-6X for guix-patches@gnu.org; Fri, 31 May 2019 08:29:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hWgS0-000514-45 for guix-patches@gnu.org; Fri, 31 May 2019 08:16:01 -0400 Received: from mail-wr1-x42c.google.com ([2a00:1450:4864:20::42c]:37912) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hWgRz-0004zl-Sw for guix-patches@gnu.org; Fri, 31 May 2019 08:16:00 -0400 Received: by mail-wr1-x42c.google.com with SMTP id d18so6388580wrs.5 for ; Fri, 31 May 2019 05:15:59 -0700 (PDT) Received: from watership ([2a00:23c4:7e93:6400:dc12:6385:ba0f:5c9]) by smtp.gmail.com with ESMTPSA id h200sm9395717wme.11.2019.05.31.05.08.14 for (version=TLS1_3 cipher=AEAD-AES256-GCM-SHA384 bits=256/256); Fri, 31 May 2019 05:08:14 -0700 (PDT) From: Alex Sassmannshausen Date: Fri, 31 May 2019 13:08:13 +0100 Message-ID: <87h89an7wy.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: alex.sassmannshausen@gmail.com Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36025@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello, Please find attached. I had to disable a test for a newly solved bug because the upstream version of GD we use differs from the version used with PHP itself normally. Best wishes, Alex --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-php-Update-to-7.3.6.patch >From 98e354c2d43c1b62c28ec549ffd0c70f64338f60 Mon Sep 17 00:00:00 2001 From: Alex Sassmannshausen Date: Fri, 31 May 2019 13:01:16 +0100 Subject: [PATCH] gnu: php: Update to 7.3.6. * gnu/packages/php.scm (php): Update to 7.3.6. --- gnu/packages/php.scm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gnu/packages/php.scm b/gnu/packages/php.scm index 68043051b5..792bcbc948 100644 --- a/gnu/packages/php.scm +++ b/gnu/packages/php.scm @@ -58,7 +58,7 @@ (define-public php (package (name "php") - (version "7.3.5") + (version "7.3.6") (home-page "https://secure.php.net/") (source (origin (method url-fetch) @@ -66,7 +66,7 @@ name "-" version ".tar.xz")) (sha256 (base32 - "0wi4vd1c3ylsv7cs5b74pkspybb22qwk6fs5r2as3m3glhw1h0g1")) + "0r51aiff2abbr3d2swhvja0wm56sjxzqbciabcvvq3m3v9kqkz7y")) (modules '((guix build utils))) (snippet '(with-directory-excursion "ext" @@ -198,8 +198,8 @@ ;; Drop tests that are known to fail. (for-each delete-file - '("ext/posix/tests/posix_getgrgid.phpt" ; Requires /etc/group. - "ext/sockets/tests/bug63000.phpt" ; Fails to detect OS. + '("ext/posix/tests/posix_getgrgid.phpt" ; Requires /etc/group. + "ext/sockets/tests/bug63000.phpt" ; Fails to detect OS. "ext/sockets/tests/socket_shutdown.phpt" ; Requires DNS. "ext/sockets/tests/socket_send.phpt" ; Likewise. "ext/sockets/tests/mcast_ipv4_recv.phpt" ; Requires multicast. @@ -255,6 +255,9 @@ ;; but the bug report suggests the issue was in ;; the bundled gd, not upstream. "ext/gd/tests/bug77272.phpt" + ;; Test has correct result but fails on different + ;; error message. + "ext/gd/tests/bug77973.phpt" ;; XXX: These iconv tests have the expected outcome, ;; but with different error messages. -- 2.21.0 --=-=-=--