unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#33637] [PATCH] gnu: python: Update to 3.7.1.
@ 2018-12-05 21:19 Christopher Baines
  2018-12-08 23:03 ` Marius Bakke
  0 siblings, 1 reply; 4+ messages in thread
From: Christopher Baines @ 2018-12-05 21:19 UTC (permalink / raw)
  To: 33637

Remove the replacement, as version 3.7.1 includes the fix for this issue.

* gnu/packages/python.scm (python-3.7): Update to 3.7.1.
(python-3/fixed): Remove this.
---
 gnu/packages/python.scm | 13 ++-----------
 1 file changed, 2 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index d0401b7bd..1abf2e816 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -343,8 +343,7 @@ data types.")
 (define-public python-3.7
   (package (inherit python-2)
     (name "python")
-    (version "3.7.0")
-    (replacement python-3/fixed)
+    (version "3.7.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://www.python.org/ftp/python/"
@@ -357,7 +356,7 @@ data types.")
               (patch-flags '("-p0"))
               (sha256
                (base32
-                "0j9mic5c9lbd2b20wka7hily7szz740wy9ilfrczxap63rnrk0h3"))
+                "0v9x4h22rh5cwpsq1mwpdi3c9lc9820lzp2nmn9g20llij72nzps"))
               (snippet
                '(begin
                   (for-each delete-file
@@ -416,14 +415,6 @@ data types.")
 ;; Current 3.x version.
 (define-public python-3 python-3.7)
 
-(define python-3/fixed
-  (package
-    (inherit python-3)
-    (source (origin
-              (inherit (package-source python-3))
-              (patches (append (origin-patches (package-source python-3))
-                               (search-patches "python-CVE-2018-14647.patch")))))))
-
 ;; Current major version.
 (define-public python python-3)
 
-- 
2.19.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#33637] [PATCH] gnu: python: Update to 3.7.1.
  2018-12-05 21:19 [bug#33637] [PATCH] gnu: python: Update to 3.7.1 Christopher Baines
@ 2018-12-08 23:03 ` Marius Bakke
  2018-12-09 12:14   ` Christopher Baines
  0 siblings, 1 reply; 4+ messages in thread
From: Marius Bakke @ 2018-12-08 23:03 UTC (permalink / raw)
  To: Christopher Baines, 33637

[-- Attachment #1: Type: text/plain, Size: 316 bytes --]

Christopher Baines <mail@cbaines.net> writes:

> Remove the replacement, as version 3.7.1 includes the fix for this issue.
>
> * gnu/packages/python.scm (python-3.7): Update to 3.7.1.
> (python-3/fixed): Remove this.

OK for 'core-updates', thanks!

(I suppose we should rename the -next branch too, can you do it?)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#33637] [PATCH] gnu: python: Update to 3.7.1.
  2018-12-08 23:03 ` Marius Bakke
@ 2018-12-09 12:14   ` Christopher Baines
  2019-10-08 18:37     ` bug#33637: " Christopher Baines
  0 siblings, 1 reply; 4+ messages in thread
From: Christopher Baines @ 2018-12-09 12:14 UTC (permalink / raw)
  To: Marius Bakke; +Cc: 33637

[-- Attachment #1: Type: text/plain, Size: 531 bytes --]


Marius Bakke <mbakke@fastmail.com> writes:

> Christopher Baines <mail@cbaines.net> writes:
>
>> Remove the replacement, as version 3.7.1 includes the fix for this issue.
>>
>> * gnu/packages/python.scm (python-3.7): Update to 3.7.1.
>> (python-3/fixed): Remove this.
>
> OK for 'core-updates', thanks!
>
> (I suppose we should rename the -next branch too, can you do it?)

Great, I've renamed the branch now (hopefully correctly), and I've also
pushed this patch to the newly created core-updates (was
core-updates-next) branch.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 962 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#33637: [PATCH] gnu: python: Update to 3.7.1.
  2018-12-09 12:14   ` Christopher Baines
@ 2019-10-08 18:37     ` Christopher Baines
  0 siblings, 0 replies; 4+ messages in thread
From: Christopher Baines @ 2019-10-08 18:37 UTC (permalink / raw)
  To: 33637-done

[-- Attachment #1: Type: text/plain, Size: 737 bytes --]


Christopher Baines <mail@cbaines.net> writes:

> Marius Bakke <mbakke@fastmail.com> writes:
>
>> Christopher Baines <mail@cbaines.net> writes:
>>
>>> Remove the replacement, as version 3.7.1 includes the fix for this issue.
>>>
>>> * gnu/packages/python.scm (python-3.7): Update to 3.7.1.
>>> (python-3/fixed): Remove this.
>>
>> OK for 'core-updates', thanks!
>>
>> (I suppose we should rename the -next branch too, can you do it?)
>
> Great, I've renamed the branch now (hopefully correctly), and I've also
> pushed this patch to the newly created core-updates (was
> core-updates-next) branch.

So there were obviously more updates pushed to core-updates, as Python
3.7.4 has hit master now, but that means this bug can be closed :D

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 962 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-10-08 18:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-05 21:19 [bug#33637] [PATCH] gnu: python: Update to 3.7.1 Christopher Baines
2018-12-08 23:03 ` Marius Bakke
2018-12-09 12:14   ` Christopher Baines
2019-10-08 18:37     ` bug#33637: " Christopher Baines

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).