From owner-svn-ports-head@freebsd.org Mon Jul 11 20:01:55 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 B7949B92750; Mon, 11 Jul 2016 20:01:55 +0000 (UTC) (envelope-from cs@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 E19111F15; Mon, 11 Jul 2016 20:01:52 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6BK1pEW052182; Mon, 11 Jul 2016 20:01:51 GMT (envelope-from cs@FreeBSD.org) Received: (from cs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6BK1pBW052176; Mon, 11 Jul 2016 20:01:51 GMT (envelope-from cs@FreeBSD.org) Message-Id: <201607112001.u6BK1pBW052176@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cs set sender to cs@FreeBSD.org using -f From: Carlo Strub Date: Mon, 11 Jul 2016 20:01:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418400 - in head/devel: . go-form 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: Mon, 11 Jul 2016 20:01:55 -0000 Author: cs Date: Mon Jul 11 20:01:51 2016 New Revision: 418400 URL: https://svnweb.freebsd.org/changeset/ports/418400 Log: This library is designed to allow seamless, high-fidelity encoding and decoding of arbitrary data in application/x-www-form-urlencoded format and as url.Values. It is intended to be useful primarily in dealing with web forms and URI query strings, both of which natively employ said format. WWW: https://github.com/ajg/form Added: head/devel/go-form/ head/devel/go-form/Makefile (contents, props changed) head/devel/go-form/distinfo (contents, props changed) head/devel/go-form/pkg-descr (contents, props changed) head/devel/go-form/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jul 11 19:59:54 2016 (r418399) +++ head/devel/Makefile Mon Jul 11 20:01:51 2016 (r418400) @@ -716,6 +716,7 @@ SUBDIR += go-codec SUBDIR += go-faker SUBDIR += go-flags + SUBDIR += go-form SUBDIR += go-go.uuid SUBDIR += go-hashicorp-logutils SUBDIR += go-json-rest Added: head/devel/go-form/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-form/Makefile Mon Jul 11 20:01:51 2016 (r418400) @@ -0,0 +1,20 @@ +# Created by: Carlo Strub +# $FreeBSD$ + +PORTNAME= form +PORTVERSION= 20160629 +CATEGORIES= devel +PKGNAMEPREFIX= go- + +MAINTAINER= cs@FreeBSD.org +COMMENT= Form Encoding & Decoding Package for Go + +LICENSE= BSD3CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= ajg +GH_TAGNAME= 7ff89c75808766205bfa4411abb436c98c33eb5e +USES= go +GO_PKGNAME= github.com/ajg/form + +.include Added: head/devel/go-form/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-form/distinfo Mon Jul 11 20:01:51 2016 (r418400) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468229080 +SHA256 (ajg-form-20160629-7ff89c75808766205bfa4411abb436c98c33eb5e_GH0.tar.gz) = 34b11ce2211ba69711988ff5557d5b491efb03a2edc76d9027a071d565c1efa7 +SIZE (ajg-form-20160629-7ff89c75808766205bfa4411abb436c98c33eb5e_GH0.tar.gz) = 14506 Added: head/devel/go-form/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-form/pkg-descr Mon Jul 11 20:01:51 2016 (r418400) @@ -0,0 +1,6 @@ +This library is designed to allow seamless, high-fidelity encoding and +decoding of arbitrary data in application/x-www-form-urlencoded format and as +url.Values. It is intended to be useful primarily in dealing with web forms +and URI query strings, both of which natively employ said format. + +WWW: https://github.com/ajg/form Added: head/devel/go-form/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-form/pkg-plist Mon Jul 11 20:01:51 2016 (r418400) @@ -0,0 +1,13 @@ +%%GO_LIBDIR%%/%%GO_PKGNAME%%.a +%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE +%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md +%%GO_SRCDIR%%/%%GO_PKGNAME%%/TODO.md +%%GO_SRCDIR%%/%%GO_PKGNAME%%/decode.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/decode_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/encode.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/encode_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/form.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/form_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/node.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/node_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/pre-commit.sh