From owner-svn-ports-all@FreeBSD.ORG Mon Jul 14 10:31:47 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 37D16263; Mon, 14 Jul 2014 10:31:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 24E0F2832; Mon, 14 Jul 2014 10:31:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6EAVl9w088283; Mon, 14 Jul 2014 10:31:47 GMT (envelope-from knu@svn.freebsd.org) Received: (from knu@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6EAVkCB088275; Mon, 14 Jul 2014 10:31:46 GMT (envelope-from knu@svn.freebsd.org) Message-Id: <201407141031.s6EAVkCB088275@svn.freebsd.org> From: Akinori MUSHA Date: Mon, 14 Jul 2014 10:31:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361765 - in head/devel: . go-runewidth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jul 2014 10:31:47 -0000 Author: knu Date: Mon Jul 14 10:31:45 2014 New Revision: 361765 URL: http://svnweb.freebsd.org/changeset/ports/361765 QAT: https://qat.redports.org/buildarchive/r361765/ Log: Add go-runewidth, Go library to get the fixed width of a character or string. Added: head/devel/go-runewidth/ head/devel/go-runewidth/Makefile (contents, props changed) head/devel/go-runewidth/distinfo (contents, props changed) head/devel/go-runewidth/pkg-descr (contents, props changed) head/devel/go-runewidth/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jul 14 10:29:59 2014 (r361764) +++ head/devel/Makefile Mon Jul 14 10:31:45 2014 (r361765) @@ -597,6 +597,7 @@ SUBDIR += go-flags SUBDIR += go-json-rest SUBDIR += go-pretty + SUBDIR += go-runewidth SUBDIR += go-sql-driver SUBDIR += gob2 SUBDIR += gobject-introspection Added: head/devel/go-runewidth/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-runewidth/Makefile Mon Jul 14 10:31:45 2014 (r361765) @@ -0,0 +1,25 @@ +# Created by: Akinori MUSHA aka knu +# $FreeBSD$ + +PORTNAME= runewidth +PORTVERSION= 0.0.0.20140623 +CATEGORIES= devel +MASTER_SITES= GH GHC +PKGNAMEPREFIX= go- + +MAINTAINER= knu@FreeBSD.org +COMMENT= Go library to get the fixed width of a character or string + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= mattn +GH_PROJECT= ${PKGNAMEPREFIX}${PORTNAME} +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= d70c973 + +GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT} + +.include +.include "${PORTSDIR}/lang/go/files/bsd.go.mk" +.include Added: head/devel/go-runewidth/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-runewidth/distinfo Mon Jul 14 10:31:45 2014 (r361765) @@ -0,0 +1,2 @@ +SHA256 (runewidth-0.0.0.20140623.tar.gz) = fb03cbe156fc21b974a350ca76afe667e9aa3cab08010cf36a902f32792c8723 +SIZE (runewidth-0.0.0.20140623.tar.gz) = 4508 Added: head/devel/go-runewidth/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-runewidth/pkg-descr Mon Jul 14 10:31:45 2014 (r361765) @@ -0,0 +1,5 @@ +Go-runewidth provides functions to get the fixed width of a character +or string. + +Author: Yasuhiro Matsumoto +WWW: https://github.com/mattn/go-runewidth Added: head/devel/go-runewidth/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-runewidth/pkg-plist Mon Jul 14 10:31:45 2014 (r361765) @@ -0,0 +1,15 @@ +%%GO_LIBDIR%%/github.com/mattn/go-runewidth.a +@dirrmtry %%GO_LIBDIR%%/github.com/mattn +@dirrmtry %%GO_LIBDIR%%/github.com +@dirrmtry %%GO_LIBDIR%% +%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.mkd +%%GO_SRCDIR%%/%%GO_PKGNAME%%/runewidth.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/runewidth_posix.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/runewidth_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/runewidth_windows.go +@dirrmtry %%GO_SRCDIR%%/%%GO_PKGNAME%% +@dirrmtry %%GO_SRCDIR%%/github.com/mattn +@dirrmtry %%GO_SRCDIR%%/github.com +@dirrmtry %%GO_SRCDIR%% +@dirrmtry share/go/pkg +@dirrmtry share/go