Date: Fri, 12 Aug 2016 16:20:37 +0000 (UTC) From: Pawel Pekala <pawel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r420135 - in head/devel: . go-shellwords Message-ID: <201608121620.u7CGKb8L011899@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pawel Date: Fri Aug 12 16:20:36 2016 New Revision: 420135 URL: https://svnweb.freebsd.org/changeset/ports/420135 Log: Parse line as shell words. WWW: https://github.com/mattn/go-shellwords PR: 211660 Submitted by: Sascha Holzleiter <sascha@root-login.org> Added: head/devel/go-shellwords/ head/devel/go-shellwords/Makefile (contents, props changed) head/devel/go-shellwords/distinfo (contents, props changed) head/devel/go-shellwords/pkg-descr (contents, props changed) head/devel/go-shellwords/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Aug 12 16:15:06 2016 (r420134) +++ head/devel/Makefile Fri Aug 12 16:20:36 2016 (r420135) @@ -738,6 +738,7 @@ SUBDIR += go-protobuf SUBDIR += go-raw SUBDIR += go-runewidth + SUBDIR += go-shellwords SUBDIR += go-slices SUBDIR += go-sql-driver SUBDIR += go-termbox Added: head/devel/go-shellwords/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-shellwords/Makefile Fri Aug 12 16:20:36 2016 (r420135) @@ -0,0 +1,20 @@ +# Created by: Sascha Holzleiter <sascha@root-login.org> +# $FreeBSD$ + +PORTNAME= go-shellwords +PORTVERSION= 1.0.0 +DISTVERSIONPREFIX= v +CATEGORIES= devel + +MAINTAINER= sascha@root-login.org +COMMENT= Go library to parse line as shell words + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= mattn + +USES= go +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} + +.include <bsd.port.mk> Added: head/devel/go-shellwords/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-shellwords/distinfo Fri Aug 12 16:20:36 2016 (r420135) @@ -0,0 +1,3 @@ +TIMESTAMP = 1470653849 +SHA256 (mattn-go-shellwords-v1.0.0_GH0.tar.gz) = c3dd9fff8f46a41c919e8aa2387fe0473d8a61037d66aff82bcd2bcb7826e188 +SIZE (mattn-go-shellwords-v1.0.0_GH0.tar.gz) = 2343 Added: head/devel/go-shellwords/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-shellwords/pkg-descr Fri Aug 12 16:20:36 2016 (r420135) @@ -0,0 +1,3 @@ +Parse line as shell words. + +WWW: https://github.com/mattn/go-shellwords Added: head/devel/go-shellwords/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-shellwords/pkg-plist Fri Aug 12 16:20:36 2016 (r420135) @@ -0,0 +1,6 @@ +%%GO_LIBDIR%%/%%GO_PKGNAME%%.a +%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md +%%GO_SRCDIR%%/%%GO_PKGNAME%%/shellwords.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/shellwords_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/util_posix.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/util_windows.go
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608121620.u7CGKb8L011899>