summaryrefslogtreecommitdiff
path: root/www/mitmproxy/files/patch-setup.py
diff options
context:
space:
mode:
authorWesley Shields <wxs@FreeBSD.org>2012-11-24 20:01:26 +0000
committerWesley Shields <wxs@FreeBSD.org>2012-11-24 20:01:26 +0000
commitc63bafd09f05464385fca64c2f064335a8f606d9 (patch)
tree26716fc98fe348870725ef1e9de62e3702dc395a /www/mitmproxy/files/patch-setup.py
parentUpdate to 1.0.17 . (diff)
'mitmproxy' is an SSL-capable man-in-the-middle HTTP proxy. It provides a
console interface that allows traffic flows to be inspected and edited on the fly. 'mitmdump' is the command-line version of mitmproxy, with the same functionality but without the frills. Think tcpdump for HTTP. WWW: http://mitmproxy.org/index.html PR: ports/173449 Submitted by: Hung-Yi Chen <gaod@hychen.org> Feature safe: yes
Diffstat (limited to 'www/mitmproxy/files/patch-setup.py')
-rw-r--r--www/mitmproxy/files/patch-setup.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/www/mitmproxy/files/patch-setup.py b/www/mitmproxy/files/patch-setup.py
new file mode 100644
index 000000000000..f306d904fcdd
--- /dev/null
+++ b/www/mitmproxy/files/patch-setup.py
@@ -0,0 +1,14 @@
+--- setup.py.orig 2012-04-09 11:55:00.000000000 +0800
++++ setup.py 2012-11-08 01:43:57.000000000 +0800
+@@ -1,4 +1,5 @@
+ from distutils.core import setup
++from setuptools import setup
+ import fnmatch, os.path
+ from libmproxy import version
+
+@@ -92,5 +93,4 @@
+ "Topic :: Internet :: Proxy Servers",
+ "Topic :: Software Development :: Testing"
+ ],
+- install_requires=['urwid>=1.0', 'pyasn1', 'pyopenssl>=0.12', "PIL", "lxml"],
+ )