IABSD.fr/ports/databases/leveldb

Branch :


Log

Author Commit Date CI Message
a23da81c 2012-08-21 13:51:12 Remove the pthread chunk. Respect CXX. Sync WANTLIB. ok jasper@
d0600884 2012-08-21 00:28:34 update to leveldb 1.5.0 ok sthen@ -lpthread patch for jasper@
8a03c9f6 2012-08-19 21:08:34 no need to be different, just to be different.
d2db4af8 2012-03-18 12:56:56 include the headers in the package ok aja sthen
db138871 2012-02-16 21:27:37 It's pointless to add BROKEN-* for each and every arch when the code explicitely checks for i386/amd64/arm and #errors out otherwise. Mark as ONLY_FOR_ARCHS accordingly.
0f7a0ec1 2011-12-22 15:25:42 BROKEN on sparc64
9812ddb8 2011-10-22 18:10:32 BROKEN on powerpc.
446a0d0c 2011-08-19 06:44:00 import leveldb, svn rev 48 LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values. Features: - Keys and values are arbitrary byte arrays. - Data is stored sorted by key. - Callers can provide a custom comparison function to override the sort order. - The basic operations are Put(key,value), Get(key), Delete(key). - Multiple changes can be made in one atomic batch. - Users can create a transient snapshot to get a consistent view of data. - Forward and backward iteration is supported over the data. ok sthen@