1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00

Add go-btree, BTree implementation for Go.

This commit is contained in:
Akinori MUSHA 2016-03-29 13:19:56 +00:00
parent e0f7a0b337
commit 44dbdfd5e0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=412108
5 changed files with 36 additions and 0 deletions

View File

@ -714,6 +714,7 @@
SUBDIR += gnustep
SUBDIR += gnustep-make
SUBDIR += go-bindata
SUBDIR += go-btree
SUBDIR += go-flags
SUBDIR += go-hashicorp-logutils
SUBDIR += go-json-rest

23
devel/go-btree/Makefile Normal file
View File

@ -0,0 +1,23 @@
# Created by: Akinori MUSHA aka knu <knu@FreeBSD.org>
# $FreeBSD$
PORTNAME= btree
PORTVERSION= 0.0.0.20150414
CATEGORIES= devel
PKGNAMEPREFIX= go-
MAINTAINER= knu@FreeBSD.org
COMMENT= BTree implementation for Go
LICENSE= APACHE20
USE_GITHUB= yes
GH_ACCOUNT= google
GH_PROJECT= ${PORTNAME}
GH_TAGNAME= cc6329d
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>

2
devel/go-btree/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (google-btree-0.0.0.20150414-cc6329d_GH0.tar.gz) = 0e99ef9aa857291b90d8371272665d8fffe382a3c991dd41853beab9a04e8fdf
SIZE (google-btree-0.0.0.20150414-cc6329d_GH0.tar.gz) = 11293

4
devel/go-btree/pkg-descr Normal file
View File

@ -0,0 +1,4 @@
This package provides an in-memory B-Tree implementation for Go,
useful as a an ordered, mutable data structure.
WWW: https://github.com/google/btree

6
devel/go-btree/pkg-plist Normal file
View File

@ -0,0 +1,6 @@
%%GO_LIBDIR%%/github.com/google/btree.a
%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE
%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md
%%GO_SRCDIR%%/%%GO_PKGNAME%%/btree.go
%%GO_SRCDIR%%/%%GO_PKGNAME%%/btree_mem.go
%%GO_SRCDIR%%/%%GO_PKGNAME%%/btree_test.go