From owner-svn-ports-head@freebsd.org Sun May 15 06:49:17 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61181B3CE5C; Sun, 15 May 2016 06:49:17 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 080A91A89; Sun, 15 May 2016 06:49:16 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4F6nG9C019663; Sun, 15 May 2016 06:49:16 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4F6nFAY019658; Sun, 15 May 2016 06:49:15 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201605150649.u4F6nFAY019658@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 15 May 2016 06:49:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415209 - in head/devel: . rubygem-filesize 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.22 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: Sun, 15 May 2016 06:49:17 -0000 Author: antoine Date: Sun May 15 06:49:15 2016 New Revision: 415209 URL: https://svnweb.freebsd.org/changeset/ports/415209 Log: New port: devel/rubygem-filesize rubygem-filesize is a small class for handling filesizes with both the SI and binary prefixes, allowing conversion from any size to any other size. WWW: https://github.com/dominikh/filesize Added: head/devel/rubygem-filesize/ head/devel/rubygem-filesize/Makefile (contents, props changed) head/devel/rubygem-filesize/distinfo (contents, props changed) head/devel/rubygem-filesize/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun May 15 06:42:44 2016 (r415208) +++ head/devel/Makefile Sun May 15 06:49:15 2016 (r415209) @@ -4909,6 +4909,7 @@ SUBDIR += rubygem-ffi-compiler SUBDIR += rubygem-ffi-yajl SUBDIR += rubygem-file-tail + SUBDIR += rubygem-filesize SUBDIR += rubygem-flexmock SUBDIR += rubygem-fluent-logger SUBDIR += rubygem-fog Added: head/devel/rubygem-filesize/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-filesize/Makefile Sun May 15 06:49:15 2016 (r415209) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= filesize +PORTVERSION= 0.1.1 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Class for handling filesizes with both the SI and binary prefixes + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes + +USE_RUBY= yes +USES= gem + +.include Added: head/devel/rubygem-filesize/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-filesize/distinfo Sun May 15 06:49:15 2016 (r415209) @@ -0,0 +1,3 @@ +TIMESTAMP = 1463294747 +SHA256 (rubygem/filesize-0.1.1.gem) = 09252b433da02dff0ce2162cc085991d8947445cefac816db53dd52ad0ab3818 +SIZE (rubygem/filesize-0.1.1.gem) = 8192 Added: head/devel/rubygem-filesize/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-filesize/pkg-descr Sun May 15 06:49:15 2016 (r415209) @@ -0,0 +1,4 @@ +rubygem-filesize is a small class for handling filesizes with both the SI and +binary prefixes, allowing conversion from any size to any other size. + +WWW: https://github.com/dominikh/filesize