emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#29742: closed ([PATCH] gnu: Add mod-wsgi.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#29742: closed ([PATCH] gnu: Add mod-wsgi.)
Date: Sun, 17 Dec 2017 20:57:02 +0000

Your message dated Sun, 17 Dec 2017 20:56:12 +0000
with message-id <address@hidden>
and subject line Re: [bug#29742] [PATCH] gnu: Add mod-wsgi.
has caused the debbugs.gnu.org bug report #29742,
regarding [PATCH] gnu: Add mod-wsgi.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
29742: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=29742
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add mod-wsgi. Date: Sat, 16 Dec 2017 20:29:11 +0000
* gnu/packages/web.scm (mod-wsgi): New variable.
---
 gnu/packages/web.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index eb0436cb3..9cda0f3e0 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -145,6 +145,37 @@ and its related documentation.")
     (license l:asl2.0)
     (home-page "https://httpd.apache.org/";)))
 
+(define-public mod-wsgi
+  (package
+    (name "mod-wsgi")
+    (version "4.5.22")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/GrahamDumpleton/mod_wsgi/archive/";
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "0n1yhmrfp8mjbsngmyjl937c6rc0069p6wdi1lknrbn1q42hzw6q"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:tests? #f ;; TODO: Can't figure out if there are tests
+       #:make-flags (list
+                     (string-append "DESTDIR="
+                                    (assoc-ref %outputs "out"))
+                     "LIBEXECDIR=/modules")))
+    (inputs
+     `(("httpd" ,httpd)
+       ("python" ,python-wrapper)))
+    (synopsis "Apache module for applications using the Python WSGI
+specification")
+    (description
+     "The mod_wsgi module for the Apache @acronym{HTTP, HyperText Transfer
+Protocol} Server adds support for running applications that support the Python
address@hidden, Web Server Gateway Interface} specification.")
+    (license l:asl2.0)
+    (home-page "https://modwsgi.readthedocs.io/";)))
+
 (define-public nginx
   (package
     (name "nginx")
-- 
2.14.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#29742] [PATCH] gnu: Add mod-wsgi. Date: Sun, 17 Dec 2017 20:56:12 +0000 User-agent: mu4e 0.9.18; emacs 25.3.1
Ludovic Courtès <address@hidden> writes:

> Christopher Baines <address@hidden> skribis:
>
>> * gnu/packages/web.scm (mod-wsgi): New variable.
>
> [...]
>
>> +    (arguments
>> +     '(#:tests? #f ;; TODO: Can't figure out if there are tests
>
> That’s OK at a first stab at least.  :-)
>
>> +    (synopsis "Apache module for applications using the Python WSGI
>> +specification")
>
> s/Apache/Apache httpd/
>
> and maybe “for …” → “for Python WSGI applications”
>
>> +    (description
>> +     "The mod_wsgi module for the Apache @acronym{HTTP, HyperText Transfer
>> +Protocol} Server adds support for running applications that support the 
>> Python
>
> I’d just write “for Apache httpd”.
>
> Otherwise LGTM, thanks!

Great, I've made these changes and pushed. Thanks for reviewing :)

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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