Date: Wed, 27 Feb 2013 01:39:59 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313017 - in head/www: . rubygem-em-socksify Message-ID: <201302270139.r1R1dxO2046808@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Wed Feb 27 01:39:58 2013 New Revision: 313017 URL: http://svnweb.freebsd.org/changeset/ports/313017 Log: EM-Socksify: Transparent SOCKS support for any EventMachine protocol Dealing with SOCKS proxies is pain. EM-Socksify provides a simple shim to setup & negotiate a SOCKS5 connection for any EventMachine protocol. To add SOCKS support, all you have to do is include the module and provide your destination address. WWW: https://github.com/igrigorik/em-socksify Added: head/www/rubygem-em-socksify/ head/www/rubygem-em-socksify/Makefile (contents, props changed) head/www/rubygem-em-socksify/distinfo (contents, props changed) head/www/rubygem-em-socksify/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Feb 27 01:38:46 2013 (r313016) +++ head/www/Makefile Wed Feb 27 01:39:58 2013 (r313017) @@ -1712,6 +1712,7 @@ SUBDIR += rubygem-davclient SUBDIR += rubygem-domainatrix SUBDIR += rubygem-em-http-request + SUBDIR += rubygem-em-socksify SUBDIR += rubygem-em-websocket SUBDIR += rubygem-emk-sinatra-url-for SUBDIR += rubygem-erubis Added: head/www/rubygem-em-socksify/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-em-socksify/Makefile Wed Feb 27 01:39:58 2013 (r313017) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= em-socksify +PORTVERSION= 0.2.1 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= EventMachine SOCKSify shim: adds SOCKS support to any protocol + +RUN_DEPENDS= rubygem-eventmachine>=1.0.0:${PORTSDIR}/devel/rubygem-eventmachine + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> Added: head/www/rubygem-em-socksify/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-em-socksify/distinfo Wed Feb 27 01:39:58 2013 (r313017) @@ -0,0 +1,2 @@ +SHA256 (rubygem/em-socksify-0.2.1.gem) = e708d47e41a0fd237139fc01602034d4b4ef1df08f1da476d71340e55734080f +SIZE (rubygem/em-socksify-0.2.1.gem) = 7168 Added: head/www/rubygem-em-socksify/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-em-socksify/pkg-descr Wed Feb 27 01:39:58 2013 (r313017) @@ -0,0 +1,8 @@ +EM-Socksify: Transparent SOCKS support for any EventMachine protocol + +Dealing with SOCKS proxies is pain. EM-Socksify provides a simple shim to setup +& negotiate a SOCKS5 connection for any EventMachine protocol. To add SOCKS +support, all you have to do is include the module and provide your destination +address. + +WWW: https://github.com/igrigorik/em-socksify
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302270139.r1R1dxO2046808>