commit: 7016c60063e9a3e130a46d99d0387a64461cc03f Author: Joonas Niilola <juippis <AT> gentoo <DOT> org> AuthorDate: Fri Oct 23 06:26:21 2020 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Fri Oct 23 07:36:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7016c600
dev-libs/dqlite: new package - embeddable, replicated and fault tolerant SQL engine, - dep of lxd. Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> dev-libs/dqlite/Manifest | 1 + dev-libs/dqlite/dqlite-1.6.0.ebuild | 37 +++++++++++++++++++++++++++++++++++++ dev-libs/dqlite/metadata.xml | 21 +++++++++++++++++++++ 3 files changed, 59 insertions(+) diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest new file mode 100644 index 00000000000..bffa11052ed --- /dev/null +++ b/dev-libs/dqlite/Manifest @@ -0,0 +1 @@ +DIST dqlite-1.6.0.tar.gz 155087 BLAKE2B 97a49f78f1b6af5ff5abfe6c5e1e3eec67cc1da4bd9c49b785e6fff60e5fd39fa1f479269ec098935ebb7fbbca6346859b54bd0c9b8f428557e2768da938da0c SHA512 07abf0d3247afd0a8f4ea053e10fbf2e53f69dc1101a7e54e064282eee3590ef5925e9b794a7cfd891247747d34b68340946d322d582ce49282b6f56804e8578 diff --git a/dev-libs/dqlite/dqlite-1.6.0.ebuild b/dev-libs/dqlite/dqlite-1.6.0.ebuild new file mode 100644 index 00000000000..0c27bdc0162 --- /dev/null +++ b/dev-libs/dqlite/dqlite-1.6.0.ebuild @@ -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[@]}" +} diff --git a/dev-libs/dqlite/metadata.xml b/dev-libs/dqlite/metadata.xml new file mode 100644 index 00000000000..d15b38e9561 --- /dev/null +++ b/dev-libs/dqlite/metadata.xml @@ -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>juip...@gentoo.org</email> + <name>Joonas Niilola</name> + </maintainer> + <maintainer type="project"> + <email>virtualizat...@gentoo.org</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>