From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48809) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cyiFy-0004Qd-H7 for guix-patches@gnu.org; Thu, 13 Apr 2017 13:10:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cyiFu-0007Xi-I0 for guix-patches@gnu.org; Thu, 13 Apr 2017 13:10:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:47698) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cyiFu-0007Xc-Ef for guix-patches@gnu.org; Thu, 13 Apr 2017 13:10:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cyiFu-0006xd-8L for guix-patches@gnu.org; Thu, 13 Apr 2017 13:10:02 -0400 Subject: bug#26485: update php to 7.1.4 Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48529) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cyiEv-0003nC-3F for guix-patches@gnu.org; Thu, 13 Apr 2017 13:09:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cyiEr-00079B-2k for guix-patches@gnu.org; Thu, 13 Apr 2017 13:09:01 -0400 Received: from dau94-h03-89-91-205-84.dsl.sta.abo.bbox.fr ([89.91.205.84]:43041 helo=skaro.lepiller.eu) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cyiEq-00077X-KA for guix-patches@gnu.org; Thu, 13 Apr 2017 13:08:56 -0400 Received: from localhost (localhost [127.0.0.1]) by skaro.lepiller.eu (Postfix) with ESMTP id 2750B811FB for ; Thu, 13 Apr 2017 19:08:50 +0200 (CEST) Received: from skaro.lepiller.eu ([127.0.0.1]) by localhost (lepiller.eu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZD0N9k-Q1vXH for ; Thu, 13 Apr 2017 19:08:45 +0200 (CEST) Received: from localhost (89-93-157-164.hfc.dyn.abo.bbox.fr [89.93.157.164]) by skaro.lepiller.eu (Postfix) with ESMTPSA id C1A1080BB9 for ; Thu, 13 Apr 2017 19:08:44 +0200 (CEST) Date: Thu, 13 Apr 2017 19:08:36 +0200 From: Julien Lepiller Message-ID: <20170413190836.719b54f8@lepiller.eu> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/WB7fx5UdzuO/iN/rrLec+CL" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26485@debbugs.gnu.org --MP_/WB7fx5UdzuO/iN/rrLec+CL Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, a new version of PHP has just been released. Here is a patch to update it. --MP_/WB7fx5UdzuO/iN/rrLec+CL Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-php-Update-to-7.1.4.patch >From cde576b4163af51c928f56137547d8060d4b911b Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 13 Apr 2017 15:16:26 +0200 Subject: [PATCH] gnu: php: Update to 7.1.4. * gnu/packages/php.scm (php): Update to 7.1.4. --- gnu/packages/php.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/php.scm b/gnu/packages/php.scm index 071820e..a40568e 100644 --- a/gnu/packages/php.scm +++ b/gnu/packages/php.scm @@ -53,7 +53,7 @@ (define-public php (package (name "php") - (version "7.1.3") + (version "7.1.4") (home-page "https://secure.php.net/") (source (origin (method url-fetch) @@ -61,7 +61,7 @@ name "-" version ".tar.xz")) (sha256 (base32 - "1c0brdq5aqh4i127pq1g904dfb6klz2gbg9gjvykg3kp6hk7r274")) + "02rh1lcfj2hakyls73gwn6w00yblnfh4883w13gn7sgkmn346lbi")) (modules '((guix build utils))) (snippet '(with-directory-excursion "ext" -- 2.7.4 --MP_/WB7fx5UdzuO/iN/rrLec+CL--