From owner-svn-ports-head@FreeBSD.ORG Wed Feb 27 01:40:00 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 338D2F0F; Wed, 27 Feb 2013 01:40:00 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 0DCDBFFA; Wed, 27 Feb 2013 01:40:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1R1dx6c046813; Wed, 27 Feb 2013 01:39:59 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1R1dxO2046808; Wed, 27 Feb 2013 01:39:59 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201302270139.r1R1dxO2046808@svn.freebsd.org> From: Steve Wills Date: Wed, 27 Feb 2013 01:39:59 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Feb 2013 01:40:00 -0000 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 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