Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 May 2013 00:42:21 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r319335 - in head/net: . rubygem-iproto
Message-ID:  <201305290042.r4T0gLge021472@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Wed May 29 00:42:21 2013
New Revision: 319335
URL: http://svnweb.freebsd.org/changeset/ports/319335

Log:
  Wrapper for Mail.Ru simple network protocol IProto. Support 2 modes: block via
  Ruby's TCPSocket and non block via EventMachine with fiblers. Wrapper used in
  Tarantool ruby client and private libs.
  
  WWW: https://github.com/mailru/iproto-ruby
  
  PR:		ports/178621
  Submitted by:	Gvozdikov Veniamin <g.veniamin@googlemail.com>

Added:
  head/net/rubygem-iproto/
  head/net/rubygem-iproto/Makefile   (contents, props changed)
  head/net/rubygem-iproto/distinfo   (contents, props changed)
  head/net/rubygem-iproto/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Wed May 29 00:40:56 2013	(r319334)
+++ head/net/Makefile	Wed May 29 00:42:21 2013	(r319335)
@@ -1027,6 +1027,7 @@
     SUBDIR += rubygem-http_parser.rb
     SUBDIR += rubygem-httpauth
     SUBDIR += rubygem-ipaddress
+    SUBDIR += rubygem-iproto
     SUBDIR += rubygem-macaddr
     SUBDIR += rubygem-net-ldap
     SUBDIR += rubygem-net-netrc

Added: head/net/rubygem-iproto/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/rubygem-iproto/Makefile	Wed May 29 00:42:21 2013	(r319335)
@@ -0,0 +1,19 @@
+# Created by: Gvozdikov Veniamin <g.veniamin@googlemail.com>
+# $FreeBSD$
+
+PORTNAME=	iproto
+PORTVERSION=	0.3.8
+CATEGORIES=	net rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	g.veniamin@googlemail.com
+COMMENT=	Ruby implementation of Mail.Ru iproto protocol
+
+RUN_DEPENDS=	rubygem-bin_utils=0.0.3:${PORTSDIR}/devel/rubygem-bin_utils
+
+RUBY_VER=	1.9
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/net/rubygem-iproto/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/rubygem-iproto/distinfo	Wed May 29 00:42:21 2013	(r319335)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/iproto-0.3.8.gem) = 1db06216baec4dc908337b448d94b2b840336cee0e003090fad96f62dd7d1bc7
+SIZE (rubygem/iproto-0.3.8.gem) = 8704

Added: head/net/rubygem-iproto/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/rubygem-iproto/pkg-descr	Wed May 29 00:42:21 2013	(r319335)
@@ -0,0 +1,5 @@
+Wrapper for Mail.Ru simple network protocol IProto. Support 2 modes: block via
+Ruby's TCPSocket and non block via EventMachine with fiblers. Wrapper used in
+Tarantool ruby client and private libs.
+
+WWW: https://github.com/mailru/iproto-ruby



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305290042.r4T0gLge021472>