Date: Mon, 11 Jul 2016 20:04:27 +0000 (UTC) From: Carlo Strub <cs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418401 - in head/devel: . go-goregen Message-ID: <201607112004.u6BK4RH3053277@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cs Date: Mon Jul 11 20:04:27 2016 New Revision: 418401 URL: https://svnweb.freebsd.org/changeset/ports/418401 Log: A Golang library for generating random strings from regular expressions. WWW: https://github.com/zach-klippenstein/goregen Added: head/devel/go-goregen/ head/devel/go-goregen/Makefile (contents, props changed) head/devel/go-goregen/distinfo (contents, props changed) head/devel/go-goregen/pkg-descr (contents, props changed) head/devel/go-goregen/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jul 11 20:01:51 2016 (r418400) +++ head/devel/Makefile Mon Jul 11 20:04:27 2016 (r418401) @@ -718,6 +718,7 @@ SUBDIR += go-flags SUBDIR += go-form SUBDIR += go-go.uuid + SUBDIR += go-goregen SUBDIR += go-hashicorp-logutils SUBDIR += go-json-rest SUBDIR += go-metrics Added: head/devel/go-goregen/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-goregen/Makefile Mon Jul 11 20:04:27 2016 (r418401) @@ -0,0 +1,20 @@ +# Created by: Carlo Strub <cs@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= goregen +PORTVERSION= 20160303 +CATEGORIES= devel +PKGNAMEPREFIX= go- + +MAINTAINER= cs@FreeBSD.org +COMMENT= randexp for Go + +LICENSE= APACHE20 + +USE_GITHUB= yes +GH_ACCOUNT= zach-klippenstein +GH_TAGNAME= 795b5e3961ea1912fde60af417ad85e86acc0d6a +USES= go +GO_PKGNAME= github.com/zach-klippenstein/goregen + +.include <bsd.port.mk> Added: head/devel/go-goregen/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-goregen/distinfo Mon Jul 11 20:04:27 2016 (r418401) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468219586 +SHA256 (zach-klippenstein-goregen-20160303-795b5e3961ea1912fde60af417ad85e86acc0d6a_GH0.tar.gz) = d2731d2ddb909515805b2be90a5d564f4fea1e9d0749d1fb6705567b416f573d +SIZE (zach-klippenstein-goregen-20160303-795b5e3961ea1912fde60af417ad85e86acc0d6a_GH0.tar.gz) = 14627 Added: head/devel/go-goregen/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-goregen/pkg-descr Mon Jul 11 20:04:27 2016 (r418401) @@ -0,0 +1,3 @@ +A Golang library for generating random strings from regular expressions. + +WWW: https://github.com/zach-klippenstein/goregen Added: head/devel/go-goregen/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-goregen/pkg-plist Mon Jul 11 20:04:27 2016 (r418401) @@ -0,0 +1,13 @@ +%%GO_LIBDIR%%/%%GO_PKGNAME%%.a +%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE.txt +%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md +%%GO_SRCDIR%%/%%GO_PKGNAME%%/char_class.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/generator_error.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/generator_error_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/internal_generator.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/regen.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/regen_benchmarks_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/regen_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/regexp_format.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/rng.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/rng_test.go
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607112004.u6BK4RH3053277>