* [bug#39697] Update PHP to 7.4.3.
@ 2020-02-20 16:59 Alex Sassmannshausen
2020-02-20 17:08 ` Julien Lepiller
0 siblings, 1 reply; 4+ messages in thread
From: Alex Sassmannshausen @ 2020-02-20 16:59 UTC (permalink / raw)
To: 39697
[-- Attachment #1: Type: text/plain, Size: 156 bytes --]
Hello,
Please find attached a patch to update PHP to 7.4.3. This skips 7.4.2.
I had to disable 2 more GD patches to get it to build.
Best wishes,
Alex
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-php-Update-to-7.4.3.patch --]
[-- Type: text/x-diff, Size: 1623 bytes --]
From 0c12f3923fa0c5b0cada69fceba89ceb6738beee Mon Sep 17 00:00:00 2001
From: Alex Sassmannshausen <alex@komputilo.eu>
Date: Thu, 20 Feb 2020 17:55:38 +0100
Subject: [PATCH] gnu: php: Update to 7.4.3.
* gnu/packages/php.scm (php): Update to 7.4.3.
---
gnu/packages/php.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/php.scm b/gnu/packages/php.scm
index a82257c582..7bb88a7270 100644
--- a/gnu/packages/php.scm
+++ b/gnu/packages/php.scm
@@ -59,7 +59,7 @@
(define-public php
(package
(name "php")
- (version "7.4.1")
+ (version "7.4.3")
(home-page "https://secure.php.net/")
(source (origin
(method url-fetch)
@@ -67,7 +67,7 @@
"php-" version ".tar.xz"))
(sha256
(base32
- "0qn7zwf2jzj3h7p4b1l79lf9gv236mycwkhgw15hj2fmpmkbh6sn"))
+ "0alqqs5hn4jmz1adrbysbw92n55nkw6f9vfivqj829kwhxnqa7yg"))
(modules '((guix build utils)))
(snippet
'(with-directory-excursion "ext"
@@ -237,6 +237,9 @@
;; complete. It's a warning in both cases and test
;; result is the same.
"ext/gd/tests/bug77973.phpt"
+ ;; New test failures added with 7.4.3
+ "ext/gd/tests/bug79067.phpt"
+ "ext/gd/tests/bug79068.phpt"
;; XXX: These iconv tests have the expected outcome,
;; but with different error messages.
--
2.23.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#39697] Update PHP to 7.4.3.
2020-02-20 16:59 [bug#39697] Update PHP to 7.4.3 Alex Sassmannshausen
@ 2020-02-20 17:08 ` Julien Lepiller
2020-02-20 17:11 ` Alex Sassmannshausen
0 siblings, 1 reply; 4+ messages in thread
From: Julien Lepiller @ 2020-02-20 17:08 UTC (permalink / raw)
To: Alex Sassmannshausen, 39697
Le 20 février 2020 11:59:35 GMT-05:00, Alex Sassmannshausen <alex.sassmannshausen@gmail.com> a écrit :
>Hello,
>
>Please find attached a patch to update PHP to 7.4.3. This skips 7.4.2.
>I had to disable 2 more GD patches to get it to build.
>
>Best wishes,
>
>Alex
A description of the failures would hade been great, but sure. I'll try to build it anl if it works, will push tonight, thank you!
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#39697] Update PHP to 7.4.3.
2020-02-20 17:08 ` Julien Lepiller
@ 2020-02-20 17:11 ` Alex Sassmannshausen
2020-02-21 1:54 ` bug#39697: " Julien Lepiller
0 siblings, 1 reply; 4+ messages in thread
From: Alex Sassmannshausen @ 2020-02-20 17:11 UTC (permalink / raw)
To: Julien Lepiller; +Cc: 39697
Julien Lepiller <julien@lepiller.eu> writes:
> Le 20 février 2020 11:59:35 GMT-05:00, Alex Sassmannshausen <alex.sassmannshausen@gmail.com> a écrit :
>>Hello,
>>
>>Please find attached a patch to update PHP to 7.4.3. This skips 7.4.2.
>>I had to disable 2 more GD patches to get it to build.
>>
>>Best wishes,
>>
>>Alex
>
> A description of the failures would hade been great, but sure. I'll
> try to build it anl if it works, will push tonight, thank you!
OK, I'll bear this in mind for next time. Thanks!
Alex
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#39697: Update PHP to 7.4.3.
2020-02-20 17:11 ` Alex Sassmannshausen
@ 2020-02-21 1:54 ` Julien Lepiller
0 siblings, 0 replies; 4+ messages in thread
From: Julien Lepiller @ 2020-02-21 1:54 UTC (permalink / raw)
To: Alex Sassmannshausen; +Cc: 39697-done
Le Thu, 20 Feb 2020 18:11:21 +0100,
Alex Sassmannshausen <alex.sassmannshausen@gmail.com> a écrit :
> Julien Lepiller <julien@lepiller.eu> writes:
>
> > Le 20 février 2020 11:59:35 GMT-05:00, Alex Sassmannshausen
> > <alex.sassmannshausen@gmail.com> a écrit :
> >>Hello,
> >>
> >>Please find attached a patch to update PHP to 7.4.3. This skips
> >>7.4.2. I had to disable 2 more GD patches to get it to build.
> >>
> >>Best wishes,
> >>
> >>Alex
> >
> > A description of the failures would hade been great, but sure. I'll
> > try to build it anl if it works, will push tonight, thank you!
>
> OK, I'll bear this in mind for next time. Thanks!
>
> Alex
Pushed as 2940b3e16ca3ad61b8d9159448a2e42d1fba2c2a, thank you!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-02-21 1:56 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-20 16:59 [bug#39697] Update PHP to 7.4.3 Alex Sassmannshausen
2020-02-20 17:08 ` Julien Lepiller
2020-02-20 17:11 ` Alex Sassmannshausen
2020-02-21 1:54 ` bug#39697: " Julien Lepiller
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.