Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/raft/
Date: Fri, 10 Sep 2021 05:43:02
Message-Id: 1631252538.e0b7aebf0b23b690682074353f82f39b2f4f4d46.juippis@gentoo
1 commit: e0b7aebf0b23b690682074353f82f39b2f4f4d46
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 10 05:42:18 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 10 05:42:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0b7aebf
7
8 dev-libs/raft: drop 0.11.1
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 dev-libs/raft/Manifest | 1 -
13 dev-libs/raft/raft-0.11.1.ebuild | 54 ----------------------------------------
14 2 files changed, 55 deletions(-)
15
16 diff --git a/dev-libs/raft/Manifest b/dev-libs/raft/Manifest
17 index 8fdb14ce642..310531d32c3 100644
18 --- a/dev-libs/raft/Manifest
19 +++ b/dev-libs/raft/Manifest
20 @@ -1,2 +1 @@
21 -DIST raft-0.11.1.tar.gz 324285 BLAKE2B 10e62a392bdbb98f262068ad2bcfbcd24488918fbb7d4c3b13101c3d771ff8b9d592bad31bfe69cfcb4d6e9c93e1d38da24d11a3167d37208906af4e354c9280 SHA512 5afbf0f7e325ed242c5a37a39038818395c1b39184e2440bf89db6662dee73b9abaa8fac0efc28dbc3478267aa66fd94e908e320a061fb5b343735e111dbea86
22 DIST raft-0.11.2.tar.gz 325098 BLAKE2B d9366547440b431edec75a22bca3a50bb6d714b5d950c061723f0585c5ad33704d23c32f2e325dc566ebeab71e15e10f07932c854657837e190901b52c9b4950 SHA512 8be47270cf3b888ff6adeeec2480ccd5065b45c3c546da089cbb326cf429f0bcd4396001e20fbf52587c00d5757337812c834ec5064fafa4815a978a7cf0c35f
23
24 diff --git a/dev-libs/raft/raft-0.11.1.ebuild b/dev-libs/raft/raft-0.11.1.ebuild
25 deleted file mode 100644
26 index 9d2be2004ed..00000000000
27 --- a/dev-libs/raft/raft-0.11.1.ebuild
28 +++ /dev/null
29 @@ -1,54 +0,0 @@
30 -# Copyright 2020-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit autotools
36 -
37 -DESCRIPTION="C implementation of the Raft consensus protocol"
38 -HOMEPAGE="https://github.com/canonical/raft"
39 -SRC_URI="https://github.com/canonical/raft/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="LGPL-3-with-linking-exception"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~arm64"
44 -IUSE="lz4 test zfs"
45 -RESTRICT="!test? ( test )"
46 -
47 -DEPEND="dev-libs/libuv
48 - lz4? ( app-arch/lz4 )"
49 -RDEPEND="${DEPEND}"
50 -
51 -PATCHES=(
52 - "${FILESDIR}"/raft-0.9.25-Always-skip-init-oom-test.patch
53 - "${FILESDIR}"/raft-0.10.0-toggle-zfs.patch
54 - )
55 -
56 -src_prepare() {
57 - default
58 - eautoreconf
59 -}
60 -
61 -src_configure() {
62 - local myeconfargs=(
63 - --enable-uv
64 -
65 - --disable-benchmark
66 - --disable-debug
67 - --disable-example
68 - --disable-sanitize
69 - --disable-static
70 -
71 - $(use_enable lz4)
72 - $(use_enable test fixture)
73 -
74 - $(use_with zfs)
75 - )
76 -
77 - econf "${myeconfargs[@]}"
78 -}
79 -
80 -src_install() {
81 - default
82 - find "${ED}" -name '*.la' -delete || die
83 -}