svn commit: r375772 - in head/devel: . go-uuid

Jun Kuriyama kuriyama at FreeBSD.org
Mon Dec 29 04:40:21 UTC 2014


Author: kuriyama
Date: Mon Dec 29 04:40:18 2014
New Revision: 375772
URL: https://svnweb.freebsd.org/changeset/ports/375772
QAT: https://qat.redports.org/buildarchive/r375772/

Log:
  The uuid package generates and inspects UUIDs based on RFC 4122 and
  DCE 1.1: Authentication and Security Services.
  
  WWW: https://code.google.com/p/go-uuid/

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Dec 29 03:51:27 2014	(r375771)
+++ head/devel/Makefile	Mon Dec 29 04:40:18 2014	(r375772)
@@ -588,6 +588,7 @@
     SUBDIR += go-runewidth
     SUBDIR += go-sql-driver
     SUBDIR += go-termbox
+    SUBDIR += go-uuid
     SUBDIR += gob2
     SUBDIR += gobject-introspection
     SUBDIR += goffice

Added: head/devel/go-uuid/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/go-uuid/Makefile	Mon Dec 29 04:40:18 2014	(r375772)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	uuid
+PORTVERSION=	0.0.0.20141202
+CATEGORIES=	devel
+MASTER_SITES=	LOCAL/kuriyama
+PKGNAMEPREFIX=	go-
+DISTNAME=	${PKGNAMEPREFIX}${PORTNAME}-${REVISION}
+
+MAINTAINER=	kuriyama at FreeBSD.org
+COMMENT=	Go library to generates and inspects UUIDs based on RFC 4122
+
+LICENSE=	MIT
+
+REVISION=	35bc42037350
+PROJECTHOST=	${PKGNAMEPREFIX}${PORTNAME}
+WRKSRC=		${WRKDIR}/go-uuid-${REVISION}
+GO_PKGNAME=	code.google.com/p/go-uuid/uuid
+GO_TARGET=	code.google.com/p/go-uuid/uuid/uuid
+
+.include <bsd.port.pre.mk>
+.include "${PORTSDIR}/lang/go/files/bsd.go.mk"
+.include <bsd.port.post.mk>

Added: head/devel/go-uuid/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/go-uuid/distinfo	Mon Dec 29 04:40:18 2014	(r375772)
@@ -0,0 +1,2 @@
+SHA256 (go-uuid-35bc42037350.tar.gz) = ab8936a28a24975f77dd3cb02f5d4dfbc668f69a31287072a700cb607ff75021
+SIZE (go-uuid-35bc42037350.tar.gz) = 41463

Added: head/devel/go-uuid/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/go-uuid/pkg-descr	Mon Dec 29 04:40:18 2014	(r375772)
@@ -0,0 +1,4 @@
+The uuid package generates and inspects UUIDs based on RFC 4122 and
+DCE 1.1: Authentication and Security Services.
+
+WWW: https://code.google.com/p/go-uuid/

Added: head/devel/go-uuid/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/go-uuid/pkg-plist	Mon Dec 29 04:40:18 2014	(r375772)
@@ -0,0 +1,15 @@
+%%GO_LIBDIR%%/%%GO_PKGNAME%%/uuid.a
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid/LICENSE
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid/dce.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid/doc.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid/hash.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid/json.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid/json_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid/node.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid/seq_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid/time.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid/util.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid/uuid.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid/uuid_test.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid/version1.go
+%%GO_SRCDIR%%/%%GO_PKGNAME%%/uuid/version4.go


More information about the svn-ports-head mailing list