Skip to content

Commit

Permalink
dev-libs/dqlite: new package
Browse files Browse the repository at this point in the history
 - embeddable, replicated and fault tolerant SQL engine,
 - dep of lxd.

Signed-off-by: Joonas Niilola <[email protected]>
  • Loading branch information
juippis committed Oct 23, 2020
1 parent 652e2b1 commit 7016c60
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
1 change: 1 addition & 0 deletions dev-libs/dqlite/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST dqlite-1.6.0.tar.gz 155087 BLAKE2B 97a49f78f1b6af5ff5abfe6c5e1e3eec67cc1da4bd9c49b785e6fff60e5fd39fa1f479269ec098935ebb7fbbca6346859b54bd0c9b8f428557e2768da938da0c SHA512 07abf0d3247afd0a8f4ea053e10fbf2e53f69dc1101a7e54e064282eee3590ef5925e9b794a7cfd891247747d34b68340946d322d582ce49282b6f56804e8578
37 changes: 37 additions & 0 deletions dev-libs/dqlite/dqlite-1.6.0.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit autotools

DESCRIPTION="Embeddable, replicated and fault tolerant SQL engine"
HOMEPAGE="https://github.com/canonical/dqlite"
SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="LGPL-3-with-linking-exception"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"

RESTRICT="!test? ( test )"

RDEPEND="dev-db/sqlite:3
dev-libs/libuv
dev-libs/raft"
DEPEND="${RDEPEND}
test? ( dev-libs/raft[test] )"

src_prepare() {
default
eautoreconf
}

src_configure() {
local myeconfargs=(
--disable-debug
--disable-sanitize
)

econf "${myeconfargs[@]}"
}
21 changes: 21 additions & 0 deletions dev-libs/dqlite/metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>[email protected]</email>
<name>Joonas Niilola</name>
</maintainer>
<maintainer type="project">
<email>[email protected]</email>
<name>Gentoo Virtualization Project</name>
</maintainer>
<longdescription>
dqlite is a C library that implements an embeddable and replicated SQL
database engine with high-availability and automatic failover.

The acronym "dqlite" stands for "distributed SQLite", meaning that dqlite
extends SQLite with a network protocol that can connect together various
instances of your application and have them act as a highly-available
cluster, with no dependency on external databases.
</longdescription>
</pkgmetadata>

0 comments on commit 7016c60

Please sign in to comment.