pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/go-toml-burntsushi Add go-toml-burntsushi package



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6d537bad4c51
branches:  trunk
changeset: 366662:6d537bad4c51
user:      gavan <gavan%pkgsrc.org@localhost>
date:      Thu Aug 17 01:49:40 2017 +0000

description:
Add go-toml-burntsushi package

diffstat:

 www/go-toml-burntsushi/DESCR         |   1 +
 www/go-toml-burntsushi/Makefile      |  20 ++++++++++++++++++
 www/go-toml-burntsushi/PLIST         |  39 ++++++++++++++++++++++++++++++++++++
 www/go-toml-burntsushi/buildlink3.mk |  17 +++++++++++++++
 www/go-toml-burntsushi/distinfo      |   6 +++++
 5 files changed, 83 insertions(+), 0 deletions(-)

diffs (103 lines):

diff -r d87d0e387cdf -r 6d537bad4c51 www/go-toml-burntsushi/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/go-toml-burntsushi/DESCR      Thu Aug 17 01:49:40 2017 +0000
@@ -0,0 +1,1 @@
+TOML stands for Tom's Obvious, Minimal Language. This Go package provides a reflection interface similar to Go's standard library json and xml packages. This package also supports the 
encoding.TextUnmarshaler and encoding.TextMarshaler interfaces so that you can define custom data representations.
diff -r d87d0e387cdf -r 6d537bad4c51 www/go-toml-burntsushi/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/go-toml-burntsushi/Makefile   Thu Aug 17 01:49:40 2017 +0000
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1 2017/08/17 01:49:40 gavan Exp $
+
+DISTNAME=      toml-0.2.0
+PKGNAME=       go-${DISTNAME:S/toml/toml-burntsushi/}
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=BurntSushi/}
+CATEGORIES=    www
+GITHUB_TAG=    v${PKGVERSION_NOREV}
+GITHUB_PROJECT=        ${PKGBASE:S/^go-//}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/BurntSushi/toml
+COMMENT=       TOML parser for Golang with reflection.
+# LICENSE=     wtfpl
+
+GO_DIST_BASE=  ${DISTNAME}
+GO_SRCPATH=    github.com/BurntSushi/toml
+
+.include "../../lang/go/go-package.mk"
+.include "../../mk/bsd.pkg.mk"
+
diff -r d87d0e387cdf -r 6d537bad4c51 www/go-toml-burntsushi/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/go-toml-burntsushi/PLIST      Thu Aug 17 01:49:40 2017 +0000
@@ -0,0 +1,39 @@
+@comment $NetBSD: PLIST,v 1.1 2017/08/17 01:49:40 gavan Exp $
+bin/toml-test-decoder
+bin/toml-test-encoder
+bin/tomlv
+gopkg/pkg/${GO_PLATFORM}/github.com/BurntSushi/toml.a
+gopkg/src/github.com/BurntSushi/toml/COMPATIBLE
+gopkg/src/github.com/BurntSushi/toml/COPYING
+gopkg/src/github.com/BurntSushi/toml/Makefile
+gopkg/src/github.com/BurntSushi/toml/README.md
+gopkg/src/github.com/BurntSushi/toml/_examples/example.go
+gopkg/src/github.com/BurntSushi/toml/_examples/example.toml
+gopkg/src/github.com/BurntSushi/toml/_examples/hard.toml
+gopkg/src/github.com/BurntSushi/toml/_examples/implicit.toml
+gopkg/src/github.com/BurntSushi/toml/_examples/invalid-apples.toml
+gopkg/src/github.com/BurntSushi/toml/_examples/invalid.toml
+gopkg/src/github.com/BurntSushi/toml/_examples/readme1.toml
+gopkg/src/github.com/BurntSushi/toml/_examples/readme2.toml
+gopkg/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING
+gopkg/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/README.md
+gopkg/src/github.com/BurntSushi/toml/cmd/toml-test-decoder/main.go
+gopkg/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/COPYING
+gopkg/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/README.md
+gopkg/src/github.com/BurntSushi/toml/cmd/toml-test-encoder/main.go
+gopkg/src/github.com/BurntSushi/toml/cmd/tomlv/COPYING
+gopkg/src/github.com/BurntSushi/toml/cmd/tomlv/README.md
+gopkg/src/github.com/BurntSushi/toml/cmd/tomlv/main.go
+gopkg/src/github.com/BurntSushi/toml/decode.go
+gopkg/src/github.com/BurntSushi/toml/decode_meta.go
+gopkg/src/github.com/BurntSushi/toml/decode_test.go
+gopkg/src/github.com/BurntSushi/toml/doc.go
+gopkg/src/github.com/BurntSushi/toml/encode.go
+gopkg/src/github.com/BurntSushi/toml/encode_test.go
+gopkg/src/github.com/BurntSushi/toml/encoding_types.go
+gopkg/src/github.com/BurntSushi/toml/encoding_types_1.1.go
+gopkg/src/github.com/BurntSushi/toml/lex.go
+gopkg/src/github.com/BurntSushi/toml/parse.go
+gopkg/src/github.com/BurntSushi/toml/session.vim
+gopkg/src/github.com/BurntSushi/toml/type_check.go
+gopkg/src/github.com/BurntSushi/toml/type_fields.go
diff -r d87d0e387cdf -r 6d537bad4c51 www/go-toml-burntsushi/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/go-toml-burntsushi/buildlink3.mk      Thu Aug 17 01:49:40 2017 +0000
@@ -0,0 +1,17 @@
+# $NetBSD: buildlink3.mk,v 1.1 2017/08/17 01:49:40 gavan Exp $
+
+BUILDLINK_TREE+=       go-toml-burntsushi
+
+.if !defined(GO_TOML_BURNTSUSHI_BUILDLINK3_MK)
+GO_TOML_BURNTSUSHI_BUILDLINK3_MK:=
+
+BUILDLINK_CONTENTS_FILTER.go-toml-burntsushi=  ${EGREP} gopkg/
+BUILDLINK_DEPMETHOD.go-toml-burntsushi?=               build
+
+BUILDLINK_API_DEPENDS.go-toml-burntsushi+=             go-toml-burntsushi>=0.2.0
+BUILDLINK_PKGSRCDIR.go-toml-burntsushi?=               ../../www/go-toml-burntsushi
+
+.endif  # GO_TOML_BURNTSUSHI_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -go-toml-burntsushi
+
diff -r d87d0e387cdf -r 6d537bad4c51 www/go-toml-burntsushi/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/go-toml-burntsushi/distinfo   Thu Aug 17 01:49:40 2017 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2017/08/17 01:49:40 gavan Exp $
+
+SHA1 (toml-0.2.0.tar.gz) = 659250c7f96db912f34f13577e3eb0b709f86485
+RMD160 (toml-0.2.0.tar.gz) = 63deb0b053679d45e6a2c460ea8433772b4af187
+SHA512 (toml-0.2.0.tar.gz) = ef4251fa089748fa606e0a1dec29bda448bbd2c94983b00072d09a23d1bec221a56820bc7a95ab0a1a30c00cafa7a8460cfbf1ed997d0de490edd13b6f3fa5ae
+Size (toml-0.2.0.tar.gz) = 38304 bytes



Home | Main Index | Thread Index | Old Index