leveldb 1.22-3 source package in Ubuntu

Changelog

leveldb (1.22-3) unstable; urgency=medium

  * Reinstate static memenv library.

  [ Helmut Grohne <email address hidden> ]
  * Fix FTCBFS: Fix build/host confusion (closes: #933200).

 -- Laszlo Boszormenyi (GCS) <email address hidden>  Sat, 27 Jul 2019 16:36:03 +0000

Upload details

Uploaded by:
Laszlo Boszormenyi
Uploaded to:
Sid
Original maintainer:
Laszlo Boszormenyi
Architectures:
any all
Section:
database
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
leveldb_1.22-3.dsc 2.0 KiB 818e945c7aaaf257903195ab0c38e95c6ca143c105390bde016f65be53aa1ccf
leveldb_1.22.orig.tar.gz 233.8 KiB 55423cac9e3306f4a9502c738a001e4a339d1a38ffbee7572d4a07d5d63949b2
leveldb_1.22-3.debian.tar.xz 9.0 KiB e6193a3eb680d0b86389ac1d55f9982247e4d20bba659c1137327784f4c35958

Available diffs

No changes file available.

Binary packages built by this source

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

No description available for leveldb-doc in ubuntu eoan.

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.

libleveldb1d: 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.

libleveldb1d-dbgsym: debug symbols for libleveldb1d