guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

167/246: gnu: gunicorn: Update to 22.0.0.


From: guix-commits
Subject: 167/246: gnu: gunicorn: Update to 22.0.0.
Date: Fri, 10 Jan 2025 10:47:42 -0500 (EST)

janneke pushed a commit to branch core-packages-team
in repository guix.

commit 8f0df8699ae76d4c1e9aab76797b504e2e7d1249
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Fri Jan 3 13:36:38 2025 +0100

    gnu: gunicorn: Update to 22.0.0.
    
    * gnu/packages/python-web.scm (gunicorn): Update to 22.0.0.
    (gunicorn-next): Remove.
    
    Change-Id: I3e62ce45ca3c48e5c76b83b15b08bf420ff4d476
---
 gnu/packages/python-web.scm | 23 ++++++-----------------
 1 file changed, 6 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 27ac440014..0c24291b2e 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -69,6 +69,7 @@
 ;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
 ;;; Copyright © 2024 Spencer King <spencer.king@geneoscopy.com>
 ;;; Copyright © 2024 Attila Lendvai <attila@lendvai.name>
+;;; Copyright © 2025 Janneke Nieuwenhuizen <janneke@gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -6500,13 +6501,16 @@ event loop.  It is implemented in Cython and uses libuv 
under the hood.")
 (define-public gunicorn
   (package
     (name "gunicorn")
-    (version "21.2.0")
+    (version "22.0.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "gunicorn" version))
        (sha256
-        (base32 "0cqhr2g880snpi45qvvch288m4fdyd5vqrcz3gk9hkv33pzqpv48"))))
+        (base32
+         "0qzc3ghayc137hlwrqqwkkhaf8f5h9ja21qwy4rznxpz75i462sa"))))
+    ;; CVE-2024-1135 is fixed in version 22.0.0.
+    (properties `((lint-hidden-cve . ("CVE-2024-1135"))))
     (outputs '("out" "doc"))
     (build-system pyproject-build-system)
     (arguments
@@ -6577,21 +6581,6 @@ various web frameworks, simply implemented, light on 
server resources,
 and fairly speedy.")
   (license license:expat)))
 
-(define-public gunicorn-next
-  (package
-    (inherit gunicorn)
-    (name "gunicorn")
-    (version "22.0.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (pypi-uri "gunicorn" version))
-       (sha256
-        (base32
-         "0qzc3ghayc137hlwrqqwkkhaf8f5h9ja21qwy4rznxpz75i462sa"))))
-    ;; CVE-2024-1135 is fixed in version 22.0.0.
-    (properties `((lint-hidden-cve . ("CVE-2024-1135"))))))
-
 ;; break cyclic dependency for python-aiohttp, which depends on gunicorn for
 ;; its tests
 (define-public gunicorn-bootstrap



reply via email to

[Prev in Thread] Current Thread [Next in Thread]