summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoonas Niilola <juippis@gentoo.org>2021-06-01 11:38:45 +0300
committerJoonas Niilola <juippis@gentoo.org>2021-06-01 11:43:13 +0300
commit85a17e8abfe152ee16bbce33b5869d52b67ff533 (patch)
tree2c3035d9d5d5b28bf20868f03fb9171690e6cdc5 /dev-libs/dqlite/dqlite-1.6.0.ebuild
parentdev-libs/dqlite: stabilize 1.7.0 on amd64 (diff)
downloadgentoo-85a17e8abfe152ee16bbce33b5869d52b67ff533.tar.gz
gentoo-85a17e8abfe152ee16bbce33b5869d52b67ff533.tar.bz2
gentoo-85a17e8abfe152ee16bbce33b5869d52b67ff533.zip
dev-libs/dqlite: drop 1.6.0
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-libs/dqlite/dqlite-1.6.0.ebuild')
-rw-r--r--dev-libs/dqlite/dqlite-1.6.0.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/dev-libs/dqlite/dqlite-1.6.0.ebuild b/dev-libs/dqlite/dqlite-1.6.0.ebuild
deleted file mode 100644
index 460315ba8ec1..000000000000
--- a/dev-libs/dqlite/dqlite-1.6.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# 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 ~arm64"
-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
- --disable-static
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}