Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Jul 2016 20:01:51 +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: r418400 - in head/devel: . go-form
Message-ID:  <201607112001.u6BK1pBW052176@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <cs@FreeBSD.org>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607112001.u6BK1pBW052176>