public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/raft/
Date: Thu,  3 Jun 2021 05:02:18 +0000 (UTC)	[thread overview]
Message-ID: <1622696531.c8a4407dd39fd998c25cc7800b6e12539f579103.juippis@gentoo> (raw)

commit:     c8a4407dd39fd998c25cc7800b6e12539f579103
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  3 05:01:31 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Jun  3 05:02:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8a4407d

dev-libs/raft: bump to 0.11.0

 - new feature: lz4 compression support.

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-libs/raft/Manifest           |  1 +
 dev-libs/raft/raft-0.11.0.ebuild | 54 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/dev-libs/raft/Manifest b/dev-libs/raft/Manifest
index 221fb552b3d..e098eba4909 100644
--- a/dev-libs/raft/Manifest
+++ b/dev-libs/raft/Manifest
@@ -1 +1,2 @@
 DIST raft-0.10.1.tar.gz 318911 BLAKE2B 42ef22dfc89f05a3a9f130011c0f906201126a1615f9a60648587e014bbb63e038b3afd1593c2c07b046c3c35ef07deaa45cdce58062707409e4dbd3a9f7516e SHA512 6fa99d9dbb5895299c5124f5c8cfb544cf1bccae4ee196bc8011cd4cf9c632cd896f8cd93181409fbaf7da115235c72a4e10568080dd9957eceb978784dc0f9d
+DIST raft-0.11.0.tar.gz 324254 BLAKE2B 401be37c2cf9ee9337c24d3e010ce084b983056725096f23654ae0496e6cb1210ab4d6fa38543c19a53d7aa6427bfe01052f85618afe2475a113edc4ba8d2745 SHA512 808ea593e019ed1740ced2de4afd7f522056e08ccd739be77b069de80dd21e60dc9469395d6e18cb8f8056c12f4ef34859ca5892a3937280e708515a8bb3cebf

diff --git a/dev-libs/raft/raft-0.11.0.ebuild b/dev-libs/raft/raft-0.11.0.ebuild
new file mode 100644
index 00000000000..cbf81fcbddb
--- /dev/null
+++ b/dev-libs/raft/raft-0.11.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="C implementation of the Raft consensus protocol"
+HOMEPAGE="https://github.com/canonical/raft"
+SRC_URI="https://github.com/canonical/raft/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-3-with-linking-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="lz4 test zfs"
+RESTRICT="!test? ( test )"
+
+DEPEND="dev-libs/libuv
+	lz4? ( app-arch/lz4 )"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+	"${FILESDIR}"/raft-0.9.25-Always-skip-init-oom-test.patch
+	"${FILESDIR}"/raft-0.10.0-toggle-zfs.patch
+	)
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	local myeconfargs=(
+		--enable-uv
+
+		--disable-benchmark
+		--disable-debug
+		--disable-example
+		--disable-sanitize
+		--disable-static
+
+		$(use_enable lz4)
+		$(use_enable test fixture)
+
+		$(use_with zfs)
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}


             reply	other threads:[~2021-06-03  5:02 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-03  5:02 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-01  8:37 [gentoo-commits] repo/gentoo:master commit in: dev-libs/raft/ Joonas Niilola
2024-05-05  6:28 Joonas Niilola
2024-04-01  6:47 Joonas Niilola
2024-04-01  6:47 Joonas Niilola
2024-03-18  5:50 Joonas Niilola
2024-02-10  7:39 Joonas Niilola
2024-02-10  7:39 Joonas Niilola
2024-02-06 15:01 Joonas Niilola
2024-02-03  8:17 Joonas Niilola
2024-01-28  7:17 Joonas Niilola
2024-01-20 14:05 Joonas Niilola
2024-01-06  9:56 Joonas Niilola
2024-01-06  9:32 Joonas Niilola
2023-12-16  7:22 Joonas Niilola
2023-12-16  7:22 Joonas Niilola
2023-11-16  8:19 Joonas Niilola
2023-11-09  6:32 Joonas Niilola
2023-11-01 13:17 Joonas Niilola
2023-10-23  5:55 Joonas Niilola
2023-10-18 16:46 Joonas Niilola
2023-10-18 16:39 Joonas Niilola
2023-09-22  6:09 Joonas Niilola
2023-02-22  7:14 Joonas Niilola
2023-02-20  8:06 Joonas Niilola
2023-01-19 15:10 Joonas Niilola
2023-01-09 12:51 Joonas Niilola
2023-01-04 13:51 Joonas Niilola
2023-01-04 13:51 Joonas Niilola
2022-11-19  7:30 Joonas Niilola
2022-10-10 12:20 Joonas Niilola
2022-09-24 13:57 Joonas Niilola
2022-08-24  7:02 Joonas Niilola
2022-08-24  7:02 Joonas Niilola
2022-07-30  7:05 Joonas Niilola
2022-06-28  7:14 Joonas Niilola
2022-05-16 14:26 Joonas Niilola
2022-04-14 11:51 Joonas Niilola
2022-04-09 12:20 Joonas Niilola
2022-03-20  6:22 Joonas Niilola
2022-02-16  6:59 Joonas Niilola
2021-10-04  5:40 Joonas Niilola
2021-09-10  5:42 Joonas Niilola
2021-09-09 11:30 Joonas Niilola
2021-09-09 11:30 Joonas Niilola
2021-08-09 14:26 Joonas Niilola
2021-07-19 11:15 Joonas Niilola
2021-07-10 14:45 Joonas Niilola
2021-06-08  5:26 Joonas Niilola
2021-06-08  5:26 Joonas Niilola
2021-06-01  8:43 Joonas Niilola
2021-06-01  8:43 Joonas Niilola
2021-04-30  7:01 Joonas Niilola
2021-04-28  5:57 Joonas Niilola
2021-04-23  5:55 Joonas Niilola
2020-12-09  8:04 Joonas Niilola
2020-11-15 14:59 Luca Barbato
2020-10-23  9:25 David Seifert
2020-10-23  8:06 Joonas Niilola
2020-10-23  7:37 Joonas Niilola

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1622696531.c8a4407dd39fd998c25cc7800b6e12539f579103.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox