Commit graph

12 commits

Author SHA1 Message Date
Sunpoet Po-Chuan Hsieh
13aba34441 Update to 1.21
Changes:	https://github.com/google/leveldb/releases
2019-04-19 23:25:49 +00:00
Sunpoet Po-Chuan Hsieh
f5244e9a47 Fix SSE 4.2 detection (on armv6)
PR:		217575
Submitted by:	Mikael Urankar <mikael.urankar@gmail.com>
2017-03-12 17:28:51 +00:00
Sunpoet Po-Chuan Hsieh
027a83aeea Run configure script in configure stage 2017-03-10 22:44:43 +00:00
Sunpoet Po-Chuan Hsieh
919f3b34ee - Update to 1.19
Changes:	https://github.com/google/leveldb/releases
2016-11-19 17:02:40 +00:00
Sunpoet Po-Chuan Hsieh
133bb3f069 - Convert to new options target helper
- Update comment
- Regenerate patch file with makepatch:
2015-07-11 15:27:23 +00:00
Sunpoet Po-Chuan Hsieh
ac00bdebb4 - Build/install memenv header file and shared/static library
- Bump PORTREVISION for package change
- Cosmetic change

Requested by:	mi
Tested by:	mi, Robert Backhaus <robbak@robbak.com> (net-p2p/bitcoin maintainer)
2013-04-23 17:15:35 +00:00
Sunpoet Po-Chuan Hsieh
9dc70edf6c - Update to 1.7.0
- Cleanup Makefile header

Changes:	http://code.google.com/p/leveldb/source/list
		http://code.google.com/p/leveldb/source/detail?r=40768657bc8ec3ded60712eeeab7c25b1b07deca
		http://code.google.com/p/leveldb/source/detail?r=946e5b5a4ce7980917b22a408f090a4e86c3fa44
Feature safe:	yes
2012-12-05 00:47:56 +00:00
Sunpoet Po-Chuan Hsieh
541c36a3e9 - Update to 1.5.0
Changes:	http://code.google.com/p/leveldb/source/list
		http://code.google.com/p/leveldb/source/detail?r=dd0d562b4d4fbd07db6a44f9e221f8d368fee8e4
		http://code.google.com/p/leveldb/source/detail?r=b914f91b1049699aa2d0e08660aa9246b87bdcb7
		http://code.google.com/p/leveldb/source/detail?r=075a35a6d390167b77b687e067dd0ba593e7f624
		http://code.google.com/p/leveldb/source/detail?r=85584d497e7b354853b72f450683d59fcf6b9c5c
		http://code.google.com/p/leveldb/source/detail?r=bc1ee4d25e09b04e074db330a41f54ef4af0e31b
		http://code.google.com/p/leveldb/source/detail?r=a1ad4d1995dc8efeb0d3d7a40b8bb63c9b7c8259
Submitted by:	vanilla
2012-06-16 20:21:57 +00:00
Sunpoet Po-Chuan Hsieh
675bdb9537 - Update to 1.2.20111130
Changes:	http://code.google.com/p/leveldb/source/list
		http://code.google.com/p/leveldb/source/detail?r=c8c5866a86c8d4a3e80d8708d14a06776fb683d1
Feature safe:	yes
2011-12-07 14:04:16 +00:00
Sunpoet Po-Chuan Hsieh
65dd136eb0 - Update to 1.2.20111114
Changes:	http://code.google.com/p/leveldb/source/list
		http://code.google.com/p/leveldb/source/detail?r=42fb47f6edab02d4abb814631c6615dd4661d7d2
		http://code.google.com/p/leveldb/source/detail?r=36a5f8ed7f9fb3373236d5eace4f5fea369856ee
Feature safe:	yes
2011-11-21 09:01:06 +00:00
Sunpoet Po-Chuan Hsieh
c2cfef1d88 - Fix snappy detection
- Turn off PERFTOOLS by default
- Pet portlint
- Bump PORTREVISION for dependency change
2011-10-28 14:18:06 +00:00
Sunpoet Po-Chuan Hsieh
65aafbcdb6 - Add leveldb 1.2.20111024
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.
- Data is automatically compressed using the Snappy compression library.
- External activity (file system operations etc.) is relayed through a virtual
  interface so users can customize the operating system interactions.
- Detailed documentation about how to use the library is included with the
  source code.

Limitations:
- This is not a SQL database. It does not have a relational data model, it does
  not support SQL queries, and it has no support for indexes.
- Only a single process (possibly multi-threaded) can access a particular
  database at a time.
- There is no client-server support builtin to the library. An application that
  needs such support will have to wrap their own server around the library.

WWW: http://code.google.com/p/leveldb/
2011-10-28 10:54:30 +00:00