From owner-svn-ports-all@FreeBSD.ORG Sun Mar 22 14:59:12 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 879FD34E; Sun, 22 Mar 2015 14:59:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 696159B9; Sun, 22 Mar 2015 14:59:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2MExCOO038654; Sun, 22 Mar 2015 14:59:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2MExBuY038649; Sun, 22 Mar 2015 14:59:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201503221459.t2MExBuY038649@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 22 Mar 2015 14:59:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r381922 - in head/net: . py-pysocks X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Mar 2015 14:59:12 -0000 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: 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@gmail.com +COMMENT= Python SOCKS module + +LICENSE= BSD3CLAUSE + +USES= python +USE_PYTHON= distutils autoplist + +.include 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