From owner-svn-ports-head@freebsd.org Sun Mar 6 06:17:14 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 091E7A135D9; Sun, 6 Mar 2016 06:17:14 +0000 (UTC) (envelope-from sunpoet@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 BE32AC41; Sun, 6 Mar 2016 06:17:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u266HCV6034035; Sun, 6 Mar 2016 06:17:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u266HCo7034031; Sun, 6 Mar 2016 06:17:12 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201603060617.u266HCo7034031@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 6 Mar 2016 06:17:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r410233 - in head/devel: . rubygem-unicode-display_width 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.21 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, 06 Mar 2016 06:17:14 -0000 Author: sunpoet Date: Sun Mar 6 06:17:12 2016 New Revision: 410233 URL: https://svnweb.freebsd.org/changeset/ports/410233 Log: - Add rubygem-unicode-display_width 0.3.1 An early draft of a way to determine the size of the characters using EastAsianWidth.txt, based on the very early draft of a Ruby interface to UnicodeData.txt by runpaint. WWW: https://github.com/janlelis/unicode-display_width Added: head/devel/rubygem-unicode-display_width/ head/devel/rubygem-unicode-display_width/Makefile (contents, props changed) head/devel/rubygem-unicode-display_width/distinfo (contents, props changed) head/devel/rubygem-unicode-display_width/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Mar 6 06:16:28 2016 (r410232) +++ head/devel/Makefile Sun Mar 6 06:17:12 2016 (r410233) @@ -5153,6 +5153,7 @@ SUBDIR += rubygem-tzinfo SUBDIR += rubygem-tzinfo03 SUBDIR += rubygem-unicode + SUBDIR += rubygem-unicode-display_width SUBDIR += rubygem-uuid SUBDIR += rubygem-uuidtools SUBDIR += rubygem-validatable Added: head/devel/rubygem-unicode-display_width/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-unicode-display_width/Makefile Sun Mar 6 06:17:12 2016 (r410233) @@ -0,0 +1,20 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= unicode-display_width +PORTVERSION= 0.3.1 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Get the display size of a string + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-unicode-display_width/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-unicode-display_width/distinfo Sun Mar 6 06:17:12 2016 (r410233) @@ -0,0 +1,2 @@ +SHA256 (rubygem/unicode-display_width-0.3.1.gem) = 0422927715063702a58d200e662a55d1c1b9f114a2070c4a9c13fae7920e16c3 +SIZE (rubygem/unicode-display_width-0.3.1.gem) = 520192 Added: head/devel/rubygem-unicode-display_width/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-unicode-display_width/pkg-descr Sun Mar 6 06:17:12 2016 (r410233) @@ -0,0 +1,5 @@ +An early draft of a way to determine the size of the characters using +EastAsianWidth.txt, based on the very early draft of a Ruby interface to +UnicodeData.txt by runpaint. + +WWW: https://github.com/janlelis/unicode-display_width