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/dqlite/
Date: Tue, 20 Aug 2024 05:20:28 +0000 (UTC)	[thread overview]
Message-ID: <1724131192.30400c42d24f10503297fc60d83a67679bb3705d.juippis@gentoo> (raw)

commit:     30400c42d24f10503297fc60d83a67679bb3705d
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 20 05:19:52 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Aug 20 05:19:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30400c42

dev-libs/dqlite: add 1.16.7

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

 dev-libs/dqlite/Manifest             |  1 +
 dev-libs/dqlite/dqlite-1.16.7.ebuild | 59 ++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 210d4c6e24f8..06b7ad0995ba 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1,3 @@
 DIST dqlite-1.16.4.tar.gz 499174 BLAKE2B 3a5f28dd352ada1d0866d3563c450aad10413118a30fc9369aaadc5f46acefaa8f28e21118e71ef3eb801c51c9946664882d82a15eff71eefbbd51f6fd68c4b3 SHA512 164a63ce9224b9a4f10d2312ac03e98ccdec8c6c4fe22e6fc595dc792f9a7c75317cf8e839eb31a8db2501a094d67053300532a92bca26c86ef5097dd3c06a2b
 DIST dqlite-1.16.6.tar.gz 528753 BLAKE2B ce189198bd1edd311bd76f50d780af63cabaecc0c0f6c5ba49d3d3e04cafcfcb215c0297bba8d86db83f1457dad71fa0c7c018af076ccbf7c647918c10265399 SHA512 c71c9da8c0a0ed2ea70d2a2a8eb45470818b1cc80126483fefbcdf84a77dddd2dbc85ed38fe0e860e6e085ad11356981375c41626888a53ea20cc4a00d840774
+DIST dqlite-1.16.7.tar.gz 528738 BLAKE2B 868e2317df85eb6f3e866851c0bab4b0b5fbc4eb80d687bb687349e398e93ce9d5bab79aa3fdf62aa0bfd9f9938feaa77d477ff977681bc6a6172dd164deb2e9 SHA512 ee63ac49355e3be1e70608e6f20863d365ab7983e704134b6c881312cba16f7cb137835492f6869f216795d166c0e54880aca6ff29000633350fe3835564029a

diff --git a/dev-libs/dqlite/dqlite-1.16.7.ebuild b/dev-libs/dqlite/dqlite-1.16.7.ebuild
new file mode 100644
index 000000000000..11256abc34ee
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.16.7.ebuild
@@ -0,0 +1,59 @@
+# Copyright 2020-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Embeddable, replicated and fault tolerant SQL engine"
+HOMEPAGE="https://dqlite.io/ 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/1.15.1"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="+lz4 test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-db/sqlite:3
+	dev-libs/libuv:=
+	lz4? ( app-arch/lz4:= )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+	"${FILESDIR}"/dqlite-1.12.0-disable-werror.patch
+	"${FILESDIR}"/dqlite-1.16.6-respect-cflags.patch
+)
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	local myeconfargs=(
+		--disable-backtrace
+		--disable-debug
+		--disable-sanitize
+		--disable-static
+
+		# Will use bundled raft instead of system raft. See bugs #915960, #925012.
+		--enable-build-raft
+
+		# Will build a bundled libsqlite3.so.
+		--enable-build-sqlite=no
+
+		# Will build with experimental dqlite backend
+		--enable-dqlite-next=no
+
+		$(use_with lz4)
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}


             reply	other threads:[~2024-08-20  5:20 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-20  5:20 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-26  0:39 [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/ Sam James
2025-03-31 12:58 Joonas Niilola
2025-03-31 12:58 Joonas Niilola
2024-08-20  5:20 Joonas Niilola
2024-07-30  5:26 Joonas Niilola
2024-03-17  7:45 Joonas Niilola
2024-02-28  4:30 Joonas Niilola
2024-02-25  9:36 Joonas Niilola
2024-02-25  9:36 Joonas Niilola
2024-02-23  7:19 Joonas Niilola
2024-02-20  9:08 Joonas Niilola
2024-02-19  9:16 Joonas Niilola
2023-11-01 13:17 Joonas Niilola
2023-10-23  5:55 Joonas Niilola
2023-09-22  6:09 Joonas Niilola
2023-07-18  5:22 Joonas Niilola
2023-07-16  6:56 Joonas Niilola
2023-06-29  6:41 Joonas Niilola
2023-06-15 12:14 Joonas Niilola
2023-06-13 12:48 Joonas Niilola
2023-02-22  7:14 Joonas Niilola
2023-02-20  8:06 Joonas Niilola
2023-01-22  7:24 Joonas Niilola
2023-01-19 15:10 Joonas Niilola
2023-01-15  7:11 Joonas Niilola
2023-01-09 12:51 Joonas Niilola
2023-01-04 13:51 Joonas Niilola
2022-12-13 14:25 Joonas Niilola
2022-12-13 14:25 Joonas Niilola
2022-11-19  7:37 Joonas Niilola
2022-08-24  7:02 Joonas Niilola
2022-08-16  7:55 Joonas Niilola
2022-07-14  5:30 Joonas Niilola
2022-06-04  7:07 Joonas Niilola
2022-05-16 14:26 Joonas Niilola
2022-04-14 11:51 Joonas Niilola
2022-04-14  8:54 Joonas Niilola
2022-03-20  6:22 Joonas Niilola
2022-02-14  9:07 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-10  6:31 Joonas Niilola
2021-06-01  8:43 Joonas Niilola
2021-06-01  8:43 Joonas Niilola
2021-04-30  7:01 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=1724131192.30400c42d24f10503297fc60d83a67679bb3705d.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