svn commit: r381922 - in head/net: . py-pysocks
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Sun Mar 22 14:59:12 UTC 2015
Author: sunpoet
Date: Sun Mar 22 14:59:10 2015
New Revision: 381922
URL: https://svnweb.freebsd.org/changeset/ports/381922
QAT: https://qat.redports.org/buildarchive/r381922/
Log:
- Add py-pysocks 1.5.0
Derived from SocksiPy - a Python SOCKS module.
- UDP support
- SocksiPyHandler, courtesy e000, was also added as an example of how
this module can be used with urllib2. See example code in sockshandler.py.
- urllib3, which powers the requests module, is working on integrating SOCKS
proxy support based on this branch
PR: 196049
Submitted by: <kyuupichan at gmail.com>
Added:
head/net/py-pysocks/
head/net/py-pysocks/Makefile (contents, props changed)
head/net/py-pysocks/distinfo (contents, props changed)
head/net/py-pysocks/pkg-descr (contents, props changed)
Modified:
head/net/Makefile
Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile Sun Mar 22 14:59:02 2015 (r381921)
+++ head/net/Makefile Sun Mar 22 14:59:10 2015 (r381922)
@@ -932,6 +932,7 @@
SUBDIR += py-pynsq
SUBDIR += py-pypcap
SUBDIR += py-pysendfile
+ SUBDIR += py-pysocks
SUBDIR += py-pysphere
SUBDIR += py-pyvmomi
SUBDIR += py-pyzmq
Added: head/net/py-pysocks/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/py-pysocks/Makefile Sun Mar 22 14:59:10 2015 (r381922)
@@ -0,0 +1,19 @@
+# Created by: Neil Booth
+# $FreeBSD$
+
+PORTNAME= pysocks
+PORTVERSION= 1.5.0
+CATEGORIES= net python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+DISTNAME= PySocks-${PORTVERSION}
+
+MAINTAINER= kyuupichan at gmail.com
+COMMENT= Python SOCKS module
+
+LICENSE= BSD3CLAUSE
+
+USES= python
+USE_PYTHON= distutils autoplist
+
+.include <bsd.port.mk>
Added: head/net/py-pysocks/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/py-pysocks/distinfo Sun Mar 22 14:59:10 2015 (r381922)
@@ -0,0 +1,2 @@
+SHA256 (PySocks-1.5.0.tar.gz) = b349bf81dbdaa5b16ad0a70dfef7bba1c013fbe7cf40fd7746d3661cc2289883
+SIZE (PySocks-1.5.0.tar.gz) = 6539
Added: head/net/py-pysocks/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/py-pysocks/pkg-descr Sun Mar 22 14:59:10 2015 (r381922)
@@ -0,0 +1,7 @@
+Derived from SocksiPy - a Python SOCKS module.
+
+- UDP support
+- SocksiPyHandler, courtesy e000, was also added as an example of how
+ this module can be used with urllib2. See example code in sockshandler.py.
+- urllib3, which powers the requests module, is working on integrating SOCKS
+ proxy support based on this branch
More information about the svn-ports-all
mailing list