leveldb 1.20-1 source package in Ubuntu

Changelog

leveldb (1.20-1) unstable; urgency=low

  * New upstream release (closes: #872909):
    - builds on armhf (closes: #845783).
  * Convert markdown documentation to HTML.
  * Update Standards-Version to 4.1.0:
    - change libleveldb-dbg priority to optional.
  * Update debhelper level to 10 .

 -- Laszlo Boszormenyi (GCS) <email address hidden>  Sat, 23 Sep 2017 14:30:46 +0000

Upload details

Uploaded by:
Alessio Treglia
Uploaded to:
Sid
Original maintainer:
Alessio Treglia
Architectures:
any all
Section:
database
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
leveldb_1.20-1.dsc 2.1 KiB 8143c8b6939d8ec020e275c9d7bb9a904a2b572f232054255418fe605f64f965
leveldb_1.20.orig.tar.gz 217.9 KiB f5abe8b5b209c2f36560b75f32ce61412f39a2922f7045ae764a2c23335b6664
leveldb_1.20-1.debian.tar.xz 10.2 KiB d1e08b8af8efe0f254930284eec327e92dd05c958694bb47f45a2541866c5a83

Available diffs

No changes file available.

Binary packages built by this source

leveldb-doc: No summary available for leveldb-doc in ubuntu artful.

No description available for leveldb-doc in ubuntu artful.

libleveldb-dbg: No summary available for libleveldb-dbg in ubuntu bionic.

No description available for libleveldb-dbg in ubuntu bionic.

libleveldb-dev: fast key-value storage library (development files)

 LevelDB is a fast key-value storage library written at Google that
 provides an ordered mapping from string keys to string values.
 .
 This package provides the development files.

libleveldb1v5: fast key-value storage library

 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.
 .
 This package provides the shared library.