* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2020-10-23 7:37 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2020-10-23 7:37 UTC (permalink / raw
To: gentoo-commits
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>juippis@gentoo.org</email>
+ <name>Joonas Niilola</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>virtualization@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>
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2020-10-23 8:06 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2020-10-23 8:06 UTC (permalink / raw
To: gentoo-commits
commit: 37f55a24e3653e6b498c1444d4030f5492fa083e
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 23 08:04:50 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Oct 23 08:06:33 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37f55a24
dev-libs/dqlite: don't install .a & .la files
Closes: https://bugs.gentoo.org/750809
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.6.0.ebuild | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/dev-libs/dqlite/dqlite-1.6.0.ebuild b/dev-libs/dqlite/dqlite-1.6.0.ebuild
index 0c27bdc0162..b856a1d580b 100644
--- a/dev-libs/dqlite/dqlite-1.6.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.6.0.ebuild
@@ -35,3 +35,8 @@ src_configure() {
econf "${myeconfargs[@]}"
}
+
+src_install() {
+ default
+ find "${D}" -name '*.la' -delete -o -name '*.a' -delete || die
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2020-10-23 9:25 David Seifert
0 siblings, 0 replies; 53+ messages in thread
From: David Seifert @ 2020-10-23 9:25 UTC (permalink / raw
To: gentoo-commits
commit: 24c0da7447257be4c9e3168a86d1202733751e63
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 23 09:24:48 2020 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Oct 23 09:24:48 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24c0da74
dev-libs/dqlite: Disable building of static libraries
Closes: https://bugs.gentoo.org/750809
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: David Seifert <soap <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.6.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/dqlite/dqlite-1.6.0.ebuild b/dev-libs/dqlite/dqlite-1.6.0.ebuild
index b856a1d580b..4d80a538ad5 100644
--- a/dev-libs/dqlite/dqlite-1.6.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.6.0.ebuild
@@ -13,7 +13,6 @@ LICENSE="LGPL-3-with-linking-exception"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
-
RESTRICT="!test? ( test )"
RDEPEND="dev-db/sqlite:3
@@ -31,6 +30,7 @@ src_configure() {
local myeconfargs=(
--disable-debug
--disable-sanitize
+ --disable-static
)
econf "${myeconfargs[@]}"
@@ -38,5 +38,5 @@ src_configure() {
src_install() {
default
- find "${D}" -name '*.la' -delete -o -name '*.a' -delete || die
+ find "${ED}" -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2020-11-15 14:59 Luca Barbato
0 siblings, 0 replies; 53+ messages in thread
From: Luca Barbato @ 2020-11-15 14:59 UTC (permalink / raw
To: gentoo-commits
commit: 4454c33ec7ad7499044388c4fde03ab35a718eb7
Author: Luca Barbato <lu_zero <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 15 14:45:31 2020 +0000
Commit: Luca Barbato <lu_zero <AT> gentoo <DOT> org>
CommitDate: Sun Nov 15 14:59:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4454c33e
dev-libs/dqlite: Mark ~arm64
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Luca Barbato <lu_zero <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.6.0.ebuild b/dev-libs/dqlite/dqlite-1.6.0.ebuild
index 4d80a538ad5..6141fc58dc0 100644
--- a/dev-libs/dqlite/dqlite-1.6.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.6.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2020-12-09 8:04 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2020-12-09 8:04 UTC (permalink / raw
To: gentoo-commits
commit: 13c44f5bbf9f0ea1c1afbd4998c1a8f5e13e34c6
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 9 07:55:08 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Dec 9 07:55:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13c44f5b
dev-libs/dqlite: stabilize 1.6.0 on amd64
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.6.0.ebuild b/dev-libs/dqlite/dqlite-1.6.0.ebuild
index 6141fc58dc0..460315ba8ec 100644
--- a/dev-libs/dqlite/dqlite-1.6.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.6.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2021-04-30 7:01 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2021-04-30 7:01 UTC (permalink / raw
To: gentoo-commits
commit: 7510040509fd189e242dfe080e5ebf02a95fc144
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 30 06:03:57 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Apr 30 07:01:30 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75100405
dev-libs/dqlite: bump to 1.7.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 +
dev-libs/dqlite/dqlite-1.7.0.ebuild | 42 +++++++++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index bffa11052ed..afe83c77fe4 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1 +1,2 @@
DIST dqlite-1.6.0.tar.gz 155087 BLAKE2B 97a49f78f1b6af5ff5abfe6c5e1e3eec67cc1da4bd9c49b785e6fff60e5fd39fa1f479269ec098935ebb7fbbca6346859b54bd0c9b8f428557e2768da938da0c SHA512 07abf0d3247afd0a8f4ea053e10fbf2e53f69dc1101a7e54e064282eee3590ef5925e9b794a7cfd891247747d34b68340946d322d582ce49282b6f56804e8578
+DIST dqlite-1.7.0.tar.gz 157454 BLAKE2B 3eeaaf5bbadfc09803e70d38fcd3ab23c212dc2700ad8ecdde720932b0ad2e32016503eaa8a738139a178bb926a7818497629699ec68eec8c2111f377b40b4a3 SHA512 bf94568b1b52b0d94ddf78a3f975e277a5baa0f553c5c1d175b7e58db3d44478a1b3f8ef962259175b29d774b2eb6ed6765874dd0d461126b3268abbdd57949e
diff --git a/dev-libs/dqlite/dqlite-1.7.0.ebuild b/dev-libs/dqlite/dqlite-1.7.0.ebuild
new file mode 100644
index 00000000000..ef946a6d685
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.7.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2020-2021 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://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"
+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
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2021-06-01 8:43 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2021-06-01 8:43 UTC (permalink / raw
To: gentoo-commits
commit: 85a17e8abfe152ee16bbce33b5869d52b67ff533
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 1 08:38:45 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Jun 1 08:43:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85a17e8a
dev-libs/dqlite: drop 1.6.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.6.0.ebuild | 42 -------------------------------------
2 files changed, 43 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index afe83c77fe4..c9f32b4790d 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1 @@
-DIST dqlite-1.6.0.tar.gz 155087 BLAKE2B 97a49f78f1b6af5ff5abfe6c5e1e3eec67cc1da4bd9c49b785e6fff60e5fd39fa1f479269ec098935ebb7fbbca6346859b54bd0c9b8f428557e2768da938da0c SHA512 07abf0d3247afd0a8f4ea053e10fbf2e53f69dc1101a7e54e064282eee3590ef5925e9b794a7cfd891247747d34b68340946d322d582ce49282b6f56804e8578
DIST dqlite-1.7.0.tar.gz 157454 BLAKE2B 3eeaaf5bbadfc09803e70d38fcd3ab23c212dc2700ad8ecdde720932b0ad2e32016503eaa8a738139a178bb926a7818497629699ec68eec8c2111f377b40b4a3 SHA512 bf94568b1b52b0d94ddf78a3f975e277a5baa0f553c5c1d175b7e58db3d44478a1b3f8ef962259175b29d774b2eb6ed6765874dd0d461126b3268abbdd57949e
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 460315ba8ec..00000000000
--- 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
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2021-06-01 8:43 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2021-06-01 8:43 UTC (permalink / raw
To: gentoo-commits
commit: 85d1d5cb55179ace83451b19048bdcb3e5c2477a
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 1 08:38:08 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Jun 1 08:43:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85d1d5cb
dev-libs/dqlite: stabilize 1.7.0 on amd64
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.7.0.ebuild b/dev-libs/dqlite/dqlite-1.7.0.ebuild
index ef946a6d685..68b083517b5 100644
--- a/dev-libs/dqlite/dqlite-1.7.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.7.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2021-06-10 6:31 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2021-06-10 6:31 UTC (permalink / raw
To: gentoo-commits
commit: 68bfadf707db3632a7c8e1097302a0cb0721b03a
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 10 05:54:05 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Jun 10 06:31:03 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68bfadf7
dev-libs/dqlite: bump to 1.8.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 +
dev-libs/dqlite/dqlite-1.8.0.ebuild | 42 +++++++++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index c9f32b4790d..cadc9c699e8 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1 +1,2 @@
DIST dqlite-1.7.0.tar.gz 157454 BLAKE2B 3eeaaf5bbadfc09803e70d38fcd3ab23c212dc2700ad8ecdde720932b0ad2e32016503eaa8a738139a178bb926a7818497629699ec68eec8c2111f377b40b4a3 SHA512 bf94568b1b52b0d94ddf78a3f975e277a5baa0f553c5c1d175b7e58db3d44478a1b3f8ef962259175b29d774b2eb6ed6765874dd0d461126b3268abbdd57949e
+DIST dqlite-1.8.0.tar.gz 158026 BLAKE2B 0e3bc8badf6b7e0447eebd86069785dca51c4dfda527ee7b838da971830ad65e443c130484b25c901aee5ac4e14c81df84756734aac3fd58a2fdbc67a664c1fb SHA512 4b32a8f8414aabfcc53d7f6ac0d121201076d7021a7d244b7cda316c3e3349e1b4da04cca31f2e3ca7605a9357895374fce0cce076b40eaebfc29a94d42fb38f
diff --git a/dev-libs/dqlite/dqlite-1.8.0.ebuild b/dev-libs/dqlite/dqlite-1.8.0.ebuild
new file mode 100644
index 00000000000..0ed80e62b48
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.8.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2020-2021 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://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"
+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-0.11.1[lz4,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
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2021-07-10 14:45 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2021-07-10 14:45 UTC (permalink / raw
To: gentoo-commits
commit: a9a75d334165361fe822ec3ae2d8a7bf6ef32746
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 10 14:44:37 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Jul 10 14:44:37 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9a75d33
dev-libs/dqlite: stabilize 1.8.0 for amd64
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.8.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.8.0.ebuild b/dev-libs/dqlite/dqlite-1.8.0.ebuild
index 0ed80e62b48..c59ef97f9b9 100644
--- a/dev-libs/dqlite/dqlite-1.8.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.8.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2021-07-19 11:15 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2021-07-19 11:15 UTC (permalink / raw
To: gentoo-commits
commit: 6ad79eb94bf6d5777fe08cfdab885bb040bf0335
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 19 11:11:20 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Jul 19 11:15:36 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ad79eb9
dev-libs/dqlite: drop 1.7.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.7.0.ebuild | 42 -------------------------------------
2 files changed, 43 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index cadc9c699e8..96940cae2cb 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1 @@
-DIST dqlite-1.7.0.tar.gz 157454 BLAKE2B 3eeaaf5bbadfc09803e70d38fcd3ab23c212dc2700ad8ecdde720932b0ad2e32016503eaa8a738139a178bb926a7818497629699ec68eec8c2111f377b40b4a3 SHA512 bf94568b1b52b0d94ddf78a3f975e277a5baa0f553c5c1d175b7e58db3d44478a1b3f8ef962259175b29d774b2eb6ed6765874dd0d461126b3268abbdd57949e
DIST dqlite-1.8.0.tar.gz 158026 BLAKE2B 0e3bc8badf6b7e0447eebd86069785dca51c4dfda527ee7b838da971830ad65e443c130484b25c901aee5ac4e14c81df84756734aac3fd58a2fdbc67a664c1fb SHA512 4b32a8f8414aabfcc53d7f6ac0d121201076d7021a7d244b7cda316c3e3349e1b4da04cca31f2e3ca7605a9357895374fce0cce076b40eaebfc29a94d42fb38f
diff --git a/dev-libs/dqlite/dqlite-1.7.0.ebuild b/dev-libs/dqlite/dqlite-1.7.0.ebuild
deleted file mode 100644
index 68b083517b5..00000000000
--- a/dev-libs/dqlite/dqlite-1.7.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2020-2021 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://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"
-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
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2021-08-09 14:26 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2021-08-09 14:26 UTC (permalink / raw
To: gentoo-commits
commit: f2474ecd82bc34e97bb63d2d47147ee9c38852a1
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 9 14:17:07 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Aug 9 14:25:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2474ecd
dev-libs/dqlite: add 1.9.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 +
dev-libs/dqlite/dqlite-1.9.0.ebuild | 42 +++++++++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 96940cae2cb..4b9f039f0bf 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1 +1,2 @@
DIST dqlite-1.8.0.tar.gz 158026 BLAKE2B 0e3bc8badf6b7e0447eebd86069785dca51c4dfda527ee7b838da971830ad65e443c130484b25c901aee5ac4e14c81df84756734aac3fd58a2fdbc67a664c1fb SHA512 4b32a8f8414aabfcc53d7f6ac0d121201076d7021a7d244b7cda316c3e3349e1b4da04cca31f2e3ca7605a9357895374fce0cce076b40eaebfc29a94d42fb38f
+DIST dqlite-1.9.0.tar.gz 160222 BLAKE2B 7a6179e87ff8e37d19ab28a11bcd02531297095f83fffc936aa8b719be737cbba359b62daeea8de6d4bc599a4bf579a3471ab632fae27186d5f2358324b518df SHA512 eeb759cdca6ef44d3c8d7d032b277dab57c24acfab29ead218aecf826c71631fad22244cadcea7337002049857a8b5cb3b5dcd39d611e41a463128e1e09472e3
diff --git a/dev-libs/dqlite/dqlite-1.9.0.ebuild b/dev-libs/dqlite/dqlite-1.9.0.ebuild
new file mode 100644
index 00000000000..f28db5e9d75
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.9.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2020-2021 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"
+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-0.11.1[lz4,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
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2021-09-09 11:30 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2021-09-09 11:30 UTC (permalink / raw
To: gentoo-commits
commit: 9da5e2b63afaf21865e1d2a643ffa06575bc90f9
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 9 10:08:50 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Sep 9 11:24:41 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9da5e2b6
dev-libs/dqlite: stabilize 1.9.0 for amd64
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.9.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.9.0.ebuild b/dev-libs/dqlite/dqlite-1.9.0.ebuild
index e0808b1cb63..12f608ba676 100644
--- a/dev-libs/dqlite/dqlite-1.9.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.9.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2021-09-09 11:30 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2021-09-09 11:30 UTC (permalink / raw
To: gentoo-commits
commit: 102485409ad13089cbef6ab882655e7ea18ff9f7
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 9 10:08:32 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Sep 9 11:24:41 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10248540
dev-libs/dqlite: add missing subslot binder
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.9.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.9.0.ebuild b/dev-libs/dqlite/dqlite-1.9.0.ebuild
index f28db5e9d75..e0808b1cb63 100644
--- a/dev-libs/dqlite/dqlite-1.9.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.9.0.ebuild
@@ -16,7 +16,7 @@ IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="dev-db/sqlite:3
- dev-libs/libuv
+ dev-libs/libuv:=
dev-libs/raft"
DEPEND="${RDEPEND}
test? ( >=dev-libs/raft-0.11.1[lz4,test] )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2021-09-10 5:42 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2021-09-10 5:42 UTC (permalink / raw
To: gentoo-commits
commit: 7c246e37c7f08ee0201594d02187c4c64543498a
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 10 05:42:28 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Sep 10 05:42:28 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c246e37
dev-libs/dqlite: drop 1.8.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.8.0.ebuild | 42 -------------------------------------
2 files changed, 43 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 4b9f039f0bf..190766812fe 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1 @@
-DIST dqlite-1.8.0.tar.gz 158026 BLAKE2B 0e3bc8badf6b7e0447eebd86069785dca51c4dfda527ee7b838da971830ad65e443c130484b25c901aee5ac4e14c81df84756734aac3fd58a2fdbc67a664c1fb SHA512 4b32a8f8414aabfcc53d7f6ac0d121201076d7021a7d244b7cda316c3e3349e1b4da04cca31f2e3ca7605a9357895374fce0cce076b40eaebfc29a94d42fb38f
DIST dqlite-1.9.0.tar.gz 160222 BLAKE2B 7a6179e87ff8e37d19ab28a11bcd02531297095f83fffc936aa8b719be737cbba359b62daeea8de6d4bc599a4bf579a3471ab632fae27186d5f2358324b518df SHA512 eeb759cdca6ef44d3c8d7d032b277dab57c24acfab29ead218aecf826c71631fad22244cadcea7337002049857a8b5cb3b5dcd39d611e41a463128e1e09472e3
diff --git a/dev-libs/dqlite/dqlite-1.8.0.ebuild b/dev-libs/dqlite/dqlite-1.8.0.ebuild
deleted file mode 100644
index c59ef97f9b9..00000000000
--- a/dev-libs/dqlite/dqlite-1.8.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2020-2021 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://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"
-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-0.11.1[lz4,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
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2021-10-04 5:40 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2021-10-04 5:40 UTC (permalink / raw
To: gentoo-commits
commit: 4c0d7b571a4008e4f8a7472d7259244d786186f5
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 4 05:27:14 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Oct 4 05:40:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c0d7b57
dev-libs/dqlite: keyword 1.9.0 for ~x86
Bug: https://bugs.gentoo.org/816039
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.9.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.9.0.ebuild b/dev-libs/dqlite/dqlite-1.9.0.ebuild
index 12f608ba676..d40d3cf1073 100644
--- a/dev-libs/dqlite/dqlite-1.9.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.9.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0"
-KEYWORDS="amd64 ~arm64"
+KEYWORDS="amd64 ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2022-02-14 9:07 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2022-02-14 9:07 UTC (permalink / raw
To: gentoo-commits
commit: bdbbbe5479959d2a4273e30edf1e7f088757d3c0
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 14 09:06:32 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Feb 14 09:07:26 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdbbbe54
dev-libs/dqlite: add 1.9.1
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 +
dev-libs/dqlite/dqlite-1.9.1.ebuild | 42 +++++++++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 190766812fe6..7ede42f46ab9 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1 +1,2 @@
DIST dqlite-1.9.0.tar.gz 160222 BLAKE2B 7a6179e87ff8e37d19ab28a11bcd02531297095f83fffc936aa8b719be737cbba359b62daeea8de6d4bc599a4bf579a3471ab632fae27186d5f2358324b518df SHA512 eeb759cdca6ef44d3c8d7d032b277dab57c24acfab29ead218aecf826c71631fad22244cadcea7337002049857a8b5cb3b5dcd39d611e41a463128e1e09472e3
+DIST dqlite-1.9.1.tar.gz 165507 BLAKE2B 275ad91e99335c311c55a51a2228d5674fe79ba2e0b4d1fbb00b62134cd2130c1131fefcde71985cb2a4c90b706ba7f9048818f0711e762f1437f0c263ed1927 SHA512 996767bfdcc4dd5f360b71b16c99b16c6dd3c630cc87746de2df6fc6e74dcdd4ecb8223097f5d85b9c78a4856440c83d3b067f6681f26487a88bb4f511cfe41c
diff --git a/dev-libs/dqlite/dqlite-1.9.1.ebuild b/dev-libs/dqlite/dqlite-1.9.1.ebuild
new file mode 100644
index 000000000000..67f811b7c29d
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.9.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2020-2022 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"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-db/sqlite:3
+ dev-libs/libuv:=
+ dev-libs/raft"
+DEPEND="${RDEPEND}
+ test? ( >=dev-libs/raft-0.11.1[lz4,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
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2022-03-20 6:22 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2022-03-20 6:22 UTC (permalink / raw
To: gentoo-commits
commit: 121e98fae6ea0a557afb77e3275e7cdc30d66c1e
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 06:17:52 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 06:17:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=121e98fa
dev-libs/dqlite: stabilize 1.9.1 for amd64
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.9.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.9.1.ebuild b/dev-libs/dqlite/dqlite-1.9.1.ebuild
index 67f811b7c29d..395d8b3d6964 100644
--- a/dev-libs/dqlite/dqlite-1.9.1.ebuild
+++ b/dev-libs/dqlite/dqlite-1.9.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2022-04-14 8:54 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2022-04-14 8:54 UTC (permalink / raw
To: gentoo-commits
commit: 6b299be23c290f5d771e8492f938d3a5df5afa4c
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 14 08:33:52 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Apr 14 08:54:34 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b299be2
dev-libs/dqlite: add 1.10.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 +
dev-libs/dqlite/dqlite-1.10.0.ebuild | 42 ++++++++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 7ede42f46ab9..3e42485e3aee 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1,3 @@
+DIST dqlite-1.10.0.tar.gz 170908 BLAKE2B b65cd39a4eb175a016934a174f27043ff1e9fc5404f5324030ddadf15567390edb6388e42b83ab76a0d1d3262343f8a4407d7756b85af30cf281a4b5076f87cd SHA512 f7364d968d0d2aef0bbd59f55bb7f775b41d509b0d1af106357bdb470703e143081649742870491e5c75760d3f6159568395b4a671c446a26df744fd4f631d33
DIST dqlite-1.9.0.tar.gz 160222 BLAKE2B 7a6179e87ff8e37d19ab28a11bcd02531297095f83fffc936aa8b719be737cbba359b62daeea8de6d4bc599a4bf579a3471ab632fae27186d5f2358324b518df SHA512 eeb759cdca6ef44d3c8d7d032b277dab57c24acfab29ead218aecf826c71631fad22244cadcea7337002049857a8b5cb3b5dcd39d611e41a463128e1e09472e3
DIST dqlite-1.9.1.tar.gz 165507 BLAKE2B 275ad91e99335c311c55a51a2228d5674fe79ba2e0b4d1fbb00b62134cd2130c1131fefcde71985cb2a4c90b706ba7f9048818f0711e762f1437f0c263ed1927 SHA512 996767bfdcc4dd5f360b71b16c99b16c6dd3c630cc87746de2df6fc6e74dcdd4ecb8223097f5d85b9c78a4856440c83d3b067f6681f26487a88bb4f511cfe41c
diff --git a/dev-libs/dqlite/dqlite-1.10.0.ebuild b/dev-libs/dqlite/dqlite-1.10.0.ebuild
new file mode 100644
index 000000000000..a3fe7ae6c8ba
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.10.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2020-2022 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"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-db/sqlite:3
+ dev-libs/libuv:=
+ >=dev-libs/raft-0.13.0"
+DEPEND="${RDEPEND}
+ test? ( >=dev-libs/raft-0.13.0[lz4,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
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2022-04-14 11:51 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2022-04-14 11:51 UTC (permalink / raw
To: gentoo-commits
commit: 8a41ecca3e8e8a948c7f661bfe0b4a977cae4a4a
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 14 11:49:35 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Apr 14 11:51:23 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a41ecca
dev-libs/dqlite: drop 1.9.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.9.0.ebuild | 42 -------------------------------------
2 files changed, 43 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 3e42485e3aee..df423f7e5e92 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,3 +1,2 @@
DIST dqlite-1.10.0.tar.gz 170908 BLAKE2B b65cd39a4eb175a016934a174f27043ff1e9fc5404f5324030ddadf15567390edb6388e42b83ab76a0d1d3262343f8a4407d7756b85af30cf281a4b5076f87cd SHA512 f7364d968d0d2aef0bbd59f55bb7f775b41d509b0d1af106357bdb470703e143081649742870491e5c75760d3f6159568395b4a671c446a26df744fd4f631d33
-DIST dqlite-1.9.0.tar.gz 160222 BLAKE2B 7a6179e87ff8e37d19ab28a11bcd02531297095f83fffc936aa8b719be737cbba359b62daeea8de6d4bc599a4bf579a3471ab632fae27186d5f2358324b518df SHA512 eeb759cdca6ef44d3c8d7d032b277dab57c24acfab29ead218aecf826c71631fad22244cadcea7337002049857a8b5cb3b5dcd39d611e41a463128e1e09472e3
DIST dqlite-1.9.1.tar.gz 165507 BLAKE2B 275ad91e99335c311c55a51a2228d5674fe79ba2e0b4d1fbb00b62134cd2130c1131fefcde71985cb2a4c90b706ba7f9048818f0711e762f1437f0c263ed1927 SHA512 996767bfdcc4dd5f360b71b16c99b16c6dd3c630cc87746de2df6fc6e74dcdd4ecb8223097f5d85b9c78a4856440c83d3b067f6681f26487a88bb4f511cfe41c
diff --git a/dev-libs/dqlite/dqlite-1.9.0.ebuild b/dev-libs/dqlite/dqlite-1.9.0.ebuild
deleted file mode 100644
index d40d3cf1073e..000000000000
--- a/dev-libs/dqlite/dqlite-1.9.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2020-2021 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"
-KEYWORDS="amd64 ~arm64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-db/sqlite:3
- dev-libs/libuv:=
- dev-libs/raft"
-DEPEND="${RDEPEND}
- test? ( >=dev-libs/raft-0.11.1[lz4,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
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2022-05-16 14:26 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2022-05-16 14:26 UTC (permalink / raw
To: gentoo-commits
commit: 00998b0a772f25df53256339b46311cbcddcb219
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon May 16 14:25:51 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon May 16 14:26:17 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00998b0a
dev-libs/dqlite: stabilize 1.10.0 for amd64
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.10.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.10.0.ebuild b/dev-libs/dqlite/dqlite-1.10.0.ebuild
index a3fe7ae6c8ba..44327746b8db 100644
--- a/dev-libs/dqlite/dqlite-1.10.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.10.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2022-06-04 7:07 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2022-06-04 7:07 UTC (permalink / raw
To: gentoo-commits
commit: 6b919770b8a0403729cef524aa9a70886ba0bb17
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 4 06:03:34 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Jun 4 07:07:49 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b919770
dev-libs/dqlite: drop 1.9.1
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.9.1.ebuild | 42 -------------------------------------
2 files changed, 43 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index df423f7e5e92..7f9c6c025d31 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1 @@
DIST dqlite-1.10.0.tar.gz 170908 BLAKE2B b65cd39a4eb175a016934a174f27043ff1e9fc5404f5324030ddadf15567390edb6388e42b83ab76a0d1d3262343f8a4407d7756b85af30cf281a4b5076f87cd SHA512 f7364d968d0d2aef0bbd59f55bb7f775b41d509b0d1af106357bdb470703e143081649742870491e5c75760d3f6159568395b4a671c446a26df744fd4f631d33
-DIST dqlite-1.9.1.tar.gz 165507 BLAKE2B 275ad91e99335c311c55a51a2228d5674fe79ba2e0b4d1fbb00b62134cd2130c1131fefcde71985cb2a4c90b706ba7f9048818f0711e762f1437f0c263ed1927 SHA512 996767bfdcc4dd5f360b71b16c99b16c6dd3c630cc87746de2df6fc6e74dcdd4ecb8223097f5d85b9c78a4856440c83d3b067f6681f26487a88bb4f511cfe41c
diff --git a/dev-libs/dqlite/dqlite-1.9.1.ebuild b/dev-libs/dqlite/dqlite-1.9.1.ebuild
deleted file mode 100644
index 395d8b3d6964..000000000000
--- a/dev-libs/dqlite/dqlite-1.9.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2020-2022 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"
-KEYWORDS="amd64 ~arm64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-db/sqlite:3
- dev-libs/libuv:=
- dev-libs/raft"
-DEPEND="${RDEPEND}
- test? ( >=dev-libs/raft-0.11.1[lz4,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
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2022-07-14 5:30 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2022-07-14 5:30 UTC (permalink / raw
To: gentoo-commits
commit: 30ae7095d5a0ec034e15fdca9c1751470eba4d59
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 14 05:22:30 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Jul 14 05:22:30 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30ae7095
dev-libs/dqlite: add 1.11.1
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 +
dev-libs/dqlite/dqlite-1.11.1.ebuild | 43 ++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 654f5d084722..dec762cdfdc7 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1,3 @@
DIST dqlite-1.10.0.tar.gz 170908 BLAKE2B b65cd39a4eb175a016934a174f27043ff1e9fc5404f5324030ddadf15567390edb6388e42b83ab76a0d1d3262343f8a4407d7756b85af30cf281a4b5076f87cd SHA512 f7364d968d0d2aef0bbd59f55bb7f775b41d509b0d1af106357bdb470703e143081649742870491e5c75760d3f6159568395b4a671c446a26df744fd4f631d33
DIST dqlite-1.11.0.tar.gz 172030 BLAKE2B 2626f73f351abeedfed686838c9f74edd94b6fecb5fa61e5b90c86b37582975d86e42ebbb61934121912e1356f30a545e3fcc2236b5c5d5d4eee82b6412e0aaa SHA512 0dbd07bc3ccbb889d6b3a5fbf9e7658caeffe652666d819c1291420d1a18aa0c2e382dcc8bb3910f7d2d184b7e3a09d6ac557bf9400120712c2e6e2e41006dc8
+DIST dqlite-1.11.1.tar.gz 172024 BLAKE2B 48fb3c4eebc1f1a2d341254f9f0ad01f871b65fac727b132b80ac59eceb7d1ab95ac6118549ab39c8b032053a8791d6abef5e0d4856da7e45f00939b083463e5 SHA512 64d9a6548a4d75e3045adf5e31d54c508a02b255573225d32119225260c3d5219c4ac29c857ba054cd3fa3df54ee81cf88bbc2f9769839902f63f0f8c02cc6c7
diff --git a/dev-libs/dqlite/dqlite-1.11.1.ebuild b/dev-libs/dqlite/dqlite-1.11.1.ebuild
new file mode 100644
index 000000000000..0fd028b1b373
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.11.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020-2022 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"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-db/sqlite:3
+ dev-libs/libuv:=
+ >=dev-libs/raft-0.14.0"
+DEPEND="${RDEPEND}
+ test? ( >=dev-libs/raft-0.13.0[lz4,test] )"
+BDEPEND="virtual/pkgconfig"
+
+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
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2022-08-16 7:55 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2022-08-16 7:55 UTC (permalink / raw
To: gentoo-commits
commit: 66508216cbbca25f06225033bb435cef716cac42
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 16 07:54:03 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Aug 16 07:55:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66508216
dev-libs/dqlite: stabilize 1.11.1 for amd64
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.11.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.11.1.ebuild b/dev-libs/dqlite/dqlite-1.11.1.ebuild
index 0fd028b1b373..dc59dea20346 100644
--- a/dev-libs/dqlite/dqlite-1.11.1.ebuild
+++ b/dev-libs/dqlite/dqlite-1.11.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2022-08-24 7:02 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2022-08-24 7:02 UTC (permalink / raw
To: gentoo-commits
commit: 009804b2da4d72eca2db9ceeb3459e066b975659
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 24 05:26:26 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Aug 24 07:02:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=009804b2
dev-libs/dqlite: drop 1.10.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.10.0.ebuild | 42 ------------------------------------
2 files changed, 43 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 8027e6e12b81..d9c19d867d19 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1 @@
-DIST dqlite-1.10.0.tar.gz 170908 BLAKE2B b65cd39a4eb175a016934a174f27043ff1e9fc5404f5324030ddadf15567390edb6388e42b83ab76a0d1d3262343f8a4407d7756b85af30cf281a4b5076f87cd SHA512 f7364d968d0d2aef0bbd59f55bb7f775b41d509b0d1af106357bdb470703e143081649742870491e5c75760d3f6159568395b4a671c446a26df744fd4f631d33
DIST dqlite-1.11.1.tar.gz 172024 BLAKE2B 48fb3c4eebc1f1a2d341254f9f0ad01f871b65fac727b132b80ac59eceb7d1ab95ac6118549ab39c8b032053a8791d6abef5e0d4856da7e45f00939b083463e5 SHA512 64d9a6548a4d75e3045adf5e31d54c508a02b255573225d32119225260c3d5219c4ac29c857ba054cd3fa3df54ee81cf88bbc2f9769839902f63f0f8c02cc6c7
diff --git a/dev-libs/dqlite/dqlite-1.10.0.ebuild b/dev-libs/dqlite/dqlite-1.10.0.ebuild
deleted file mode 100644
index 44327746b8db..000000000000
--- a/dev-libs/dqlite/dqlite-1.10.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2020-2022 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"
-KEYWORDS="amd64 ~arm64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-db/sqlite:3
- dev-libs/libuv:=
- >=dev-libs/raft-0.13.0"
-DEPEND="${RDEPEND}
- test? ( >=dev-libs/raft-0.13.0[lz4,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
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2022-11-19 7:37 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2022-11-19 7:37 UTC (permalink / raw
To: gentoo-commits
commit: 214ce5bae41d223818d241e9aa4b07c89bd7d41a
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 19 07:34:59 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Nov 19 07:34:59 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=214ce5ba
dev-libs/dqlite: add subslot
- ABI: libdqlite.so.0(64) func(+1) vars(-1) [BREAKING]
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.12.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.12.0.ebuild b/dev-libs/dqlite/dqlite-1.12.0.ebuild
index 4ca71ad7217d..59ce7c3bdc58 100644
--- a/dev-libs/dqlite/dqlite-1.12.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.12.0.ebuild
@@ -10,7 +10,7 @@ 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"
+SLOT="0/1.12.0"
KEYWORDS="~amd64 ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2022-12-13 14:25 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2022-12-13 14:25 UTC (permalink / raw
To: gentoo-commits
commit: e7f23813dc4db72e495a8ae24cffec2d810ef95f
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 13 14:23:30 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Dec 13 14:25:12 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7f23813
dev-libs/dqlite: add 1.13.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 +
dev-libs/dqlite/dqlite-1.13.0.ebuild | 46 ++++++++++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index bb84b8985d3f..6fe89ca3ae8f 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1,3 @@
DIST dqlite-1.11.1.tar.gz 172024 BLAKE2B 48fb3c4eebc1f1a2d341254f9f0ad01f871b65fac727b132b80ac59eceb7d1ab95ac6118549ab39c8b032053a8791d6abef5e0d4856da7e45f00939b083463e5 SHA512 64d9a6548a4d75e3045adf5e31d54c508a02b255573225d32119225260c3d5219c4ac29c857ba054cd3fa3df54ee81cf88bbc2f9769839902f63f0f8c02cc6c7
DIST dqlite-1.12.0.tar.gz 181709 BLAKE2B efb35aa9d0c348cd55eb190e27ad155b7d748ccbcb80822f33ce4589d56bc0090f5c0703d769e7090bb8da1b8908cbd73d1076568108661d5b85e55103795a9f SHA512 2a3dc17fcaa0ec2fc5481d3ff57a7bee42c8930f0e6ac7030d51e1a61ae3ce4d7b24f47921b29602a65353c1a51931a82d9af302ee580b19bdce561e6547e940
+DIST dqlite-1.13.0.tar.gz 190627 BLAKE2B 02880a112a7b070ee19653b60f19dbb49030b1d0d1bd3671577137ce281fd1af9c135f138d692fcc1c14592972cc9321198b3a2003fa0e81829c8ae462604964 SHA512 da56c622c75dcdc1df814d2b7acfeb08cb046fa7b74691d63575ddb3d30f91b441b8f58cc72466872b4c5e0028706b6505846d8f3d06583be844baefdd85f8a9
diff --git a/dev-libs/dqlite/dqlite-1.13.0.ebuild b/dev-libs/dqlite/dqlite-1.13.0.ebuild
new file mode 100644
index 000000000000..8a73c0b76fbb
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.13.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2020-2022 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.12.0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-db/sqlite:3
+ dev-libs/libuv:=
+ >=dev-libs/raft-0.16.0"
+DEPEND="${RDEPEND}
+ test? ( >=dev-libs/raft-0.13.0[lz4,test] )"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}"/dqlite-1.12.0-disable-werror.patch )
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-backtrace
+ --disable-debug
+ --disable-sanitize
+ --disable-static
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2022-12-13 14:25 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2022-12-13 14:25 UTC (permalink / raw
To: gentoo-commits
commit: 02b41bb36fd29d4f1a847c9f81425943ffeca31c
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 13 14:24:56 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Dec 13 14:25:12 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02b41bb3
dev-libs/dqlite: add github upstream metadata
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/dev-libs/dqlite/metadata.xml b/dev-libs/dqlite/metadata.xml
index 2a8b8beafdf7..93aa9821db98 100644
--- a/dev-libs/dqlite/metadata.xml
+++ b/dev-libs/dqlite/metadata.xml
@@ -18,4 +18,7 @@
instances of your application and have them act as a highly-available
cluster, with no dependency on external databases.
</longdescription>
+ <upstream>
+ <remote-id type="github">canonical/dqlite</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-01-04 13:51 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-01-04 13:51 UTC (permalink / raw
To: gentoo-commits
commit: 9d07bff102bf69fe82c9a564109c97bdc75c2ba3
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 4 13:49:03 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Jan 4 13:49:03 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d07bff1
dev-libs/dqlite: stabilize 1.12.0 for amd64
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.12.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/dqlite/dqlite-1.12.0.ebuild b/dev-libs/dqlite/dqlite-1.12.0.ebuild
index 59ce7c3bdc58..41df3ee6e01f 100644
--- a/dev-libs/dqlite/dqlite-1.12.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.12.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2022 Gentoo Authors
+# Copyright 2020-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0/1.12.0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-01-09 12:51 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-01-09 12:51 UTC (permalink / raw
To: gentoo-commits
commit: b344a716a983d772faf6809dd174fb38009c6695
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 9 12:50:00 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Jan 9 12:50:00 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b344a716
dev-libs/dqlite: drop 1.11.1
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.11.1.ebuild | 43 ------------------------------------
2 files changed, 44 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 6fe89ca3ae8f..6fa334f8d95d 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,3 +1,2 @@
-DIST dqlite-1.11.1.tar.gz 172024 BLAKE2B 48fb3c4eebc1f1a2d341254f9f0ad01f871b65fac727b132b80ac59eceb7d1ab95ac6118549ab39c8b032053a8791d6abef5e0d4856da7e45f00939b083463e5 SHA512 64d9a6548a4d75e3045adf5e31d54c508a02b255573225d32119225260c3d5219c4ac29c857ba054cd3fa3df54ee81cf88bbc2f9769839902f63f0f8c02cc6c7
DIST dqlite-1.12.0.tar.gz 181709 BLAKE2B efb35aa9d0c348cd55eb190e27ad155b7d748ccbcb80822f33ce4589d56bc0090f5c0703d769e7090bb8da1b8908cbd73d1076568108661d5b85e55103795a9f SHA512 2a3dc17fcaa0ec2fc5481d3ff57a7bee42c8930f0e6ac7030d51e1a61ae3ce4d7b24f47921b29602a65353c1a51931a82d9af302ee580b19bdce561e6547e940
DIST dqlite-1.13.0.tar.gz 190627 BLAKE2B 02880a112a7b070ee19653b60f19dbb49030b1d0d1bd3671577137ce281fd1af9c135f138d692fcc1c14592972cc9321198b3a2003fa0e81829c8ae462604964 SHA512 da56c622c75dcdc1df814d2b7acfeb08cb046fa7b74691d63575ddb3d30f91b441b8f58cc72466872b4c5e0028706b6505846d8f3d06583be844baefdd85f8a9
diff --git a/dev-libs/dqlite/dqlite-1.11.1.ebuild b/dev-libs/dqlite/dqlite-1.11.1.ebuild
deleted file mode 100644
index dc59dea20346..000000000000
--- a/dev-libs/dqlite/dqlite-1.11.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2020-2022 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"
-KEYWORDS="amd64 ~arm64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-db/sqlite:3
- dev-libs/libuv:=
- >=dev-libs/raft-0.14.0"
-DEPEND="${RDEPEND}
- test? ( >=dev-libs/raft-0.13.0[lz4,test] )"
-BDEPEND="virtual/pkgconfig"
-
-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
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-01-15 7:11 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-01-15 7:11 UTC (permalink / raw
To: gentoo-commits
commit: fbbd8fb9cc592333591e0ea5a1054352dc856274
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 15 06:42:20 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jan 15 07:11:25 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbbd8fb9
dev-libs/dqlite: stabilize 1.13.0 for amd64
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.13.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/dqlite/dqlite-1.13.0.ebuild b/dev-libs/dqlite/dqlite-1.13.0.ebuild
index 8a73c0b76fbb..5dc934b5faf6 100644
--- a/dev-libs/dqlite/dqlite-1.13.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.13.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2022 Gentoo Authors
+# Copyright 2020-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0/1.12.0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-01-19 15:10 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-01-19 15:10 UTC (permalink / raw
To: gentoo-commits
commit: 8485eadf221e598551f90ac4d08ba31154576cb6
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 19 13:14:14 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Jan 19 15:10:20 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8485eadf
dev-libs/dqlite: add 1.14.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 +
dev-libs/dqlite/dqlite-1.14.0.ebuild | 49 ++++++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 6fa334f8d95d..a3d8ddaf0452 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1,3 @@
DIST dqlite-1.12.0.tar.gz 181709 BLAKE2B efb35aa9d0c348cd55eb190e27ad155b7d748ccbcb80822f33ce4589d56bc0090f5c0703d769e7090bb8da1b8908cbd73d1076568108661d5b85e55103795a9f SHA512 2a3dc17fcaa0ec2fc5481d3ff57a7bee42c8930f0e6ac7030d51e1a61ae3ce4d7b24f47921b29602a65353c1a51931a82d9af302ee580b19bdce561e6547e940
DIST dqlite-1.13.0.tar.gz 190627 BLAKE2B 02880a112a7b070ee19653b60f19dbb49030b1d0d1bd3671577137ce281fd1af9c135f138d692fcc1c14592972cc9321198b3a2003fa0e81829c8ae462604964 SHA512 da56c622c75dcdc1df814d2b7acfeb08cb046fa7b74691d63575ddb3d30f91b441b8f58cc72466872b4c5e0028706b6505846d8f3d06583be844baefdd85f8a9
+DIST dqlite-1.14.0.tar.gz 190757 BLAKE2B 5304ff10134c7775c4475f77bbe60cc6892cc35c3f2a7b4813743cd27fc1176a1d513d66ebf22b47ed7e83fa833be1408f44f781fbd8200bfd3f4465ea1d6011 SHA512 4305b289903766f00c26e278cce3f761c778b67105a6d7e51e66cc1cbf85564fd41f27689b6895c6f182968d851e10a40d052570d55e22007e9eb5c2929dabd9
diff --git a/dev-libs/dqlite/dqlite-1.14.0.ebuild b/dev-libs/dqlite/dqlite-1.14.0.ebuild
new file mode 100644
index 000000000000..c0cbc911e373
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.14.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2020-2023 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.12.0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-db/sqlite:3
+ dev-libs/libuv:=
+ >=dev-libs/raft-0.17.1:="
+DEPEND="${RDEPEND}
+ test? ( >=dev-libs/raft-0.13.0[lz4,test] )"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}"/dqlite-1.12.0-disable-werror.patch )
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-backtrace
+ --disable-debug
+ --disable-sanitize
+ --disable-static
+
+ # Will build a bundled libsqlite3.so.
+ --enable-build-sqlite=no
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-01-22 7:24 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-01-22 7:24 UTC (permalink / raw
To: gentoo-commits
commit: c874c4bc1fade10b14a83066de4adc3ace0015d2
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 22 07:21:32 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jan 22 07:24:38 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c874c4bc
dev-libs/dqlite: drop 1.12.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.12.0.ebuild | 45 ------------------------------------
2 files changed, 46 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index a3d8ddaf0452..dbfef5c8a9ce 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,3 +1,2 @@
-DIST dqlite-1.12.0.tar.gz 181709 BLAKE2B efb35aa9d0c348cd55eb190e27ad155b7d748ccbcb80822f33ce4589d56bc0090f5c0703d769e7090bb8da1b8908cbd73d1076568108661d5b85e55103795a9f SHA512 2a3dc17fcaa0ec2fc5481d3ff57a7bee42c8930f0e6ac7030d51e1a61ae3ce4d7b24f47921b29602a65353c1a51931a82d9af302ee580b19bdce561e6547e940
DIST dqlite-1.13.0.tar.gz 190627 BLAKE2B 02880a112a7b070ee19653b60f19dbb49030b1d0d1bd3671577137ce281fd1af9c135f138d692fcc1c14592972cc9321198b3a2003fa0e81829c8ae462604964 SHA512 da56c622c75dcdc1df814d2b7acfeb08cb046fa7b74691d63575ddb3d30f91b441b8f58cc72466872b4c5e0028706b6505846d8f3d06583be844baefdd85f8a9
DIST dqlite-1.14.0.tar.gz 190757 BLAKE2B 5304ff10134c7775c4475f77bbe60cc6892cc35c3f2a7b4813743cd27fc1176a1d513d66ebf22b47ed7e83fa833be1408f44f781fbd8200bfd3f4465ea1d6011 SHA512 4305b289903766f00c26e278cce3f761c778b67105a6d7e51e66cc1cbf85564fd41f27689b6895c6f182968d851e10a40d052570d55e22007e9eb5c2929dabd9
diff --git a/dev-libs/dqlite/dqlite-1.12.0.ebuild b/dev-libs/dqlite/dqlite-1.12.0.ebuild
deleted file mode 100644
index 41df3ee6e01f..000000000000
--- a/dev-libs/dqlite/dqlite-1.12.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 2020-2023 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.12.0"
-KEYWORDS="amd64 ~arm64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-db/sqlite:3
- dev-libs/libuv:=
- >=dev-libs/raft-0.14.0"
-DEPEND="${RDEPEND}
- test? ( >=dev-libs/raft-0.13.0[lz4,test] )"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/dqlite-1.12.0-disable-werror.patch )
-
-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
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-02-20 8:06 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-02-20 8:06 UTC (permalink / raw
To: gentoo-commits
commit: cea10441da307d36a0411093a9bf96cf52011272
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 20 07:31:32 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Feb 20 08:06:33 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cea10441
dev-libs/dqlite: stabilize 1.14.0 for amd64
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.14.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.14.0.ebuild b/dev-libs/dqlite/dqlite-1.14.0.ebuild
index c0cbc911e373..2c927cf8dd44 100644
--- a/dev-libs/dqlite/dqlite-1.14.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.14.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0/1.12.0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-02-22 7:14 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-02-22 7:14 UTC (permalink / raw
To: gentoo-commits
commit: 59d4decf8c80dd4e853a200c28ac15bc2753d364
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 22 07:12:10 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Feb 22 07:12:10 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59d4decf
dev-libs/dqlite: drop 1.13.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.13.0.ebuild | 46 ------------------------------------
2 files changed, 47 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index dbfef5c8a9ce..7f512103afb5 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1 @@
-DIST dqlite-1.13.0.tar.gz 190627 BLAKE2B 02880a112a7b070ee19653b60f19dbb49030b1d0d1bd3671577137ce281fd1af9c135f138d692fcc1c14592972cc9321198b3a2003fa0e81829c8ae462604964 SHA512 da56c622c75dcdc1df814d2b7acfeb08cb046fa7b74691d63575ddb3d30f91b441b8f58cc72466872b4c5e0028706b6505846d8f3d06583be844baefdd85f8a9
DIST dqlite-1.14.0.tar.gz 190757 BLAKE2B 5304ff10134c7775c4475f77bbe60cc6892cc35c3f2a7b4813743cd27fc1176a1d513d66ebf22b47ed7e83fa833be1408f44f781fbd8200bfd3f4465ea1d6011 SHA512 4305b289903766f00c26e278cce3f761c778b67105a6d7e51e66cc1cbf85564fd41f27689b6895c6f182968d851e10a40d052570d55e22007e9eb5c2929dabd9
diff --git a/dev-libs/dqlite/dqlite-1.13.0.ebuild b/dev-libs/dqlite/dqlite-1.13.0.ebuild
deleted file mode 100644
index 5dc934b5faf6..000000000000
--- a/dev-libs/dqlite/dqlite-1.13.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2020-2023 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.12.0"
-KEYWORDS="amd64 ~arm64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-db/sqlite:3
- dev-libs/libuv:=
- >=dev-libs/raft-0.16.0"
-DEPEND="${RDEPEND}
- test? ( >=dev-libs/raft-0.13.0[lz4,test] )"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/dqlite-1.12.0-disable-werror.patch )
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-backtrace
- --disable-debug
- --disable-sanitize
- --disable-static
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-06-13 12:48 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-06-13 12:48 UTC (permalink / raw
To: gentoo-commits
commit: cf2767206797cffc6472441fd0750ab717d8bd65
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 13 12:27:31 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Jun 13 12:48:41 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf276720
dev-libs/dqlite: add 1.15.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 +
dev-libs/dqlite/dqlite-1.15.0.ebuild | 49 ++++++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 7f512103afb5..2def6222d86c 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1 +1,2 @@
DIST dqlite-1.14.0.tar.gz 190757 BLAKE2B 5304ff10134c7775c4475f77bbe60cc6892cc35c3f2a7b4813743cd27fc1176a1d513d66ebf22b47ed7e83fa833be1408f44f781fbd8200bfd3f4465ea1d6011 SHA512 4305b289903766f00c26e278cce3f761c778b67105a6d7e51e66cc1cbf85564fd41f27689b6895c6f182968d851e10a40d052570d55e22007e9eb5c2929dabd9
+DIST dqlite-1.15.0.tar.gz 208833 BLAKE2B 41d2fced65c787381300aed1d0ee2393dc9e7aa371acd7efbee0744e00fed8a6ee7175eb3041f9cd198c1f0beef8951984e2a34646cbc069ea9d35753ba7568c SHA512 413f5aa7ad9d990638c6ffbdf5706ec69635ead0ad21314603b3c997608c696bd294bd5d15c092d1619509fc4d51c4038deaec82bd82cbbd4070f4a4020f9cc4
diff --git a/dev-libs/dqlite/dqlite-1.15.0.ebuild b/dev-libs/dqlite/dqlite-1.15.0.ebuild
new file mode 100644
index 000000000000..7eae68fc19f4
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.15.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2020-2023 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.0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-db/sqlite:3
+ dev-libs/libuv:=
+ >=dev-libs/raft-0.17.1:="
+DEPEND="${RDEPEND}
+ test? ( >=dev-libs/raft-0.13.0[lz4,test] )"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}"/dqlite-1.12.0-disable-werror.patch )
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-backtrace
+ --disable-debug
+ --disable-sanitize
+ --disable-static
+
+ # Will build a bundled libsqlite3.so.
+ --enable-build-sqlite=no
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-06-15 12:14 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-06-15 12:14 UTC (permalink / raw
To: gentoo-commits
commit: 99ee20651f4616c247cf7d798380e1076c8798be
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 15 05:46:01 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Jun 15 12:11:58 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99ee2065
dev-libs/dqlite: add 1.15.1
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 +
dev-libs/dqlite/dqlite-1.15.1.ebuild | 49 ++++++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 2def6222d86c..d8710e891db7 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1,3 @@
DIST dqlite-1.14.0.tar.gz 190757 BLAKE2B 5304ff10134c7775c4475f77bbe60cc6892cc35c3f2a7b4813743cd27fc1176a1d513d66ebf22b47ed7e83fa833be1408f44f781fbd8200bfd3f4465ea1d6011 SHA512 4305b289903766f00c26e278cce3f761c778b67105a6d7e51e66cc1cbf85564fd41f27689b6895c6f182968d851e10a40d052570d55e22007e9eb5c2929dabd9
DIST dqlite-1.15.0.tar.gz 208833 BLAKE2B 41d2fced65c787381300aed1d0ee2393dc9e7aa371acd7efbee0744e00fed8a6ee7175eb3041f9cd198c1f0beef8951984e2a34646cbc069ea9d35753ba7568c SHA512 413f5aa7ad9d990638c6ffbdf5706ec69635ead0ad21314603b3c997608c696bd294bd5d15c092d1619509fc4d51c4038deaec82bd82cbbd4070f4a4020f9cc4
+DIST dqlite-1.15.1.tar.gz 216360 BLAKE2B 750c61616dfef548d7d96564f9c46765bbc4803b4af89e7df8573babe970ce05810fe11bb73dac9b98eb815016532c4ca20509b394a37e4143f5917fdd1b4a9b SHA512 3da0aa254747806f439eaf941cbe376d4376e0be351b39d9083c0d257f33750efef3210715b458f003e6a4508e248d3777c2584260e0e82ce10598ba9cfbe4d4
diff --git a/dev-libs/dqlite/dqlite-1.15.1.ebuild b/dev-libs/dqlite/dqlite-1.15.1.ebuild
new file mode 100644
index 000000000000..30514be29254
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.15.1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2020-2023 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="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-db/sqlite:3
+ dev-libs/libuv:=
+ >=dev-libs/raft-0.17.1:="
+DEPEND="${RDEPEND}
+ test? ( >=dev-libs/raft-0.13.0[lz4,test] )"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}"/dqlite-1.12.0-disable-werror.patch )
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-backtrace
+ --disable-debug
+ --disable-sanitize
+ --disable-static
+
+ # Will build a bundled libsqlite3.so.
+ --enable-build-sqlite=no
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-06-29 6:41 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-06-29 6:41 UTC (permalink / raw
To: gentoo-commits
commit: c65d55512383dd5ddb2fee76f868592b35dd6a79
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 29 06:01:38 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Jun 29 06:41:17 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c65d5551
dev-libs/dqlite: drop 1.15.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.15.0.ebuild | 49 ------------------------------------
2 files changed, 50 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index d8710e891db7..1ac259b77c3c 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,3 +1,2 @@
DIST dqlite-1.14.0.tar.gz 190757 BLAKE2B 5304ff10134c7775c4475f77bbe60cc6892cc35c3f2a7b4813743cd27fc1176a1d513d66ebf22b47ed7e83fa833be1408f44f781fbd8200bfd3f4465ea1d6011 SHA512 4305b289903766f00c26e278cce3f761c778b67105a6d7e51e66cc1cbf85564fd41f27689b6895c6f182968d851e10a40d052570d55e22007e9eb5c2929dabd9
-DIST dqlite-1.15.0.tar.gz 208833 BLAKE2B 41d2fced65c787381300aed1d0ee2393dc9e7aa371acd7efbee0744e00fed8a6ee7175eb3041f9cd198c1f0beef8951984e2a34646cbc069ea9d35753ba7568c SHA512 413f5aa7ad9d990638c6ffbdf5706ec69635ead0ad21314603b3c997608c696bd294bd5d15c092d1619509fc4d51c4038deaec82bd82cbbd4070f4a4020f9cc4
DIST dqlite-1.15.1.tar.gz 216360 BLAKE2B 750c61616dfef548d7d96564f9c46765bbc4803b4af89e7df8573babe970ce05810fe11bb73dac9b98eb815016532c4ca20509b394a37e4143f5917fdd1b4a9b SHA512 3da0aa254747806f439eaf941cbe376d4376e0be351b39d9083c0d257f33750efef3210715b458f003e6a4508e248d3777c2584260e0e82ce10598ba9cfbe4d4
diff --git a/dev-libs/dqlite/dqlite-1.15.0.ebuild b/dev-libs/dqlite/dqlite-1.15.0.ebuild
deleted file mode 100644
index 7eae68fc19f4..000000000000
--- a/dev-libs/dqlite/dqlite-1.15.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2020-2023 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.0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-db/sqlite:3
- dev-libs/libuv:=
- >=dev-libs/raft-0.17.1:="
-DEPEND="${RDEPEND}
- test? ( >=dev-libs/raft-0.13.0[lz4,test] )"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/dqlite-1.12.0-disable-werror.patch )
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-backtrace
- --disable-debug
- --disable-sanitize
- --disable-static
-
- # Will build a bundled libsqlite3.so.
- --enable-build-sqlite=no
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-07-16 6:56 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-07-16 6:56 UTC (permalink / raw
To: gentoo-commits
commit: 176f85ddbd313d46fee68812c72a252af35269be
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 16 06:44:41 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jul 16 06:56:56 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=176f85dd
dev-libs/dqlite: stabilize 1.15.1 for amd64
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.15.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.15.1.ebuild b/dev-libs/dqlite/dqlite-1.15.1.ebuild
index 30514be29254..45d4dc2f56c8 100644
--- a/dev-libs/dqlite/dqlite-1.15.1.ebuild
+++ b/dev-libs/dqlite/dqlite-1.15.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0/1.15.1"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-07-18 5:22 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-07-18 5:22 UTC (permalink / raw
To: gentoo-commits
commit: ee8e0fc159c97aaf9553ee716aa8a1985cf9ed50
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 18 05:12:06 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Jul 18 05:22:04 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee8e0fc1
dev-libs/dqlite: drop 1.14.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.14.0.ebuild | 49 ------------------------------------
2 files changed, 50 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 1ac259b77c3c..d587d44d3ecf 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1 @@
-DIST dqlite-1.14.0.tar.gz 190757 BLAKE2B 5304ff10134c7775c4475f77bbe60cc6892cc35c3f2a7b4813743cd27fc1176a1d513d66ebf22b47ed7e83fa833be1408f44f781fbd8200bfd3f4465ea1d6011 SHA512 4305b289903766f00c26e278cce3f761c778b67105a6d7e51e66cc1cbf85564fd41f27689b6895c6f182968d851e10a40d052570d55e22007e9eb5c2929dabd9
DIST dqlite-1.15.1.tar.gz 216360 BLAKE2B 750c61616dfef548d7d96564f9c46765bbc4803b4af89e7df8573babe970ce05810fe11bb73dac9b98eb815016532c4ca20509b394a37e4143f5917fdd1b4a9b SHA512 3da0aa254747806f439eaf941cbe376d4376e0be351b39d9083c0d257f33750efef3210715b458f003e6a4508e248d3777c2584260e0e82ce10598ba9cfbe4d4
diff --git a/dev-libs/dqlite/dqlite-1.14.0.ebuild b/dev-libs/dqlite/dqlite-1.14.0.ebuild
deleted file mode 100644
index 2c927cf8dd44..000000000000
--- a/dev-libs/dqlite/dqlite-1.14.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2020-2023 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.12.0"
-KEYWORDS="amd64 ~arm64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-db/sqlite:3
- dev-libs/libuv:=
- >=dev-libs/raft-0.17.1:="
-DEPEND="${RDEPEND}
- test? ( >=dev-libs/raft-0.13.0[lz4,test] )"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/dqlite-1.12.0-disable-werror.patch )
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-backtrace
- --disable-debug
- --disable-sanitize
- --disable-static
-
- # Will build a bundled libsqlite3.so.
- --enable-build-sqlite=no
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-09-22 6:09 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-09-22 6:09 UTC (permalink / raw
To: gentoo-commits
commit: d0926a3e666276890a96c7386625cc72e06bcf08
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 22 06:09:21 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Sep 22 06:09:35 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0926a3e
dev-libs/dqlite: add 1.16.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 +
dev-libs/dqlite/dqlite-1.16.0.ebuild | 49 ++++++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index d587d44d3ecf..13e2e5924423 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1 +1,2 @@
DIST dqlite-1.15.1.tar.gz 216360 BLAKE2B 750c61616dfef548d7d96564f9c46765bbc4803b4af89e7df8573babe970ce05810fe11bb73dac9b98eb815016532c4ca20509b394a37e4143f5917fdd1b4a9b SHA512 3da0aa254747806f439eaf941cbe376d4376e0be351b39d9083c0d257f33750efef3210715b458f003e6a4508e248d3777c2584260e0e82ce10598ba9cfbe4d4
+DIST dqlite-1.16.0.tar.gz 216776 BLAKE2B 653eac56c237e466f8b57d43a62ad25b7b3bd72a2088345f66db53b6bce5cdd528d16f3440572e5af8536fafde3f3cbb7700898479f1cd62b273e2192160ad15 SHA512 f9bc7ea3021d72bd81fe487d1c11b86a566002e2b1ddf6000b0fd54e407746ac35af079afc508d9d752de774dfee33c5c6e54c40c7884ac67a3bc7dca14ea362
diff --git a/dev-libs/dqlite/dqlite-1.16.0.ebuild b/dev-libs/dqlite/dqlite-1.16.0.ebuild
new file mode 100644
index 000000000000..0666aa3910cc
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.16.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2020-2023 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="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-db/sqlite:3
+ dev-libs/libuv:=
+ >=dev-libs/raft-0.17.1:="
+DEPEND="${RDEPEND}
+ test? ( dev-libs/raft[lz4,test] )"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}"/dqlite-1.12.0-disable-werror.patch )
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-backtrace
+ --disable-debug
+ --disable-sanitize
+ --disable-static
+
+ # Will build a bundled libsqlite3.so.
+ --enable-build-sqlite=no
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-10-23 5:55 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-10-23 5:55 UTC (permalink / raw
To: gentoo-commits
commit: fec45fa9b1b7d6091e16f8246eeaf2261f43c4d5
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 23 05:35:44 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Oct 23 05:35:44 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fec45fa9
dev-libs/dqlite: stabilize 1.16.0 for amd64
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/dqlite-1.16.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.16.0.ebuild b/dev-libs/dqlite/dqlite-1.16.0.ebuild
index 0666aa3910cc..7a76fcbeee18 100644
--- a/dev-libs/dqlite/dqlite-1.16.0.ebuild
+++ b/dev-libs/dqlite/dqlite-1.16.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0/1.15.1"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2023-11-01 13:17 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2023-11-01 13:17 UTC (permalink / raw
To: gentoo-commits
commit: e7b981312a8706e727a68b760301ee5a75ce9c89
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 1 13:14:07 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Nov 1 13:14:07 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7b98131
dev-libs/dqlite: drop 1.15.1
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.15.1.ebuild | 49 ------------------------------------
2 files changed, 50 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 13e2e5924423..86f3b2c832d5 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1 @@
-DIST dqlite-1.15.1.tar.gz 216360 BLAKE2B 750c61616dfef548d7d96564f9c46765bbc4803b4af89e7df8573babe970ce05810fe11bb73dac9b98eb815016532c4ca20509b394a37e4143f5917fdd1b4a9b SHA512 3da0aa254747806f439eaf941cbe376d4376e0be351b39d9083c0d257f33750efef3210715b458f003e6a4508e248d3777c2584260e0e82ce10598ba9cfbe4d4
DIST dqlite-1.16.0.tar.gz 216776 BLAKE2B 653eac56c237e466f8b57d43a62ad25b7b3bd72a2088345f66db53b6bce5cdd528d16f3440572e5af8536fafde3f3cbb7700898479f1cd62b273e2192160ad15 SHA512 f9bc7ea3021d72bd81fe487d1c11b86a566002e2b1ddf6000b0fd54e407746ac35af079afc508d9d752de774dfee33c5c6e54c40c7884ac67a3bc7dca14ea362
diff --git a/dev-libs/dqlite/dqlite-1.15.1.ebuild b/dev-libs/dqlite/dqlite-1.15.1.ebuild
deleted file mode 100644
index 45d4dc2f56c8..000000000000
--- a/dev-libs/dqlite/dqlite-1.15.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2020-2023 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="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-db/sqlite:3
- dev-libs/libuv:=
- >=dev-libs/raft-0.17.1:="
-DEPEND="${RDEPEND}
- test? ( >=dev-libs/raft-0.13.0[lz4,test] )"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/dqlite-1.12.0-disable-werror.patch )
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-backtrace
- --disable-debug
- --disable-sanitize
- --disable-static
-
- # Will build a bundled libsqlite3.so.
- --enable-build-sqlite=no
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2024-02-19 9:16 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2024-02-19 9:16 UTC (permalink / raw
To: gentoo-commits
commit: d8e93a63921f1645ca53aabdcc0245af1320bc5e
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 19 09:16:26 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Feb 19 09:16:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8e93a63
dev-libs/dqlite: add 1.16.2
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 +
dev-libs/dqlite/dqlite-1.16.2.ebuild | 51 ++++++++++++++++++++++++++++++++++++
2 files changed, 52 insertions(+)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 86f3b2c832d5..ad75e5362cd2 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1 +1,2 @@
DIST dqlite-1.16.0.tar.gz 216776 BLAKE2B 653eac56c237e466f8b57d43a62ad25b7b3bd72a2088345f66db53b6bce5cdd528d16f3440572e5af8536fafde3f3cbb7700898479f1cd62b273e2192160ad15 SHA512 f9bc7ea3021d72bd81fe487d1c11b86a566002e2b1ddf6000b0fd54e407746ac35af079afc508d9d752de774dfee33c5c6e54c40c7884ac67a3bc7dca14ea362
+DIST dqlite-1.16.2.tar.gz 218814 BLAKE2B 00f1553f986b7b7089a86336e61b6fb560dc5bb8c6d0bd52f8268654674499d62283bd6c25d52c716f3baeac5bd1742d90b598705d8adf93b21e1788f014c6fd SHA512 45cb9b42866bd4955d9ff4513f5f14006bdf9a7217b1f699c46388e49ff7d98c08c0220a7fb9b00cf91d9ba9e1f3e4d660d0bd40d8423d185e81c932624e97b9
diff --git a/dev-libs/dqlite/dqlite-1.16.2.ebuild b/dev-libs/dqlite/dqlite-1.16.2.ebuild
new file mode 100644
index 000000000000..f3a5256c78dd
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.16.2.ebuild
@@ -0,0 +1,51 @@
+# 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="test"
+RESTRICT="!test? ( test )"
+
+# Upstream change from canonical to cowsql resetted raft's SONAME, 3 -> 0. bgo#915960
+# Keeping dev-libs/raft:= for a while due to that.
+RDEPEND="dev-db/sqlite:3
+ dev-libs/libuv:=
+ >=dev-libs/raft-0.18.1:="
+DEPEND="${RDEPEND}
+ test? ( dev-libs/raft[lz4,test] )"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}"/dqlite-1.12.0-disable-werror.patch )
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-backtrace
+ --disable-debug
+ --disable-sanitize
+ --disable-static
+
+ # Will build a bundled libsqlite3.so.
+ --enable-build-sqlite=no
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2024-02-20 9:08 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2024-02-20 9:08 UTC (permalink / raw
To: gentoo-commits
commit: e3962a1c3bca15fb55899d5e44eefea2ed0e95ed
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 20 09:06:54 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Feb 20 09:08:38 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3962a1c
Revert "dev-libs/dqlite: add 1.16.2"
This reverts commit d8e93a63921f1645ca53aabdcc0245af1320bc5e.
Upstream issue with rationale:
https://github.com/cowsql/raft/issues/178
Bug: https://bugs.gentoo.org/925012
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.16.2.ebuild | 51 ------------------------------------
2 files changed, 52 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index ad75e5362cd2..86f3b2c832d5 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1 @@
DIST dqlite-1.16.0.tar.gz 216776 BLAKE2B 653eac56c237e466f8b57d43a62ad25b7b3bd72a2088345f66db53b6bce5cdd528d16f3440572e5af8536fafde3f3cbb7700898479f1cd62b273e2192160ad15 SHA512 f9bc7ea3021d72bd81fe487d1c11b86a566002e2b1ddf6000b0fd54e407746ac35af079afc508d9d752de774dfee33c5c6e54c40c7884ac67a3bc7dca14ea362
-DIST dqlite-1.16.2.tar.gz 218814 BLAKE2B 00f1553f986b7b7089a86336e61b6fb560dc5bb8c6d0bd52f8268654674499d62283bd6c25d52c716f3baeac5bd1742d90b598705d8adf93b21e1788f014c6fd SHA512 45cb9b42866bd4955d9ff4513f5f14006bdf9a7217b1f699c46388e49ff7d98c08c0220a7fb9b00cf91d9ba9e1f3e4d660d0bd40d8423d185e81c932624e97b9
diff --git a/dev-libs/dqlite/dqlite-1.16.2.ebuild b/dev-libs/dqlite/dqlite-1.16.2.ebuild
deleted file mode 100644
index f3a5256c78dd..000000000000
--- a/dev-libs/dqlite/dqlite-1.16.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# 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="test"
-RESTRICT="!test? ( test )"
-
-# Upstream change from canonical to cowsql resetted raft's SONAME, 3 -> 0. bgo#915960
-# Keeping dev-libs/raft:= for a while due to that.
-RDEPEND="dev-db/sqlite:3
- dev-libs/libuv:=
- >=dev-libs/raft-0.18.1:="
-DEPEND="${RDEPEND}
- test? ( dev-libs/raft[lz4,test] )"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/dqlite-1.12.0-disable-werror.patch )
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-backtrace
- --disable-debug
- --disable-sanitize
- --disable-static
-
- # Will build a bundled libsqlite3.so.
- --enable-build-sqlite=no
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2024-02-23 7:19 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2024-02-23 7:19 UTC (permalink / raw
To: gentoo-commits
commit: c414cece81c5295006517f2cf2808b045bf3d26b
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 23 06:58:42 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Feb 23 07:19:44 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c414cece
dev-libs/dqlite: add 1.16.3
- now uses Canonical's bundled libraft.
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 +
dev-libs/dqlite/dqlite-1.16.3.ebuild | 53 ++++++++++++++++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 86f3b2c832d5..2320f245247a 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1 +1,2 @@
DIST dqlite-1.16.0.tar.gz 216776 BLAKE2B 653eac56c237e466f8b57d43a62ad25b7b3bd72a2088345f66db53b6bce5cdd528d16f3440572e5af8536fafde3f3cbb7700898479f1cd62b273e2192160ad15 SHA512 f9bc7ea3021d72bd81fe487d1c11b86a566002e2b1ddf6000b0fd54e407746ac35af079afc508d9d752de774dfee33c5c6e54c40c7884ac67a3bc7dca14ea362
+DIST dqlite-1.16.3.tar.gz 494184 BLAKE2B bc99a93632fae6948411b61daf2f2d45466d63d32fe925b705faa52d5a35e8cf21d30b018448a3ee1be48c7e10047727a46088d513b4fb40598045201ba80041 SHA512 674bb801f7b9cd38a3d874fc2035e0c3ee36f77e0b538636ac2b0c01f54cde9ad0bb97f8a563350eaaf484b9266b20b0c619ce057b2ee786a323593dee2a8660
diff --git a/dev-libs/dqlite/dqlite-1.16.3.ebuild b/dev-libs/dqlite/dqlite-1.16.3.ebuild
new file mode 100644
index 000000000000..832370126c90
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.16.3.ebuild
@@ -0,0 +1,53 @@
+# 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 )
+
+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
+
+ $(use_with lz4)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2024-02-25 9:36 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2024-02-25 9:36 UTC (permalink / raw
To: gentoo-commits
commit: a88698e4026f5ae73410fbf21bfb4841ad1d33cb
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 25 09:28:47 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Feb 25 09:28:47 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a88698e4
dev-libs/dqlite: add 1.16.4
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 +
dev-libs/dqlite/dqlite-1.16.4.ebuild | 53 ++++++++++++++++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 2320f245247a..c4e7755c757d 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1,3 @@
DIST dqlite-1.16.0.tar.gz 216776 BLAKE2B 653eac56c237e466f8b57d43a62ad25b7b3bd72a2088345f66db53b6bce5cdd528d16f3440572e5af8536fafde3f3cbb7700898479f1cd62b273e2192160ad15 SHA512 f9bc7ea3021d72bd81fe487d1c11b86a566002e2b1ddf6000b0fd54e407746ac35af079afc508d9d752de774dfee33c5c6e54c40c7884ac67a3bc7dca14ea362
DIST dqlite-1.16.3.tar.gz 494184 BLAKE2B bc99a93632fae6948411b61daf2f2d45466d63d32fe925b705faa52d5a35e8cf21d30b018448a3ee1be48c7e10047727a46088d513b4fb40598045201ba80041 SHA512 674bb801f7b9cd38a3d874fc2035e0c3ee36f77e0b538636ac2b0c01f54cde9ad0bb97f8a563350eaaf484b9266b20b0c619ce057b2ee786a323593dee2a8660
+DIST dqlite-1.16.4.tar.gz 499174 BLAKE2B 3a5f28dd352ada1d0866d3563c450aad10413118a30fc9369aaadc5f46acefaa8f28e21118e71ef3eb801c51c9946664882d82a15eff71eefbbd51f6fd68c4b3 SHA512 164a63ce9224b9a4f10d2312ac03e98ccdec8c6c4fe22e6fc595dc792f9a7c75317cf8e839eb31a8db2501a094d67053300532a92bca26c86ef5097dd3c06a2b
diff --git a/dev-libs/dqlite/dqlite-1.16.4.ebuild b/dev-libs/dqlite/dqlite-1.16.4.ebuild
new file mode 100644
index 000000000000..832370126c90
--- /dev/null
+++ b/dev-libs/dqlite/dqlite-1.16.4.ebuild
@@ -0,0 +1,53 @@
+# 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 )
+
+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
+
+ $(use_with lz4)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2024-02-25 9:36 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2024-02-25 9:36 UTC (permalink / raw
To: gentoo-commits
commit: 414aaaf7f384c5c5edaaadbdcf85fe0857672ccc
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 25 09:28:57 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Feb 25 09:28:57 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=414aaaf7
dev-libs/dqlite: drop 1.16.3
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.16.3.ebuild | 53 ------------------------------------
2 files changed, 54 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index c4e7755c757d..2d11b41e75c3 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,3 +1,2 @@
DIST dqlite-1.16.0.tar.gz 216776 BLAKE2B 653eac56c237e466f8b57d43a62ad25b7b3bd72a2088345f66db53b6bce5cdd528d16f3440572e5af8536fafde3f3cbb7700898479f1cd62b273e2192160ad15 SHA512 f9bc7ea3021d72bd81fe487d1c11b86a566002e2b1ddf6000b0fd54e407746ac35af079afc508d9d752de774dfee33c5c6e54c40c7884ac67a3bc7dca14ea362
-DIST dqlite-1.16.3.tar.gz 494184 BLAKE2B bc99a93632fae6948411b61daf2f2d45466d63d32fe925b705faa52d5a35e8cf21d30b018448a3ee1be48c7e10047727a46088d513b4fb40598045201ba80041 SHA512 674bb801f7b9cd38a3d874fc2035e0c3ee36f77e0b538636ac2b0c01f54cde9ad0bb97f8a563350eaaf484b9266b20b0c619ce057b2ee786a323593dee2a8660
DIST dqlite-1.16.4.tar.gz 499174 BLAKE2B 3a5f28dd352ada1d0866d3563c450aad10413118a30fc9369aaadc5f46acefaa8f28e21118e71ef3eb801c51c9946664882d82a15eff71eefbbd51f6fd68c4b3 SHA512 164a63ce9224b9a4f10d2312ac03e98ccdec8c6c4fe22e6fc595dc792f9a7c75317cf8e839eb31a8db2501a094d67053300532a92bca26c86ef5097dd3c06a2b
diff --git a/dev-libs/dqlite/dqlite-1.16.3.ebuild b/dev-libs/dqlite/dqlite-1.16.3.ebuild
deleted file mode 100644
index 832370126c90..000000000000
--- a/dev-libs/dqlite/dqlite-1.16.3.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# 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 )
-
-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
-
- $(use_with lz4)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2024-02-28 4:30 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2024-02-28 4:30 UTC (permalink / raw
To: gentoo-commits
commit: e22ec1738ce80c0a5b96997767847b0fc3526e3d
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 28 04:29:32 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Feb 28 04:30:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e22ec173
dev-libs/dqlite: +lz4 default
Closes: https://bugs.gentoo.org/925567
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/{dqlite-1.16.4.ebuild => dqlite-1.16.4-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/dqlite/dqlite-1.16.4.ebuild b/dev-libs/dqlite/dqlite-1.16.4-r1.ebuild
similarity index 98%
rename from dev-libs/dqlite/dqlite-1.16.4.ebuild
rename to dev-libs/dqlite/dqlite-1.16.4-r1.ebuild
index 832370126c90..c11ab433bcc7 100644
--- a/dev-libs/dqlite/dqlite-1.16.4.ebuild
+++ b/dev-libs/dqlite/dqlite-1.16.4-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/canonical/dqlite/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="LGPL-3-with-linking-exception"
SLOT="0/1.15.1"
KEYWORDS="amd64 ~arm64 ~x86"
-IUSE="lz4 test"
+IUSE="+lz4 test"
RESTRICT="!test? ( test )"
RDEPEND="dev-db/sqlite:3
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2024-03-17 7:45 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2024-03-17 7:45 UTC (permalink / raw
To: gentoo-commits
commit: 4f02d6b39b7bc9bbb97aabb4bebddafa4b063881
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 17 07:40:46 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Mar 17 07:40:46 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f02d6b3
dev-libs/dqlite: drop 1.16.0
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.16.0.ebuild | 49 ------------------------------------
2 files changed, 50 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 2d11b41e75c3..0bf7f61c62bb 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,2 +1 @@
-DIST dqlite-1.16.0.tar.gz 216776 BLAKE2B 653eac56c237e466f8b57d43a62ad25b7b3bd72a2088345f66db53b6bce5cdd528d16f3440572e5af8536fafde3f3cbb7700898479f1cd62b273e2192160ad15 SHA512 f9bc7ea3021d72bd81fe487d1c11b86a566002e2b1ddf6000b0fd54e407746ac35af079afc508d9d752de774dfee33c5c6e54c40c7884ac67a3bc7dca14ea362
DIST dqlite-1.16.4.tar.gz 499174 BLAKE2B 3a5f28dd352ada1d0866d3563c450aad10413118a30fc9369aaadc5f46acefaa8f28e21118e71ef3eb801c51c9946664882d82a15eff71eefbbd51f6fd68c4b3 SHA512 164a63ce9224b9a4f10d2312ac03e98ccdec8c6c4fe22e6fc595dc792f9a7c75317cf8e839eb31a8db2501a094d67053300532a92bca26c86ef5097dd3c06a2b
diff --git a/dev-libs/dqlite/dqlite-1.16.0.ebuild b/dev-libs/dqlite/dqlite-1.16.0.ebuild
deleted file mode 100644
index 7a76fcbeee18..000000000000
--- a/dev-libs/dqlite/dqlite-1.16.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2020-2023 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="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-db/sqlite:3
- dev-libs/libuv:=
- >=dev-libs/raft-0.17.1:="
-DEPEND="${RDEPEND}
- test? ( dev-libs/raft[lz4,test] )"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}"/dqlite-1.12.0-disable-werror.patch )
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-backtrace
- --disable-debug
- --disable-sanitize
- --disable-static
-
- # Will build a bundled libsqlite3.so.
- --enable-build-sqlite=no
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2024-07-30 5:26 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2024-07-30 5:26 UTC (permalink / raw
To: gentoo-commits
commit: 1a26c16a962ac02e5672dadbd2624547fe7c1931
Author: Brahmajit Das <brahmajit.xyz <AT> gmail <DOT> com>
AuthorDate: Mon Jul 29 17:58:27 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Jul 30 05:26:46 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a26c16a
dev-libs/dqlite: add myself as a maintainer
Signed-off-by: Brahmajit Das <brahmajit.xyz <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/37744
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dev-libs/dqlite/metadata.xml b/dev-libs/dqlite/metadata.xml
index 93aa9821db98..980e4850634e 100644
--- a/dev-libs/dqlite/metadata.xml
+++ b/dev-libs/dqlite/metadata.xml
@@ -5,6 +5,10 @@
<email>juippis@gentoo.org</email>
<name>Joonas Niilola</name>
</maintainer>
+ <maintainer type="person" proxied="yes">
+ <email>brahmajit.xyz@gmail.com</email>
+ <name>Brahmajit Das</name>
+ </maintainer>
<maintainer type="project">
<email>virtualization@gentoo.org</email>
<name>Gentoo Virtualization Project</name>
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2024-08-20 5:20 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2024-08-20 5:20 UTC (permalink / raw
To: gentoo-commits
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
+}
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/
@ 2024-08-20 5:20 Joonas Niilola
0 siblings, 0 replies; 53+ messages in thread
From: Joonas Niilola @ 2024-08-20 5:20 UTC (permalink / raw
To: gentoo-commits
commit: 899d4cde96793373860d41e44a38c6133e756232
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 20 05:19:59 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Aug 20 05:19:59 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=899d4cde
dev-libs/dqlite: drop 1.16.6
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/dqlite/Manifest | 1 -
dev-libs/dqlite/dqlite-1.16.6.ebuild | 59 ------------------------------------
2 files changed, 60 deletions(-)
diff --git a/dev-libs/dqlite/Manifest b/dev-libs/dqlite/Manifest
index 06b7ad0995ba..1a69fd6a88bf 100644
--- a/dev-libs/dqlite/Manifest
+++ b/dev-libs/dqlite/Manifest
@@ -1,3 +1,2 @@
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.6.ebuild b/dev-libs/dqlite/dqlite-1.16.6.ebuild
deleted file mode 100644
index 11256abc34ee..000000000000
--- a/dev-libs/dqlite/dqlite-1.16.6.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# 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
-}
^ permalink raw reply related [flat|nested] 53+ messages in thread
end of thread, other threads:[~2024-08-20 5:20 UTC | newest]
Thread overview: 53+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-30 5:26 [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/ Joonas Niilola
-- strict thread matches above, loose matches on Subject: below --
2024-08-20 5:20 Joonas Niilola
2024-08-20 5:20 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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox