summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-05-06 11:01:35 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-24 10:19:27 +0100
commit730ccf68a03fc89ead8ecdceec72998000a88d69 (patch)
tree7ea8c832395bfa492ad12c7e823d3cd0ee25d837 /gnu
parentd4e612d28785dde3deb117b0fb896eccaf742cdd (diff)
gnu: mod-wsgi: Update to 5.0.2.
* gnu/packages/web.scm (mod-wsgi): Update to 5.0.2. [arguments, native-inputs, inputs]: Improve style. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/web.scm21
1 files changed, 9 insertions, 12 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 67120bc2f17..6836e664bd8 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -480,7 +480,7 @@ one.")
480(define-public mod-wsgi 480(define-public mod-wsgi
481 (package 481 (package
482 (name "mod-wsgi") 482 (name "mod-wsgi")
483 (version "4.9.4") 483 (version "5.0.2")
484 (source (origin 484 (source (origin
485 (method git-fetch) 485 (method git-fetch)
486 (uri (git-reference 486 (uri (git-reference
@@ -489,19 +489,16 @@ one.")
489 (file-name (git-file-name name version)) 489 (file-name (git-file-name name version))
490 (sha256 490 (sha256
491 (base32 491 (base32
492 "1zf921nd9xxdvvc8awzzfrljr0n29vi28mlam0jdwvsk0xv4gd7a")))) 492 "0cb3bh682cf8v0hvlx84w44vgac0lkx8pkbnxyd8ahpqrx9r44qn"))))
493 (build-system gnu-build-system) 493 (build-system gnu-build-system)
494 (arguments 494 (arguments
495 `(#:disallowed-references ,(list (this-package-native-input "httpd")) 495 (list
496 #:tests? #f ; TODO: can't figure out if there are tests 496 #:disallowed-references (list (this-package-native-input "httpd"))
497 #:make-flags (list 497 #:tests? #f ; TODO: can't figure out if there are tests
498 (string-append "DESTDIR=" 498 #:make-flags #~(list (string-append "DESTDIR=" #$output)
499 (assoc-ref %outputs "out")) 499 "LIBEXECDIR=/modules")))
500 "LIBEXECDIR=/modules"))) 500 (native-inputs (list httpd))
501 (native-inputs 501 (inputs (list python-wrapper))
502 `(("httpd" ,httpd)))
503 (inputs
504 `(("python" ,python-wrapper)))
505 (synopsis "Apache HTTPD module for Python WSGI applications") 502 (synopsis "Apache HTTPD module for Python WSGI applications")
506 (description 503 (description
507 "The mod_wsgi module for the Apache HTTPD Server adds support for running 504 "The mod_wsgi module for the Apache HTTPD Server adds support for running