ports/126750: Update port: www/mod_wsgi Upgrade to 2.2

Douglas Thrift douglas at douglasthrift.net
Sat Aug 23 21:50:05 UTC 2008


The following reply was made to PR ports/126750; it has been noted by GNATS.

From: "Douglas Thrift" <douglas at douglasthrift.net>
To: <bug-followup at FreeBSD.org>,
        "Douglas William Thrift" <douglas at douglasthrift.net>
Cc:  
Subject: Re: ports/126750: Update port: www/mod_wsgi Upgrade to 2.2
Date: Sat, 23 Aug 2008 14:47:24 -0700

 This is a multi-part message in MIME format.
 
 ------=_NextPart_000_2072_01C9052F.27D19C20
 Content-Type: text/plain;
 	format=flowed;
 	charset="utf-8";
 	reply-type=original
 Content-Transfer-Encoding: 7bit
 
 Ok,
 
 Version 2.3 fixes that bug.
 
 http://code.google.com/p/modwsgi/wiki/ChangesInVersion0203
 _______________________________________________________________________
 Douglas William Thrift
 <douglas at douglasthrift.net>
 <http://www.douglasthrift.net/>
 
 ------=_NextPart_000_2072_01C9052F.27D19C20
 Content-Type: application/octet-stream;
 	name="mod_wsgi.patch"
 Content-Transfer-Encoding: quoted-printable
 Content-Disposition: attachment;
 	filename="mod_wsgi.patch"
 
 diff -Nrux .svn -x work /usr/ports/www/mod_wsgi/Makefile =
 mod_wsgi/Makefile=0A=
 --- /usr/ports/www/mod_wsgi/Makefile	2008-07-16 16:23:54.000000000 -0700=0A=
 +++ mod_wsgi/Makefile	2008-08-23 14:36:28.012407983 -0700=0A=
 @@ -6,7 +6,7 @@=0A=
  #=0A=
  =0A=
  PORTNAME=3D	mod_wsgi=0A=
 -PORTVERSION=3D	2.1=0A=
 +PORTVERSION=3D	2.3=0A=
  CATEGORIES=3D	www python=0A=
  MASTER_SITES=3D	${MASTER_SITE_GOOGLE_CODE}=0A=
  =0A=
 diff -Nrux .svn -x work /usr/ports/www/mod_wsgi/distinfo =
 mod_wsgi/distinfo=0A=
 --- /usr/ports/www/mod_wsgi/distinfo	2008-07-16 16:23:54.000000000 -0700=0A=
 +++ mod_wsgi/distinfo	2008-08-23 14:24:58.962894986 -0700=0A=
 @@ -1,3 +1,3 @@=0A=
 -MD5 (mod_wsgi-2.1.tar.gz) =3D 4e0e8b5a13e0be2fc5b038f1e3e826a2=0A=
 -SHA256 (mod_wsgi-2.1.tar.gz) =3D =
 7f1c28f1fbc585de2a15770c990e45b46d184245183775dd31e3a63bd30fc3a0=0A=
 -SIZE (mod_wsgi-2.1.tar.gz) =3D 96635=0A=
 +MD5 (mod_wsgi-2.3.tar.gz) =3D c686e1c498dbe5753fe491c3cf61cff4=0A=
 +SHA256 (mod_wsgi-2.3.tar.gz) =3D =
 760f03e4d96dd0560717b06448af95bd79e91b59d31930171775a53bb7ec2375=0A=
 +SIZE (mod_wsgi-2.3.tar.gz) =3D 96872=0A=
 diff -Nrux .svn -x work /usr/ports/www/mod_wsgi/files/patch-mod_wsgi.c =
 mod_wsgi/files/patch-mod_wsgi.c=0A=
 --- /usr/ports/www/mod_wsgi/files/patch-mod_wsgi.c	2008-07-19 =
 10:50:05.000000000 -0700=0A=
 +++ mod_wsgi/files/patch-mod_wsgi.c	2008-08-23 14:27:52.434479783 -0700=0A=
 @@ -1,20 +1,13 @@=0A=
 ---- mod_wsgi.c.orig	2008-06-18 16:35:40.000000000 +0200=0A=
 -+++ mod_wsgi.c	2008-07-19 19:41:18.000000000 +0200=0A=
 -@@ -7771,6 +7771,9 @@=0A=
 -      * is restricted, need to truncate display name if too long.=0A=
 -      */=0A=
 +Index: mod_wsgi.c=0A=
 +=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A=
 +--- mod_wsgi.c	(revision 1007)=0A=
 ++++ mod_wsgi.c	(revision 1008)=0A=
 +@@ -245,7 +245,7 @@=0A=
 + /* Version and module information. */=0A=
   =0A=
 -+#ifdef __FreeBSD__=0A=
 -+    setproctitle(display_name);=0A=
 -+#else=0A=
 -     argv0 =3D (char*)wsgi_server->process->argv[0];=0A=
 + #define MOD_WSGI_MAJORVERSION_NUMBER 2=0A=
 +-#define MOD_WSGI_MINORVERSION_NUMBER 2=0A=
 ++#define MOD_WSGI_MINORVERSION_NUMBER 3=0A=
 + #define MOD_WSGI_VERSION_STRING "2.3"=0A=
   =0A=
 -     dlen =3D strlen(argv0);=0A=
 -@@ -7782,6 +7785,7 @@=0A=
 -         memcpy(argv0, display_name, slen);=0A=
 -     else=0A=
 -         memcpy(argv0, display_name, dlen);=0A=
 -+#endif=0A=
 - }=0A=
 - =0A=
 - static void wsgi_setup_access(WSGIDaemonProcess *daemon)=0A=
 + #if AP_SERVER_MAJORVERSION_NUMBER < 2=0A=
 
 ------=_NextPart_000_2072_01C9052F.27D19C20--
 



More information about the freebsd-ports-bugs mailing list