svn commit: r376577 - in head/devel: . go-raw

Jun Kuriyama kuriyama at FreeBSD.org
Fri Jan 9 00:34:20 UTC 2015


Author: kuriyama
Date: Fri Jan  9 00:34:18 2015
New Revision: 376577
URL: https://svnweb.freebsd.org/changeset/ports/376577
QAT: https://qat.redports.org/buildarchive/r376577/

Log:
  RAW is a high-level interface to Go's unsafe and reflection packages,
  designed to ease both generic programming and low-level memory access.
  
  WWW: https://github.com/feyeleanor/raw

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Jan  9 00:02:30 2015	(r376576)
+++ head/devel/Makefile	Fri Jan  9 00:34:18 2015	(r376577)
@@ -583,6 +583,7 @@
     SUBDIR += go-hashicorp-logutils
     SUBDIR += go-json-rest
     SUBDIR += go-pretty
+    SUBDIR += go-raw
     SUBDIR += go-runewidth
     SUBDIR += go-sql-driver
     SUBDIR += go-termbox

Added: head/devel/go-raw/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/go-raw/Makefile	Fri Jan  9 00:34:18 2015	(r376577)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	raw
+PORTVERSION=	0.0.0.20130328
+CATEGORIES=	devel
+MASTER_SITES=	GH GHC
+PKGNAMEPREFIX=	go-
+
+MAINTAINER=	kuriyama at FreeBSD.org
+COMMENT=	Go library for high-level interface to unsafe and reflection packages
+
+#LICENSE=	MIT based, but with no-evil clause
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	feyeleanor
+GH_PROJECT=	${PORTNAME}
+GH_TAGNAME=	${GH_COMMIT}
+GH_COMMIT=	724aedf
+
+GO_PKGNAME=	github.com/${GH_ACCOUNT}/${GH_PROJECT}
+
+.include <bsd.port.pre.mk>
+.include "${PORTSDIR}/lang/go/files/bsd.go.mk"
+.include <bsd.port.post.mk>

Added: head/devel/go-raw/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/go-raw/distinfo	Fri Jan  9 00:34:18 2015	(r376577)
@@ -0,0 +1,2 @@
+SHA256 (raw-0.0.0.20130328.tar.gz) = 065842527400693d90f19e3f6be9fae72e268c9a307700784a68307bcdfa2da3
+SIZE (raw-0.0.0.20130328.tar.gz) = 8201

Added: head/devel/go-raw/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/go-raw/pkg-descr	Fri Jan  9 00:34:18 2015	(r376577)
@@ -0,0 +1,4 @@
+RAW is a high-level interface to Go's unsafe and reflection packages,
+designed to ease both generic programming and low-level memory access.
+
+WWW: https://github.com/feyeleanor/raw

Added: head/devel/go-raw/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/go-raw/pkg-plist	Fri Jan  9 00:34:18 2015	(r376577)
@@ -0,0 +1,11 @@
+%%GO_LIBDIR%%/%%GO_PKGNAME%%.a
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/README
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/byte_slice.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/byte_slice_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/reslice.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/reslice_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/runtime.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/runtime_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/type.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/type_test.go


More information about the svn-ports-all mailing list