svn commit: r418395 - in head/devel: . go-yaml

Carlo Strub cs at FreeBSD.org
Mon Jul 11 19:50:30 UTC 2016


Author: cs
Date: Mon Jul 11 19:50:28 2016
New Revision: 418395
URL: https://svnweb.freebsd.org/changeset/ports/418395

Log:
  The yaml package enables Go programs to comfortably encode and decode YAML
  values. It was developed within Canonical as part of the juju project, and is
  based on a pure Go port of the well-known libyaml C library to parse and
  generate YAML data quickly and reliably.
  
  WWW: https://github.com/go-yaml/yaml

Added:
  head/devel/go-yaml/
  head/devel/go-yaml/Makefile   (contents, props changed)
  head/devel/go-yaml/distinfo   (contents, props changed)
  head/devel/go-yaml/pkg-descr   (contents, props changed)
  head/devel/go-yaml/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Jul 11 19:49:18 2016	(r418394)
+++ head/devel/Makefile	Mon Jul 11 19:50:28 2016	(r418395)
@@ -725,6 +725,7 @@
     SUBDIR += go-sql-driver
     SUBDIR += go-termbox
     SUBDIR += go-uuid
+    SUBDIR += go-yaml
     SUBDIR += gob2
     SUBDIR += gobject-introspection
     SUBDIR += godep

Added: head/devel/go-yaml/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/go-yaml/Makefile	Mon Jul 11 19:50:28 2016	(r418395)
@@ -0,0 +1,20 @@
+# Created by: Carlo Strub <cs at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	yaml
+PORTVERSION=	20160301
+CATEGORIES=	devel
+PKGNAMEPREFIX=	go-
+
+MAINTAINER=	cs at FreeBSD.org
+COMMENT=	YAML support for the Go language
+
+LICENSE=	LGPL3
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	go-yaml
+GH_TAGNAME=	a83829b6f1293c91addabc89d0571c246397bbf4
+USES=		go
+GO_PKGNAME=	github.com/go-yaml/yaml
+
+.include <bsd.port.mk>

Added: head/devel/go-yaml/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/go-yaml/distinfo	Mon Jul 11 19:50:28 2016	(r418395)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1468239745
+SHA256 (go-yaml-yaml-20160301-a83829b6f1293c91addabc89d0571c246397bbf4_GH0.tar.gz) = 3c1d7ff84e8f4b06868e360ec4868dd7acaaeb85120bebe74cb0439d10143ee3
+SIZE (go-yaml-yaml-20160301-a83829b6f1293c91addabc89d0571c246397bbf4_GH0.tar.gz) = 63167

Added: head/devel/go-yaml/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/go-yaml/pkg-descr	Mon Jul 11 19:50:28 2016	(r418395)
@@ -0,0 +1,6 @@
+The yaml package enables Go programs to comfortably encode and decode YAML
+values. It was developed within Canonical as part of the juju project, and is
+based on a pure Go port of the well-known libyaml C library to parse and
+generate YAML data quickly and reliably.
+
+WWW: https://github.com/go-yaml/yaml

Added: head/devel/go-yaml/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/go-yaml/pkg-plist	Mon Jul 11 19:50:28 2016	(r418395)
@@ -0,0 +1,20 @@
+%%GO_LIBDIR%%/%%GO_PKGNAME%%.a
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE.libyaml
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/apic.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/decode.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/decode_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/emitterc.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/encode.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/encode_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/parserc.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/readerc.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/resolve.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/scannerc.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/sorter.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/suite_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/writerc.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/yaml.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/yamlh.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/yamlprivateh.go


More information about the svn-ports-head mailing list