svn commit: r313365 - in head/databases: . rubygem-bdb1
Dirk Meyer
dinoex at FreeBSD.org
Sun Mar 3 16:09:57 UTC 2013
Author: dinoex
Date: Sun Mar 3 16:09:56 2013
New Revision: 313365
URL: http://svnweb.freebsd.org/changeset/ports/313365
Log:
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
Added:
head/databases/rubygem-bdb1/
head/databases/rubygem-bdb1/Makefile (contents, props changed)
head/databases/rubygem-bdb1/distinfo (contents, props changed)
head/databases/rubygem-bdb1/pkg-descr (contents, props changed)
Modified:
head/databases/Makefile
Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile Sun Mar 3 16:08:46 2013 (r313364)
+++ head/databases/Makefile Sun Mar 3 16:09:56 2013 (r313365)
@@ -812,6 +812,7 @@
SUBDIR += rubygem-activerecord-jdbcmysql-adapter
SUBDIR += rubygem-amalgalite
SUBDIR += rubygem-arel
+ SUBDIR += rubygem-bdb1
SUBDIR += rubygem-bigrecord
SUBDIR += rubygem-couchrest
SUBDIR += rubygem-data_objects
Added: head/databases/rubygem-bdb1/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/rubygem-bdb1/Makefile Sun Mar 3 16:09:56 2013 (r313365)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+PORTNAME= bdb1
+PORTVERSION= 0.2.5
+CATEGORIES= databases rubygems
+MASTER_SITES= RG
+
+MAINTAINER= ruby at 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>
Added: head/databases/rubygem-bdb1/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/rubygem-bdb1/distinfo Sun Mar 3 16:09:56 2013 (r313365)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/bdb1-0.2.5.gem) = b65c11ef56dadd45c458c0ff344fe34384ffad91a072168cd9ab460e10738de9
+SIZE (rubygem/bdb1-0.2.5.gem) = 67072
Added: head/databases/rubygem-bdb1/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/rubygem-bdb1/pkg-descr Sun Mar 3 16:09:56 2013 (r313365)
@@ -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
More information about the svn-ports-all
mailing list