Ruby-bdb1 is an interface to Berkeley DB revision 1.85 and 1.86.

This library includes support for the following access methods:

* B+tree
* Hashing
* Fixed and Variable-Length Records

And the following interfaces:

* Hash like interface - BDB1::Btree and BDB1::Hash
* Array like interface - BDB1::Recnum(Recno)

WWW:	https://github.com/knu/ruby-bdb1
This commit is contained in:
Dirk Meyer 2013-03-03 16:09:56 +00:00
parent 6a2157983a
commit 2cc8cd54fa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=313365
4 changed files with 34 additions and 0 deletions

View file

@ -812,6 +812,7 @@
SUBDIR += rubygem-activerecord-jdbcmysql-adapter SUBDIR += rubygem-activerecord-jdbcmysql-adapter
SUBDIR += rubygem-amalgalite SUBDIR += rubygem-amalgalite
SUBDIR += rubygem-arel SUBDIR += rubygem-arel
SUBDIR += rubygem-bdb1
SUBDIR += rubygem-bigrecord SUBDIR += rubygem-bigrecord
SUBDIR += rubygem-couchrest SUBDIR += rubygem-couchrest
SUBDIR += rubygem-data_objects SUBDIR += rubygem-data_objects

View file

@ -0,0 +1,17 @@
# $FreeBSD$
PORTNAME= bdb1
PORTVERSION= 0.2.5
CATEGORIES= databases rubygems
MASTER_SITES= RG
MAINTAINER= ruby@FreeBSD.org
COMMENT= Ruby interface to Berkeley DB revision 1.8x with full feature support
LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (rubygem/bdb1-0.2.5.gem) = b65c11ef56dadd45c458c0ff344fe34384ffad91a072168cd9ab460e10738de9
SIZE (rubygem/bdb1-0.2.5.gem) = 67072

View file

@ -0,0 +1,14 @@
Ruby-bdb1 is an interface to Berkeley DB revision 1.85 and 1.86.
This library includes support for the following access methods:
* B+tree
* Hashing
* Fixed and Variable-Length Records
And the following interfaces:
* Hash like interface - BDB1::Btree and BDB1::Hash
* Array like interface - BDB1::Recnum(Recno)
WWW: https://github.com/knu/ruby-bdb1