From owner-svn-ports-head@FreeBSD.ORG Wed May 29 00:40:57 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 8CD668EA; Wed, 29 May 2013 00:40:57 +0000 (UTC) (envelope-from miwi@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 658B7893; Wed, 29 May 2013 00:40:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4T0evkS021107; Wed, 29 May 2013 00:40:57 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4T0euZp021103; Wed, 29 May 2013 00:40:56 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201305290040.r4T0euZp021103@svn.freebsd.org> From: Martin Wilke Date: Wed, 29 May 2013 00:40:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r319334 - in head/devel: . rubygem-bin_utils 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, 29 May 2013 00:40:57 -0000 Author: miwi Date: Wed May 29 00:40:56 2013 New Revision: 319334 URL: http://svnweb.freebsd.org/changeset/ports/319334 Log: It is specialized versions of methods for working with binary data. It were written cause: - MRI's #pack and #unpack seems to be slow - result of #pack is often appended to a string at the very next step. - usually we need to drop unpacked string head WWW: https://github.com/funny-falcon/bin_utils PR: ports/178619 Submitted by: Gvozdikov Veniamin Added: head/devel/rubygem-bin_utils/ head/devel/rubygem-bin_utils/Makefile (contents, props changed) head/devel/rubygem-bin_utils/distinfo (contents, props changed) head/devel/rubygem-bin_utils/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed May 29 00:38:53 2013 (r319333) +++ head/devel/Makefile Wed May 29 00:40:56 2013 (r319334) @@ -3997,6 +3997,7 @@ SUBDIR += rubygem-backports SUBDIR += rubygem-bacon SUBDIR += rubygem-benelux + SUBDIR += rubygem-bin_utils SUBDIR += rubygem-bioruby SUBDIR += rubygem-blockenspiel SUBDIR += rubygem-bson Added: head/devel/rubygem-bin_utils/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-bin_utils/Makefile Wed May 29 00:40:56 2013 (r319334) @@ -0,0 +1,17 @@ +# Created by: Gvozdikov Veniamin +# $FreeBSD$ + +PORTNAME= bin_utils +PORTVERSION= 0.0.3 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= g.veniamin@googlemail.com +COMMENT= Extracting binary integers from binary string and packing back + +RUBY_VER= 1.9 +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-bin_utils/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-bin_utils/distinfo Wed May 29 00:40:56 2013 (r319334) @@ -0,0 +1,2 @@ +SHA256 (rubygem/bin_utils-0.0.3.gem) = 3f78052397ea3234d56141e5ed3a461aac94c1ba2569e3922b951b741d51557c +SIZE (rubygem/bin_utils-0.0.3.gem) = 16384 Added: head/devel/rubygem-bin_utils/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-bin_utils/pkg-descr Wed May 29 00:40:56 2013 (r319334) @@ -0,0 +1,8 @@ +It is specialized versions of methods for working with binary data. +It were written cause: + +- MRI's #pack and #unpack seems to be slow +- result of #pack is often appended to a string at the very next step. +- usually we need to drop unpacked string head + +WWW: https://github.com/funny-falcon/bin_utils