FreeBSD Bugzilla – Attachment 188873 Details for
Bug 224332
Patch www/py-flup to support py3k for flavours
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
shar for flup6 port
py-flup6.shar.txt (text/plain), 2.90 KB, created by
Shane
on 2017-12-16 07:59:40 UTC
(
hide
)
Description:
shar for flup6 port
Filename:
MIME Type:
Creator:
Shane
Created:
2017-12-16 07:59:40 UTC
Size:
2.90 KB
patch
obsolete
># This is a shell archive. Save it in a file, remove anything before ># this line, and then unpack it by entering "sh file". Note, it may ># create directories; files and directories will be owned by you and ># have default permissions. ># ># This archive contains: ># ># py-flup6 ># py-flup6/distinfo ># py-flup6/pkg-descr ># py-flup6/files ># py-flup6/files/patch-flup_server_ajp__base.py ># py-flup6/files/patch-flup_server_scgi__base.py ># py-flup6/Makefile ># >echo c - py-flup6 >mkdir -p py-flup6 > /dev/null 2>&1 >echo x - py-flup6/distinfo >sed 's/^X//' >py-flup6/distinfo << '9a658a364df25852788dd2badcfbd629' >XTIMESTAMP = 1513265989 >XSHA256 (flup6-1.1.1.tar.gz) = fd034c6862a320b9f8176a14fa94e05d67d59e61359c34c6dabd0d31a26a4084 >XSIZE (flup6-1.1.1.tar.gz) = 45810 >9a658a364df25852788dd2badcfbd629 >echo x - py-flup6/pkg-descr >sed 's/^X//' >py-flup6/pkg-descr << '2dfd3a4a6e42d867ddc720f3f693f082' >XThis Python package is a random collection of WSGI modules >X >XIt is a fork of Allan Saddi's flup package, and is intended to >Xsupport both python2 and python3 from a single code base. >X >XWWW: https://bitbucket.org/denisenkom/flup >2dfd3a4a6e42d867ddc720f3f693f082 >echo c - py-flup6/files >mkdir -p py-flup6/files > /dev/null 2>&1 >echo x - py-flup6/files/patch-flup_server_ajp__base.py >sed 's/^X//' >py-flup6/files/patch-flup_server_ajp__base.py << 'fd241f3dd39cc4e5dd18840e32bc0f78' >X--- flup/server/ajp_base.py.orig 2017-12-16 07:40:39 UTC >X+++ flup/server/ajp_base.py >X@@ -38,7 +38,11 @@ import datetime >X import time >X >X # Unfortunately, for now, threads are required. >X-import thread >X+try: >X+ import thread >X+except: >X+ import _thread as thread >X+ >X import threading >X >X __all__ = ['BaseAJPServer'] >fd241f3dd39cc4e5dd18840e32bc0f78 >echo x - py-flup6/files/patch-flup_server_scgi__base.py >sed 's/^X//' >py-flup6/files/patch-flup_server_scgi__base.py << '292eb8918093a69674aa121af8827c53' >X--- flup/server/scgi_base.py.orig 2017-12-16 07:40:10 UTC >X+++ flup/server/scgi_base.py >X@@ -32,7 +32,7 @@ import logging >X import socket >X import select >X import errno >X-import cStringIO as StringIO >X+import io as StringIO >X import signal >X import datetime >X import os >X@@ -40,7 +40,11 @@ import warnings >X >X # Threads are required. If you want a non-threaded (forking) version, look at >X # SWAP <http://www.idyll.org/~t/www-tools/wsgi/>. >X-import thread >X+try: >X+ import thread >X+except: >X+ import _thread as thread >X+ >X import threading >X >X __all__ = ['BaseSCGIServer'] >292eb8918093a69674aa121af8827c53 >echo x - py-flup6/Makefile >sed 's/^X//' >py-flup6/Makefile << '4e53994f3b51fdf1f6619865e07f6bdb' >X# $FreeBSD$ >X >XPORTNAME= flup6 >XPORTVERSION= 1.1.1 >XCATEGORIES= www python >XMASTER_SITES= CHEESESHOP >XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} >X >XMAINTAINER= lwhsu@FreeBSD.org >XCOMMENT= Random assortment of WSGI servers >X >XLICENSE= BSD2CLAUSE >X >XUSES= python >XUSE_PYTHON= distutils autoplist >XNO_ARCH= yes >X >X.include <bsd.port.mk> >4e53994f3b51fdf1f6619865e07f6bdb >exit >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 224332
:
188818
|
188873
|
188966
|
188997
|
188998