From 84b9935ab273077a3218e261b350e5405bef4a87 Mon Sep 17 00:00:00 2001 From: kuriyama Date: Mon, 29 Dec 2014 04:40:18 +0000 Subject: 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/ --- devel/Makefile | 1 + devel/go-uuid/Makefile | 23 +++++++++++++++++++++++ devel/go-uuid/distinfo | 2 ++ devel/go-uuid/pkg-descr | 4 ++++ devel/go-uuid/pkg-plist | 15 +++++++++++++++ 5 files changed, 45 insertions(+) create mode 100644 devel/go-uuid/Makefile create mode 100644 devel/go-uuid/distinfo create mode 100644 devel/go-uuid/pkg-descr create mode 100644 devel/go-uuid/pkg-plist (limited to 'devel') diff --git a/devel/Makefile b/devel/Makefile index 688b6dcec1e9..6426ad39b48a 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -588,6 +588,7 @@ SUBDIR += go-runewidth SUBDIR += go-sql-driver SUBDIR += go-termbox + SUBDIR += go-uuid SUBDIR += gob2 SUBDIR += gobject-introspection SUBDIR += goffice diff --git a/devel/go-uuid/Makefile b/devel/go-uuid/Makefile new file mode 100644 index 000000000000..c9d5207f4df3 --- /dev/null +++ b/devel/go-uuid/Makefile @@ -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@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 +.include "${PORTSDIR}/lang/go/files/bsd.go.mk" +.include diff --git a/devel/go-uuid/distinfo b/devel/go-uuid/distinfo new file mode 100644 index 000000000000..71c7c84b14f1 --- /dev/null +++ b/devel/go-uuid/distinfo @@ -0,0 +1,2 @@ +SHA256 (go-uuid-35bc42037350.tar.gz) = ab8936a28a24975f77dd3cb02f5d4dfbc668f69a31287072a700cb607ff75021 +SIZE (go-uuid-35bc42037350.tar.gz) = 41463 diff --git a/devel/go-uuid/pkg-descr b/devel/go-uuid/pkg-descr new file mode 100644 index 000000000000..40c646466720 --- /dev/null +++ b/devel/go-uuid/pkg-descr @@ -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/ diff --git a/devel/go-uuid/pkg-plist b/devel/go-uuid/pkg-plist new file mode 100644 index 000000000000..8c8f717dc885 --- /dev/null +++ b/devel/go-uuid/pkg-plist @@ -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 -- cgit