public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-db/turso/
@ 2025-07-02 18:57 Jonas Frei
  0 siblings, 0 replies; 11+ messages in thread
From: Jonas Frei @ 2025-07-02 18:57 UTC (permalink / raw
  To: gentoo-commits

commit:     274c41620c767504fceeda591a5b8c95e0fde795
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Wed Jul  2 18:47:42 2025 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Wed Jul  2 18:56:38 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=274c4162

dev-db/turso: add 0.1.1

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 dev-db/turso/Manifest           |  3 ++
 dev-db/turso/turso-0.1.1.ebuild | 73 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+)

diff --git a/dev-db/turso/Manifest b/dev-db/turso/Manifest
index ad3fe0019c..ea7a26bbd1 100644
--- a/dev-db/turso/Manifest
+++ b/dev-db/turso/Manifest
@@ -1,2 +1,5 @@
 DIST limbo-0.0.22-crates.tar.xz 31930740 BLAKE2B df38f33717797a8b999f8c2a22efd88e67e62991cd1a0245c7e6c41f2a3a089dd229fd12e633cfb8b2c96604e4799019e8e9c0401f05d4c62d753ba4e10ce189 SHA512 f5ef72b87e663e9c09a510bdfd3507302df6c9206237af1a04469b772e8b6f6aa68bc04364722e168246423cb8da46498a032fb4b33dbbcc844ea7efea7488ad
 DIST limbo-0.0.22.tar.gz 5994615 BLAKE2B 9c26fca141d8797b69b81060a08b91f7017d4966a25856b5d238c874b3a275e52c7ec9719f48a0c45abda2dee8da07972589ddbf69d32889c6600e97f780142f SHA512 127038105f386fd2eb75936de17220ef663ebf341dc900556edb7f43e41c7ecfbf6641ed49e8677458182745325372169fbdeb10f90788d7f03e05349c2090a6
+DIST syntect-64644ffe064457265cbcee12a0c1baf9485ba6ee.gh.tar.gz 957024 BLAKE2B 46a84baedfc9923e4be3f70caa5f32d197659afe5a1c018fe03a473e175c56d60a321ca0378b52173076ff89df365f845d8d23997eaef6bf8082634497fbd031 SHA512 f6a4bd70e294046953923052734f8021ea64a7ef83965dcc13ba60f96fea6d4ad21c68bde71eb245cfd00d080f3decf9911eed85ad360b8d5185e0d018811f97
+DIST turso-0.1.1-crates.tar.xz 31941108 BLAKE2B b0ad7045be3b400b45ce13f80d5bf53cb04f4fd696388f4c3aab42224166cd8cc4c3fe808ab54f4e0f439e41ab808d78ed28433ffb4d8eaf6d64dfecaecd9922 SHA512 d8e93f23ab09c1112e14601a9ebed84617ab1076975190d0b6b8eccdab0dd3f84fe79d5de5a0527e84a3b8001814406f2d7e5eb5a91bb9982a6eab03eefa6c93
+DIST turso-0.1.1.tar.gz 6216687 BLAKE2B 1f18e54e3c0baf732b6576fc2a8bb37964929541825e54dff6f0c464dfd6fee0c94c1dbff01db1577e8768ad4efe19ab8c040de249a37f6b2ccd4bbff500e0c8 SHA512 b0bfe454e47b86bbafef2d69f49da0ab13bd54a246d3287c6da1944c4688137ac33f376a3844ffbe057dbd3f5ece2aefbfe9d5a1da9c4c8a6f62d0ee605b9dc3

diff --git a/dev-db/turso/turso-0.1.1.ebuild b/dev-db/turso/turso-0.1.1.ebuild
new file mode 100644
index 0000000000..826958a3d8
--- /dev/null
+++ b/dev-db/turso/turso-0.1.1.ebuild
@@ -0,0 +1,73 @@
+# Copyright 2024-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CRATES=""
+declare -A GIT_CRATES=(
+	[syntect]="https://github.com/trishume/syntect;64644ffe064457265cbcee12a0c1baf9485ba6ee;syntect-%commit%"
+)
+
+inherit cargo linux-info
+
+DESCRIPTION="Turso Database is an in-process OLTP database engine library with a CLI"
+HOMEPAGE="https://github.com/tursodatabase/turso"
+SRC_URI="
+	https://github.com/tursodatabase/${PN}/releases/download/v${PV}/source.tar.gz -> ${P}.tar.gz
+	https://github.com/freijon/${PN}/releases/download/v${PV}/${P}-crates.tar.xz
+	${CARGO_CRATE_URIS}
+"
+
+S="${WORKDIR}/${PN}_cli-${PV}"
+
+LICENSE="MIT"
+# Dependent crate licenses
+LICENSE+="
+	Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 CC0-1.0 CDDL
+	GPL-2.0-with-bison-exception MIT MPL-2.0 Unicode-DFS-2016
+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+uring"
+
+DEPEND="
+	>=dev-libs/libgit2-0.99:=
+	dev-libs/oniguruma:=
+"
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+	CONFIG_CHECK="~IO_URING"
+	WARNING_IO_URING="The USE flag 'uring' needs the option IO_URING to be enabled."
+
+	use uring && linux-info_pkg_setup
+	rust_pkg_setup
+}
+
+src_configure() {
+	# high magic to allow system-libs
+	export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
+	export RUSTONIG_SYSTEM_LIBONIG=1
+	export LIBGIT2_NO_VENDOR=1
+
+	local myfeatures=(
+		$(use uring && usex "uring" "io_uring")
+	)
+	cargo_src_configure --no-default-features
+}
+
+src_compile() {
+	cargo_src_compile --package "${PN}_cli" --bin "tursodb"
+}
+
+src_install() {
+	cargo_src_install --path cli
+
+	local DOCS=(
+		CHANGELOG.md
+		CONTRIBUTING.md
+		README.md
+	)
+
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-db/turso/
@ 2025-07-23 18:25 Jonas Frei
  0 siblings, 0 replies; 11+ messages in thread
From: Jonas Frei @ 2025-07-23 18:25 UTC (permalink / raw
  To: gentoo-commits

commit:     9aa160b6fbcc461a775e1c41702ba70acb5ca729
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Tue Jul 22 05:10:35 2025 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Wed Jul 23 18:16:47 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9aa160b6

dev-db/turso: drop 0.1.1

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 dev-db/turso/Manifest           |  2 --
 dev-db/turso/turso-0.1.1.ebuild | 73 -----------------------------------------
 2 files changed, 75 deletions(-)

diff --git a/dev-db/turso/Manifest b/dev-db/turso/Manifest
index 16a20fcc32..d469e2ff48 100644
--- a/dev-db/turso/Manifest
+++ b/dev-db/turso/Manifest
@@ -1,7 +1,5 @@
 DIST limbo-0.0.22-crates.tar.xz 31930740 BLAKE2B df38f33717797a8b999f8c2a22efd88e67e62991cd1a0245c7e6c41f2a3a089dd229fd12e633cfb8b2c96604e4799019e8e9c0401f05d4c62d753ba4e10ce189 SHA512 f5ef72b87e663e9c09a510bdfd3507302df6c9206237af1a04469b772e8b6f6aa68bc04364722e168246423cb8da46498a032fb4b33dbbcc844ea7efea7488ad
 DIST limbo-0.0.22.tar.gz 5994615 BLAKE2B 9c26fca141d8797b69b81060a08b91f7017d4966a25856b5d238c874b3a275e52c7ec9719f48a0c45abda2dee8da07972589ddbf69d32889c6600e97f780142f SHA512 127038105f386fd2eb75936de17220ef663ebf341dc900556edb7f43e41c7ecfbf6641ed49e8677458182745325372169fbdeb10f90788d7f03e05349c2090a6
 DIST syntect-64644ffe064457265cbcee12a0c1baf9485ba6ee.gh.tar.gz 957024 BLAKE2B 46a84baedfc9923e4be3f70caa5f32d197659afe5a1c018fe03a473e175c56d60a321ca0378b52173076ff89df365f845d8d23997eaef6bf8082634497fbd031 SHA512 f6a4bd70e294046953923052734f8021ea64a7ef83965dcc13ba60f96fea6d4ad21c68bde71eb245cfd00d080f3decf9911eed85ad360b8d5185e0d018811f97
-DIST turso-0.1.1-crates.tar.xz 31941108 BLAKE2B b0ad7045be3b400b45ce13f80d5bf53cb04f4fd696388f4c3aab42224166cd8cc4c3fe808ab54f4e0f439e41ab808d78ed28433ffb4d8eaf6d64dfecaecd9922 SHA512 d8e93f23ab09c1112e14601a9ebed84617ab1076975190d0b6b8eccdab0dd3f84fe79d5de5a0527e84a3b8001814406f2d7e5eb5a91bb9982a6eab03eefa6c93
-DIST turso-0.1.1.tar.gz 6216687 BLAKE2B 1f18e54e3c0baf732b6576fc2a8bb37964929541825e54dff6f0c464dfd6fee0c94c1dbff01db1577e8768ad4efe19ab8c040de249a37f6b2ccd4bbff500e0c8 SHA512 b0bfe454e47b86bbafef2d69f49da0ab13bd54a246d3287c6da1944c4688137ac33f376a3844ffbe057dbd3f5ece2aefbfe9d5a1da9c4c8a6f62d0ee605b9dc3
 DIST turso-0.1.2-crates.tar.xz 32193616 BLAKE2B 85d451546134c1c955ca444b6badd842ddfec54b84e37eb2fa8c508500e71b8f11afdc930a617ce469918f04e2a5a0e720d8e79fb59ae2710f993d7d7d6efd52 SHA512 c33ab806f0f2414030a060f9278917e92690b8d9ca147183648d8aaf18775f11ffd146f7bd79e53a55b2bdfb62129a3ee0cc3c3fabc18dc27fc2b072fc0ecc0a
 DIST turso-0.1.2.tar.gz 6950654 BLAKE2B fb37f7785fb2ea13734d4c5a87c7a8e43fc9be62360b1f0248a127fa730eb406321c4f5a42066ed8dcbfbfb9927e14bd8e5328f4205b6164440ae848c7212ff8 SHA512 5648bcdff44d8ca170ef23c8fa89d02c880ceb257800e603dd1f41de36cd7c2cf8031d59e6d806c5903294bb129879958488a299a799a6a3a79dd8c3b148c4eb

diff --git a/dev-db/turso/turso-0.1.1.ebuild b/dev-db/turso/turso-0.1.1.ebuild
deleted file mode 100644
index 826958a3d8..0000000000
--- a/dev-db/turso/turso-0.1.1.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 2024-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CRATES=""
-declare -A GIT_CRATES=(
-	[syntect]="https://github.com/trishume/syntect;64644ffe064457265cbcee12a0c1baf9485ba6ee;syntect-%commit%"
-)
-
-inherit cargo linux-info
-
-DESCRIPTION="Turso Database is an in-process OLTP database engine library with a CLI"
-HOMEPAGE="https://github.com/tursodatabase/turso"
-SRC_URI="
-	https://github.com/tursodatabase/${PN}/releases/download/v${PV}/source.tar.gz -> ${P}.tar.gz
-	https://github.com/freijon/${PN}/releases/download/v${PV}/${P}-crates.tar.xz
-	${CARGO_CRATE_URIS}
-"
-
-S="${WORKDIR}/${PN}_cli-${PV}"
-
-LICENSE="MIT"
-# Dependent crate licenses
-LICENSE+="
-	Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 CC0-1.0 CDDL
-	GPL-2.0-with-bison-exception MIT MPL-2.0 Unicode-DFS-2016
-"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+uring"
-
-DEPEND="
-	>=dev-libs/libgit2-0.99:=
-	dev-libs/oniguruma:=
-"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
-	CONFIG_CHECK="~IO_URING"
-	WARNING_IO_URING="The USE flag 'uring' needs the option IO_URING to be enabled."
-
-	use uring && linux-info_pkg_setup
-	rust_pkg_setup
-}
-
-src_configure() {
-	# high magic to allow system-libs
-	export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
-	export RUSTONIG_SYSTEM_LIBONIG=1
-	export LIBGIT2_NO_VENDOR=1
-
-	local myfeatures=(
-		$(use uring && usex "uring" "io_uring")
-	)
-	cargo_src_configure --no-default-features
-}
-
-src_compile() {
-	cargo_src_compile --package "${PN}_cli" --bin "tursodb"
-}
-
-src_install() {
-	cargo_src_install --path cli
-
-	local DOCS=(
-		CHANGELOG.md
-		CONTRIBUTING.md
-		README.md
-	)
-
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-db/turso/
@ 2025-07-23 18:25 Jonas Frei
  0 siblings, 0 replies; 11+ messages in thread
From: Jonas Frei @ 2025-07-23 18:25 UTC (permalink / raw
  To: gentoo-commits

commit:     5f05cce9bd7b8285fb00dfc838b0f150d84483c4
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Tue Jul 22 05:09:55 2025 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Wed Jul 23 18:16:47 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5f05cce9

dev-db/turso: add 0.1.2

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 dev-db/turso/Manifest           |  2 ++
 dev-db/turso/turso-0.1.2.ebuild | 73 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 75 insertions(+)

diff --git a/dev-db/turso/Manifest b/dev-db/turso/Manifest
index ea7a26bbd1..16a20fcc32 100644
--- a/dev-db/turso/Manifest
+++ b/dev-db/turso/Manifest
@@ -3,3 +3,5 @@ DIST limbo-0.0.22.tar.gz 5994615 BLAKE2B 9c26fca141d8797b69b81060a08b91f7017d496
 DIST syntect-64644ffe064457265cbcee12a0c1baf9485ba6ee.gh.tar.gz 957024 BLAKE2B 46a84baedfc9923e4be3f70caa5f32d197659afe5a1c018fe03a473e175c56d60a321ca0378b52173076ff89df365f845d8d23997eaef6bf8082634497fbd031 SHA512 f6a4bd70e294046953923052734f8021ea64a7ef83965dcc13ba60f96fea6d4ad21c68bde71eb245cfd00d080f3decf9911eed85ad360b8d5185e0d018811f97
 DIST turso-0.1.1-crates.tar.xz 31941108 BLAKE2B b0ad7045be3b400b45ce13f80d5bf53cb04f4fd696388f4c3aab42224166cd8cc4c3fe808ab54f4e0f439e41ab808d78ed28433ffb4d8eaf6d64dfecaecd9922 SHA512 d8e93f23ab09c1112e14601a9ebed84617ab1076975190d0b6b8eccdab0dd3f84fe79d5de5a0527e84a3b8001814406f2d7e5eb5a91bb9982a6eab03eefa6c93
 DIST turso-0.1.1.tar.gz 6216687 BLAKE2B 1f18e54e3c0baf732b6576fc2a8bb37964929541825e54dff6f0c464dfd6fee0c94c1dbff01db1577e8768ad4efe19ab8c040de249a37f6b2ccd4bbff500e0c8 SHA512 b0bfe454e47b86bbafef2d69f49da0ab13bd54a246d3287c6da1944c4688137ac33f376a3844ffbe057dbd3f5ece2aefbfe9d5a1da9c4c8a6f62d0ee605b9dc3
+DIST turso-0.1.2-crates.tar.xz 32193616 BLAKE2B 85d451546134c1c955ca444b6badd842ddfec54b84e37eb2fa8c508500e71b8f11afdc930a617ce469918f04e2a5a0e720d8e79fb59ae2710f993d7d7d6efd52 SHA512 c33ab806f0f2414030a060f9278917e92690b8d9ca147183648d8aaf18775f11ffd146f7bd79e53a55b2bdfb62129a3ee0cc3c3fabc18dc27fc2b072fc0ecc0a
+DIST turso-0.1.2.tar.gz 6950654 BLAKE2B fb37f7785fb2ea13734d4c5a87c7a8e43fc9be62360b1f0248a127fa730eb406321c4f5a42066ed8dcbfbfb9927e14bd8e5328f4205b6164440ae848c7212ff8 SHA512 5648bcdff44d8ca170ef23c8fa89d02c880ceb257800e603dd1f41de36cd7c2cf8031d59e6d806c5903294bb129879958488a299a799a6a3a79dd8c3b148c4eb

diff --git a/dev-db/turso/turso-0.1.2.ebuild b/dev-db/turso/turso-0.1.2.ebuild
new file mode 100644
index 0000000000..826958a3d8
--- /dev/null
+++ b/dev-db/turso/turso-0.1.2.ebuild
@@ -0,0 +1,73 @@
+# Copyright 2024-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CRATES=""
+declare -A GIT_CRATES=(
+	[syntect]="https://github.com/trishume/syntect;64644ffe064457265cbcee12a0c1baf9485ba6ee;syntect-%commit%"
+)
+
+inherit cargo linux-info
+
+DESCRIPTION="Turso Database is an in-process OLTP database engine library with a CLI"
+HOMEPAGE="https://github.com/tursodatabase/turso"
+SRC_URI="
+	https://github.com/tursodatabase/${PN}/releases/download/v${PV}/source.tar.gz -> ${P}.tar.gz
+	https://github.com/freijon/${PN}/releases/download/v${PV}/${P}-crates.tar.xz
+	${CARGO_CRATE_URIS}
+"
+
+S="${WORKDIR}/${PN}_cli-${PV}"
+
+LICENSE="MIT"
+# Dependent crate licenses
+LICENSE+="
+	Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 CC0-1.0 CDDL
+	GPL-2.0-with-bison-exception MIT MPL-2.0 Unicode-DFS-2016
+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+uring"
+
+DEPEND="
+	>=dev-libs/libgit2-0.99:=
+	dev-libs/oniguruma:=
+"
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+	CONFIG_CHECK="~IO_URING"
+	WARNING_IO_URING="The USE flag 'uring' needs the option IO_URING to be enabled."
+
+	use uring && linux-info_pkg_setup
+	rust_pkg_setup
+}
+
+src_configure() {
+	# high magic to allow system-libs
+	export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
+	export RUSTONIG_SYSTEM_LIBONIG=1
+	export LIBGIT2_NO_VENDOR=1
+
+	local myfeatures=(
+		$(use uring && usex "uring" "io_uring")
+	)
+	cargo_src_configure --no-default-features
+}
+
+src_compile() {
+	cargo_src_compile --package "${PN}_cli" --bin "tursodb"
+}
+
+src_install() {
+	cargo_src_install --path cli
+
+	local DOCS=(
+		CHANGELOG.md
+		CONTRIBUTING.md
+		README.md
+	)
+
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-db/turso/
@ 2025-08-04  5:15 Jonas Frei
  0 siblings, 0 replies; 11+ messages in thread
From: Jonas Frei @ 2025-08-04  5:15 UTC (permalink / raw
  To: gentoo-commits

commit:     933a90afff2ef13eb4ff01f5255a92aa263596ad
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Mon Aug  4 04:30:16 2025 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Mon Aug  4 05:14:17 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=933a90af

dev-db/turso: add 0.1.3

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 dev-db/turso/Manifest           |  2 ++
 dev-db/turso/turso-0.1.3.ebuild | 73 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 75 insertions(+)

diff --git a/dev-db/turso/Manifest b/dev-db/turso/Manifest
index d469e2ff48..4c7c8f084d 100644
--- a/dev-db/turso/Manifest
+++ b/dev-db/turso/Manifest
@@ -3,3 +3,5 @@ DIST limbo-0.0.22.tar.gz 5994615 BLAKE2B 9c26fca141d8797b69b81060a08b91f7017d496
 DIST syntect-64644ffe064457265cbcee12a0c1baf9485ba6ee.gh.tar.gz 957024 BLAKE2B 46a84baedfc9923e4be3f70caa5f32d197659afe5a1c018fe03a473e175c56d60a321ca0378b52173076ff89df365f845d8d23997eaef6bf8082634497fbd031 SHA512 f6a4bd70e294046953923052734f8021ea64a7ef83965dcc13ba60f96fea6d4ad21c68bde71eb245cfd00d080f3decf9911eed85ad360b8d5185e0d018811f97
 DIST turso-0.1.2-crates.tar.xz 32193616 BLAKE2B 85d451546134c1c955ca444b6badd842ddfec54b84e37eb2fa8c508500e71b8f11afdc930a617ce469918f04e2a5a0e720d8e79fb59ae2710f993d7d7d6efd52 SHA512 c33ab806f0f2414030a060f9278917e92690b8d9ca147183648d8aaf18775f11ffd146f7bd79e53a55b2bdfb62129a3ee0cc3c3fabc18dc27fc2b072fc0ecc0a
 DIST turso-0.1.2.tar.gz 6950654 BLAKE2B fb37f7785fb2ea13734d4c5a87c7a8e43fc9be62360b1f0248a127fa730eb406321c4f5a42066ed8dcbfbfb9927e14bd8e5328f4205b6164440ae848c7212ff8 SHA512 5648bcdff44d8ca170ef23c8fa89d02c880ceb257800e603dd1f41de36cd7c2cf8031d59e6d806c5903294bb129879958488a299a799a6a3a79dd8c3b148c4eb
+DIST turso-0.1.3-crates.tar.xz 33760176 BLAKE2B 52826d267e889a673795e85c184f051e07dd36b2fa249d05a588e18a7050f7e0399f36b5c58fad71f48dd27301b9a2d4f184dff3bcf8c343e75ad1de4789e99d SHA512 b6f300b17e9999c14884ebe45386d2f69309c77893acfab3b65731fdcc50158407a1df08d510eae1098f282c6cd2c1d57cf277905e19c1e43a70b96618a8f77b
+DIST turso-0.1.3.tar.gz 7139788 BLAKE2B 1ce594ee70c4270ee3cc4f000faeb9de1ed4c3830c1f13a6bd31a9102f340d2d1990c8e7adf4a2ab00d48f6d0674a5b7bc7d8019016db2d2f527e4dd32a2e840 SHA512 6833a10aadc040e3a9742c47f36346fbcd45f374a1b54c9e6ec29ea3b0b16d34ffedc113df473863f592d35414d160b8bc9bfd0439f97c5c979c9dc435c55874

diff --git a/dev-db/turso/turso-0.1.3.ebuild b/dev-db/turso/turso-0.1.3.ebuild
new file mode 100644
index 0000000000..826958a3d8
--- /dev/null
+++ b/dev-db/turso/turso-0.1.3.ebuild
@@ -0,0 +1,73 @@
+# Copyright 2024-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CRATES=""
+declare -A GIT_CRATES=(
+	[syntect]="https://github.com/trishume/syntect;64644ffe064457265cbcee12a0c1baf9485ba6ee;syntect-%commit%"
+)
+
+inherit cargo linux-info
+
+DESCRIPTION="Turso Database is an in-process OLTP database engine library with a CLI"
+HOMEPAGE="https://github.com/tursodatabase/turso"
+SRC_URI="
+	https://github.com/tursodatabase/${PN}/releases/download/v${PV}/source.tar.gz -> ${P}.tar.gz
+	https://github.com/freijon/${PN}/releases/download/v${PV}/${P}-crates.tar.xz
+	${CARGO_CRATE_URIS}
+"
+
+S="${WORKDIR}/${PN}_cli-${PV}"
+
+LICENSE="MIT"
+# Dependent crate licenses
+LICENSE+="
+	Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 CC0-1.0 CDDL
+	GPL-2.0-with-bison-exception MIT MPL-2.0 Unicode-DFS-2016
+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+uring"
+
+DEPEND="
+	>=dev-libs/libgit2-0.99:=
+	dev-libs/oniguruma:=
+"
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+	CONFIG_CHECK="~IO_URING"
+	WARNING_IO_URING="The USE flag 'uring' needs the option IO_URING to be enabled."
+
+	use uring && linux-info_pkg_setup
+	rust_pkg_setup
+}
+
+src_configure() {
+	# high magic to allow system-libs
+	export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
+	export RUSTONIG_SYSTEM_LIBONIG=1
+	export LIBGIT2_NO_VENDOR=1
+
+	local myfeatures=(
+		$(use uring && usex "uring" "io_uring")
+	)
+	cargo_src_configure --no-default-features
+}
+
+src_compile() {
+	cargo_src_compile --package "${PN}_cli" --bin "tursodb"
+}
+
+src_install() {
+	cargo_src_install --path cli
+
+	local DOCS=(
+		CHANGELOG.md
+		CONTRIBUTING.md
+		README.md
+	)
+
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-db/turso/
@ 2025-08-04  5:15 Jonas Frei
  0 siblings, 0 replies; 11+ messages in thread
From: Jonas Frei @ 2025-08-04  5:15 UTC (permalink / raw
  To: gentoo-commits

commit:     41dc60a530f40d44c07fab0b6082796b1c592570
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Mon Aug  4 04:30:43 2025 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Mon Aug  4 05:14:17 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=41dc60a5

dev-db/turso: drop 0.1.2

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 dev-db/turso/Manifest           |  2 --
 dev-db/turso/turso-0.1.2.ebuild | 73 -----------------------------------------
 2 files changed, 75 deletions(-)

diff --git a/dev-db/turso/Manifest b/dev-db/turso/Manifest
index 4c7c8f084d..647840e43a 100644
--- a/dev-db/turso/Manifest
+++ b/dev-db/turso/Manifest
@@ -1,7 +1,5 @@
 DIST limbo-0.0.22-crates.tar.xz 31930740 BLAKE2B df38f33717797a8b999f8c2a22efd88e67e62991cd1a0245c7e6c41f2a3a089dd229fd12e633cfb8b2c96604e4799019e8e9c0401f05d4c62d753ba4e10ce189 SHA512 f5ef72b87e663e9c09a510bdfd3507302df6c9206237af1a04469b772e8b6f6aa68bc04364722e168246423cb8da46498a032fb4b33dbbcc844ea7efea7488ad
 DIST limbo-0.0.22.tar.gz 5994615 BLAKE2B 9c26fca141d8797b69b81060a08b91f7017d4966a25856b5d238c874b3a275e52c7ec9719f48a0c45abda2dee8da07972589ddbf69d32889c6600e97f780142f SHA512 127038105f386fd2eb75936de17220ef663ebf341dc900556edb7f43e41c7ecfbf6641ed49e8677458182745325372169fbdeb10f90788d7f03e05349c2090a6
 DIST syntect-64644ffe064457265cbcee12a0c1baf9485ba6ee.gh.tar.gz 957024 BLAKE2B 46a84baedfc9923e4be3f70caa5f32d197659afe5a1c018fe03a473e175c56d60a321ca0378b52173076ff89df365f845d8d23997eaef6bf8082634497fbd031 SHA512 f6a4bd70e294046953923052734f8021ea64a7ef83965dcc13ba60f96fea6d4ad21c68bde71eb245cfd00d080f3decf9911eed85ad360b8d5185e0d018811f97
-DIST turso-0.1.2-crates.tar.xz 32193616 BLAKE2B 85d451546134c1c955ca444b6badd842ddfec54b84e37eb2fa8c508500e71b8f11afdc930a617ce469918f04e2a5a0e720d8e79fb59ae2710f993d7d7d6efd52 SHA512 c33ab806f0f2414030a060f9278917e92690b8d9ca147183648d8aaf18775f11ffd146f7bd79e53a55b2bdfb62129a3ee0cc3c3fabc18dc27fc2b072fc0ecc0a
-DIST turso-0.1.2.tar.gz 6950654 BLAKE2B fb37f7785fb2ea13734d4c5a87c7a8e43fc9be62360b1f0248a127fa730eb406321c4f5a42066ed8dcbfbfb9927e14bd8e5328f4205b6164440ae848c7212ff8 SHA512 5648bcdff44d8ca170ef23c8fa89d02c880ceb257800e603dd1f41de36cd7c2cf8031d59e6d806c5903294bb129879958488a299a799a6a3a79dd8c3b148c4eb
 DIST turso-0.1.3-crates.tar.xz 33760176 BLAKE2B 52826d267e889a673795e85c184f051e07dd36b2fa249d05a588e18a7050f7e0399f36b5c58fad71f48dd27301b9a2d4f184dff3bcf8c343e75ad1de4789e99d SHA512 b6f300b17e9999c14884ebe45386d2f69309c77893acfab3b65731fdcc50158407a1df08d510eae1098f282c6cd2c1d57cf277905e19c1e43a70b96618a8f77b
 DIST turso-0.1.3.tar.gz 7139788 BLAKE2B 1ce594ee70c4270ee3cc4f000faeb9de1ed4c3830c1f13a6bd31a9102f340d2d1990c8e7adf4a2ab00d48f6d0674a5b7bc7d8019016db2d2f527e4dd32a2e840 SHA512 6833a10aadc040e3a9742c47f36346fbcd45f374a1b54c9e6ec29ea3b0b16d34ffedc113df473863f592d35414d160b8bc9bfd0439f97c5c979c9dc435c55874

diff --git a/dev-db/turso/turso-0.1.2.ebuild b/dev-db/turso/turso-0.1.2.ebuild
deleted file mode 100644
index 826958a3d8..0000000000
--- a/dev-db/turso/turso-0.1.2.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 2024-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CRATES=""
-declare -A GIT_CRATES=(
-	[syntect]="https://github.com/trishume/syntect;64644ffe064457265cbcee12a0c1baf9485ba6ee;syntect-%commit%"
-)
-
-inherit cargo linux-info
-
-DESCRIPTION="Turso Database is an in-process OLTP database engine library with a CLI"
-HOMEPAGE="https://github.com/tursodatabase/turso"
-SRC_URI="
-	https://github.com/tursodatabase/${PN}/releases/download/v${PV}/source.tar.gz -> ${P}.tar.gz
-	https://github.com/freijon/${PN}/releases/download/v${PV}/${P}-crates.tar.xz
-	${CARGO_CRATE_URIS}
-"
-
-S="${WORKDIR}/${PN}_cli-${PV}"
-
-LICENSE="MIT"
-# Dependent crate licenses
-LICENSE+="
-	Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 CC0-1.0 CDDL
-	GPL-2.0-with-bison-exception MIT MPL-2.0 Unicode-DFS-2016
-"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+uring"
-
-DEPEND="
-	>=dev-libs/libgit2-0.99:=
-	dev-libs/oniguruma:=
-"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
-	CONFIG_CHECK="~IO_URING"
-	WARNING_IO_URING="The USE flag 'uring' needs the option IO_URING to be enabled."
-
-	use uring && linux-info_pkg_setup
-	rust_pkg_setup
-}
-
-src_configure() {
-	# high magic to allow system-libs
-	export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
-	export RUSTONIG_SYSTEM_LIBONIG=1
-	export LIBGIT2_NO_VENDOR=1
-
-	local myfeatures=(
-		$(use uring && usex "uring" "io_uring")
-	)
-	cargo_src_configure --no-default-features
-}
-
-src_compile() {
-	cargo_src_compile --package "${PN}_cli" --bin "tursodb"
-}
-
-src_install() {
-	cargo_src_install --path cli
-
-	local DOCS=(
-		CHANGELOG.md
-		CONTRIBUTING.md
-		README.md
-	)
-
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-db/turso/
@ 2025-08-20 18:19 Jonas Frei
  0 siblings, 0 replies; 11+ messages in thread
From: Jonas Frei @ 2025-08-20 18:19 UTC (permalink / raw
  To: gentoo-commits

commit:     c0119b461702a0331a31de8d68a8f156a8826ff0
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Wed Aug 20 18:16:35 2025 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Wed Aug 20 18:16:35 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c0119b46

dev-db/turso: drop 0.1.3

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 dev-db/turso/Manifest           |  2 --
 dev-db/turso/turso-0.1.3.ebuild | 73 -----------------------------------------
 2 files changed, 75 deletions(-)

diff --git a/dev-db/turso/Manifest b/dev-db/turso/Manifest
index 17463de091..b9087e9b99 100644
--- a/dev-db/turso/Manifest
+++ b/dev-db/turso/Manifest
@@ -1,7 +1,5 @@
 DIST limbo-0.0.22-crates.tar.xz 31930740 BLAKE2B df38f33717797a8b999f8c2a22efd88e67e62991cd1a0245c7e6c41f2a3a089dd229fd12e633cfb8b2c96604e4799019e8e9c0401f05d4c62d753ba4e10ce189 SHA512 f5ef72b87e663e9c09a510bdfd3507302df6c9206237af1a04469b772e8b6f6aa68bc04364722e168246423cb8da46498a032fb4b33dbbcc844ea7efea7488ad
 DIST limbo-0.0.22.tar.gz 5994615 BLAKE2B 9c26fca141d8797b69b81060a08b91f7017d4966a25856b5d238c874b3a275e52c7ec9719f48a0c45abda2dee8da07972589ddbf69d32889c6600e97f780142f SHA512 127038105f386fd2eb75936de17220ef663ebf341dc900556edb7f43e41c7ecfbf6641ed49e8677458182745325372169fbdeb10f90788d7f03e05349c2090a6
 DIST syntect-64644ffe064457265cbcee12a0c1baf9485ba6ee.gh.tar.gz 957024 BLAKE2B 46a84baedfc9923e4be3f70caa5f32d197659afe5a1c018fe03a473e175c56d60a321ca0378b52173076ff89df365f845d8d23997eaef6bf8082634497fbd031 SHA512 f6a4bd70e294046953923052734f8021ea64a7ef83965dcc13ba60f96fea6d4ad21c68bde71eb245cfd00d080f3decf9911eed85ad360b8d5185e0d018811f97
-DIST turso-0.1.3-crates.tar.xz 33760176 BLAKE2B 52826d267e889a673795e85c184f051e07dd36b2fa249d05a588e18a7050f7e0399f36b5c58fad71f48dd27301b9a2d4f184dff3bcf8c343e75ad1de4789e99d SHA512 b6f300b17e9999c14884ebe45386d2f69309c77893acfab3b65731fdcc50158407a1df08d510eae1098f282c6cd2c1d57cf277905e19c1e43a70b96618a8f77b
-DIST turso-0.1.3.tar.gz 7139788 BLAKE2B 1ce594ee70c4270ee3cc4f000faeb9de1ed4c3830c1f13a6bd31a9102f340d2d1990c8e7adf4a2ab00d48f6d0674a5b7bc7d8019016db2d2f527e4dd32a2e840 SHA512 6833a10aadc040e3a9742c47f36346fbcd45f374a1b54c9e6ec29ea3b0b16d34ffedc113df473863f592d35414d160b8bc9bfd0439f97c5c979c9dc435c55874
 DIST turso-0.1.4-crates.tar.xz 32438116 BLAKE2B 3b6ea32f3f20b1d3d13bd677d9b4412f8c6ce78a312a248bcce051622e7634d65cefac1e125f6de3e99a300ea9848e5e8f1f67022847d94cb8a852443c18882d SHA512 fc6739818e35344a4c904764ba3d5e9ef8a0a6bee7df0e7b3d692298a574d23ecb1039141e20b0153b6ec87b064e3e1f853665f8dc65fde8f274913d08c80cfe
 DIST turso-0.1.4.tar.gz 8556203 BLAKE2B a3a411304812d498caaab6e5b5f9b1830d25ebcfd98e8427b8b245f4f9c6e935499b96ce235cb951085175eb754ea5c1338e9eb8e5ad251b05ae4c6112f7608a SHA512 456cdda3d8433ae6e9b91a88c9e0d36725f11bd2e11261efa931bab2ee8792ef33966714153b6764f0637cbee591aff2e5fd6953983c37abf088293a0f8d95c9

diff --git a/dev-db/turso/turso-0.1.3.ebuild b/dev-db/turso/turso-0.1.3.ebuild
deleted file mode 100644
index 826958a3d8..0000000000
--- a/dev-db/turso/turso-0.1.3.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 2024-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CRATES=""
-declare -A GIT_CRATES=(
-	[syntect]="https://github.com/trishume/syntect;64644ffe064457265cbcee12a0c1baf9485ba6ee;syntect-%commit%"
-)
-
-inherit cargo linux-info
-
-DESCRIPTION="Turso Database is an in-process OLTP database engine library with a CLI"
-HOMEPAGE="https://github.com/tursodatabase/turso"
-SRC_URI="
-	https://github.com/tursodatabase/${PN}/releases/download/v${PV}/source.tar.gz -> ${P}.tar.gz
-	https://github.com/freijon/${PN}/releases/download/v${PV}/${P}-crates.tar.xz
-	${CARGO_CRATE_URIS}
-"
-
-S="${WORKDIR}/${PN}_cli-${PV}"
-
-LICENSE="MIT"
-# Dependent crate licenses
-LICENSE+="
-	Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 CC0-1.0 CDDL
-	GPL-2.0-with-bison-exception MIT MPL-2.0 Unicode-DFS-2016
-"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+uring"
-
-DEPEND="
-	>=dev-libs/libgit2-0.99:=
-	dev-libs/oniguruma:=
-"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
-	CONFIG_CHECK="~IO_URING"
-	WARNING_IO_URING="The USE flag 'uring' needs the option IO_URING to be enabled."
-
-	use uring && linux-info_pkg_setup
-	rust_pkg_setup
-}
-
-src_configure() {
-	# high magic to allow system-libs
-	export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
-	export RUSTONIG_SYSTEM_LIBONIG=1
-	export LIBGIT2_NO_VENDOR=1
-
-	local myfeatures=(
-		$(use uring && usex "uring" "io_uring")
-	)
-	cargo_src_configure --no-default-features
-}
-
-src_compile() {
-	cargo_src_compile --package "${PN}_cli" --bin "tursodb"
-}
-
-src_install() {
-	cargo_src_install --path cli
-
-	local DOCS=(
-		CHANGELOG.md
-		CONTRIBUTING.md
-		README.md
-	)
-
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-db/turso/
@ 2025-08-20 18:19 Jonas Frei
  0 siblings, 0 replies; 11+ messages in thread
From: Jonas Frei @ 2025-08-20 18:19 UTC (permalink / raw
  To: gentoo-commits

commit:     4cfb8a6317b17a3270c49f565bd8dc0b6a228cbc
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Wed Aug 20 18:16:21 2025 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Wed Aug 20 18:16:21 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4cfb8a63

dev-db/turso: add 0.1.4

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 dev-db/turso/Manifest           |  2 ++
 dev-db/turso/turso-0.1.4.ebuild | 73 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 75 insertions(+)

diff --git a/dev-db/turso/Manifest b/dev-db/turso/Manifest
index 647840e43a..17463de091 100644
--- a/dev-db/turso/Manifest
+++ b/dev-db/turso/Manifest
@@ -3,3 +3,5 @@ DIST limbo-0.0.22.tar.gz 5994615 BLAKE2B 9c26fca141d8797b69b81060a08b91f7017d496
 DIST syntect-64644ffe064457265cbcee12a0c1baf9485ba6ee.gh.tar.gz 957024 BLAKE2B 46a84baedfc9923e4be3f70caa5f32d197659afe5a1c018fe03a473e175c56d60a321ca0378b52173076ff89df365f845d8d23997eaef6bf8082634497fbd031 SHA512 f6a4bd70e294046953923052734f8021ea64a7ef83965dcc13ba60f96fea6d4ad21c68bde71eb245cfd00d080f3decf9911eed85ad360b8d5185e0d018811f97
 DIST turso-0.1.3-crates.tar.xz 33760176 BLAKE2B 52826d267e889a673795e85c184f051e07dd36b2fa249d05a588e18a7050f7e0399f36b5c58fad71f48dd27301b9a2d4f184dff3bcf8c343e75ad1de4789e99d SHA512 b6f300b17e9999c14884ebe45386d2f69309c77893acfab3b65731fdcc50158407a1df08d510eae1098f282c6cd2c1d57cf277905e19c1e43a70b96618a8f77b
 DIST turso-0.1.3.tar.gz 7139788 BLAKE2B 1ce594ee70c4270ee3cc4f000faeb9de1ed4c3830c1f13a6bd31a9102f340d2d1990c8e7adf4a2ab00d48f6d0674a5b7bc7d8019016db2d2f527e4dd32a2e840 SHA512 6833a10aadc040e3a9742c47f36346fbcd45f374a1b54c9e6ec29ea3b0b16d34ffedc113df473863f592d35414d160b8bc9bfd0439f97c5c979c9dc435c55874
+DIST turso-0.1.4-crates.tar.xz 32438116 BLAKE2B 3b6ea32f3f20b1d3d13bd677d9b4412f8c6ce78a312a248bcce051622e7634d65cefac1e125f6de3e99a300ea9848e5e8f1f67022847d94cb8a852443c18882d SHA512 fc6739818e35344a4c904764ba3d5e9ef8a0a6bee7df0e7b3d692298a574d23ecb1039141e20b0153b6ec87b064e3e1f853665f8dc65fde8f274913d08c80cfe
+DIST turso-0.1.4.tar.gz 8556203 BLAKE2B a3a411304812d498caaab6e5b5f9b1830d25ebcfd98e8427b8b245f4f9c6e935499b96ce235cb951085175eb754ea5c1338e9eb8e5ad251b05ae4c6112f7608a SHA512 456cdda3d8433ae6e9b91a88c9e0d36725f11bd2e11261efa931bab2ee8792ef33966714153b6764f0637cbee591aff2e5fd6953983c37abf088293a0f8d95c9

diff --git a/dev-db/turso/turso-0.1.4.ebuild b/dev-db/turso/turso-0.1.4.ebuild
new file mode 100644
index 0000000000..826958a3d8
--- /dev/null
+++ b/dev-db/turso/turso-0.1.4.ebuild
@@ -0,0 +1,73 @@
+# Copyright 2024-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CRATES=""
+declare -A GIT_CRATES=(
+	[syntect]="https://github.com/trishume/syntect;64644ffe064457265cbcee12a0c1baf9485ba6ee;syntect-%commit%"
+)
+
+inherit cargo linux-info
+
+DESCRIPTION="Turso Database is an in-process OLTP database engine library with a CLI"
+HOMEPAGE="https://github.com/tursodatabase/turso"
+SRC_URI="
+	https://github.com/tursodatabase/${PN}/releases/download/v${PV}/source.tar.gz -> ${P}.tar.gz
+	https://github.com/freijon/${PN}/releases/download/v${PV}/${P}-crates.tar.xz
+	${CARGO_CRATE_URIS}
+"
+
+S="${WORKDIR}/${PN}_cli-${PV}"
+
+LICENSE="MIT"
+# Dependent crate licenses
+LICENSE+="
+	Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 CC0-1.0 CDDL
+	GPL-2.0-with-bison-exception MIT MPL-2.0 Unicode-DFS-2016
+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+uring"
+
+DEPEND="
+	>=dev-libs/libgit2-0.99:=
+	dev-libs/oniguruma:=
+"
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+	CONFIG_CHECK="~IO_URING"
+	WARNING_IO_URING="The USE flag 'uring' needs the option IO_URING to be enabled."
+
+	use uring && linux-info_pkg_setup
+	rust_pkg_setup
+}
+
+src_configure() {
+	# high magic to allow system-libs
+	export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
+	export RUSTONIG_SYSTEM_LIBONIG=1
+	export LIBGIT2_NO_VENDOR=1
+
+	local myfeatures=(
+		$(use uring && usex "uring" "io_uring")
+	)
+	cargo_src_configure --no-default-features
+}
+
+src_compile() {
+	cargo_src_compile --package "${PN}_cli" --bin "tursodb"
+}
+
+src_install() {
+	cargo_src_install --path cli
+
+	local DOCS=(
+		CHANGELOG.md
+		CONTRIBUTING.md
+		README.md
+	)
+
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-db/turso/
@ 2025-09-15  8:04 Jonas Frei
  0 siblings, 0 replies; 11+ messages in thread
From: Jonas Frei @ 2025-09-15  8:04 UTC (permalink / raw
  To: gentoo-commits

commit:     f6bef19156b81576d13e85430d1d5adacf9098b7
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Mon Sep 15 08:00:51 2025 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Mon Sep 15 08:00:51 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f6bef191

dev-db/turso: add 0.1.5

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 dev-db/turso/Manifest           |  2 ++
 dev-db/turso/turso-0.1.5.ebuild | 74 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+)

diff --git a/dev-db/turso/Manifest b/dev-db/turso/Manifest
index b9087e9b99..f3e0eaabd1 100644
--- a/dev-db/turso/Manifest
+++ b/dev-db/turso/Manifest
@@ -3,3 +3,5 @@ DIST limbo-0.0.22.tar.gz 5994615 BLAKE2B 9c26fca141d8797b69b81060a08b91f7017d496
 DIST syntect-64644ffe064457265cbcee12a0c1baf9485ba6ee.gh.tar.gz 957024 BLAKE2B 46a84baedfc9923e4be3f70caa5f32d197659afe5a1c018fe03a473e175c56d60a321ca0378b52173076ff89df365f845d8d23997eaef6bf8082634497fbd031 SHA512 f6a4bd70e294046953923052734f8021ea64a7ef83965dcc13ba60f96fea6d4ad21c68bde71eb245cfd00d080f3decf9911eed85ad360b8d5185e0d018811f97
 DIST turso-0.1.4-crates.tar.xz 32438116 BLAKE2B 3b6ea32f3f20b1d3d13bd677d9b4412f8c6ce78a312a248bcce051622e7634d65cefac1e125f6de3e99a300ea9848e5e8f1f67022847d94cb8a852443c18882d SHA512 fc6739818e35344a4c904764ba3d5e9ef8a0a6bee7df0e7b3d692298a574d23ecb1039141e20b0153b6ec87b064e3e1f853665f8dc65fde8f274913d08c80cfe
 DIST turso-0.1.4.tar.gz 8556203 BLAKE2B a3a411304812d498caaab6e5b5f9b1830d25ebcfd98e8427b8b245f4f9c6e935499b96ce235cb951085175eb754ea5c1338e9eb8e5ad251b05ae4c6112f7608a SHA512 456cdda3d8433ae6e9b91a88c9e0d36725f11bd2e11261efa931bab2ee8792ef33966714153b6764f0637cbee591aff2e5fd6953983c37abf088293a0f8d95c9
+DIST turso-0.1.5-crates.tar.xz 33885240 BLAKE2B e60e619057b7785a4f0e9261b83141a61f7c4a0048644129d2e8dcf7e69c032bd3f18224169af56c8d8dc35e5f3da089a8f0d0cacb2bc50a03642c3bc02647e7 SHA512 c864a2644c751acdacb328a77a09da26f8efd10ea8f6b7c4e276dd2b95fbe493ca0fac093e6a56650565a4e99b8e519425a2bd52cabd72b74542076739abdd9c
+DIST turso-0.1.5.tar.gz 8690017 BLAKE2B f9c1f55313b5381f013f1c15d765e89ae3068efec98f6bd6fa5facf191a78948da617c4ed50af89cd1b5dfab646574b858239bcd0cc1ed456930960a8ae5a65a SHA512 a1165a1d9c15dae6cc42c22e31f07a626eae44b7527b54a3fc7cb9a890230746d6d55b15c6f145307a5aaffd11e58c8f42a9a51b97c8a7dceca654abd4db2f49

diff --git a/dev-db/turso/turso-0.1.5.ebuild b/dev-db/turso/turso-0.1.5.ebuild
new file mode 100644
index 0000000000..fb726b77ff
--- /dev/null
+++ b/dev-db/turso/turso-0.1.5.ebuild
@@ -0,0 +1,74 @@
+# Copyright 2024-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+RUST_MIN_VER="1.85.0"
+
+declare -A GIT_CRATES=(
+	[syntect]="https://github.com/trishume/syntect;64644ffe064457265cbcee12a0c1baf9485ba6ee;syntect-%commit%"
+)
+
+inherit cargo linux-info
+
+DESCRIPTION="Turso Database is an in-process OLTP database engine library with a CLI"
+HOMEPAGE="https://github.com/tursodatabase/turso"
+SRC_URI="
+	https://github.com/tursodatabase/${PN}/releases/download/v${PV}/source.tar.gz -> ${P}.tar.gz
+	https://github.com/freijon/${PN}/releases/download/v${PV}/${P}-crates.tar.xz
+	${CARGO_CRATE_URIS}
+"
+
+S="${WORKDIR}/${PN}_cli-${PV}"
+
+LICENSE="MIT"
+# Dependent crate licenses
+LICENSE+="
+	Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 CC0-1.0 CDDL
+	GPL-2.0-with-bison-exception MIT MPL-2.0 Unicode-DFS-2016
+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+uring"
+
+DEPEND="
+	>=dev-libs/libgit2-0.99:=
+	dev-libs/oniguruma:=
+"
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+	CONFIG_CHECK="~IO_URING"
+	WARNING_IO_URING="The USE flag 'uring' needs the option IO_URING to be enabled."
+
+	use uring && linux-info_pkg_setup
+	rust_pkg_setup
+}
+
+src_configure() {
+	# high magic to allow system-libs
+	export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
+	export RUSTONIG_SYSTEM_LIBONIG=1
+	export LIBGIT2_NO_VENDOR=1
+
+	local myfeatures=(
+		$(use uring && usex "uring" "io_uring")
+	)
+	cargo_src_configure --no-default-features
+}
+
+src_compile() {
+	cargo_src_compile --package "${PN}_cli" --bin "tursodb"
+}
+
+src_install() {
+	cargo_src_install --path cli
+
+	local DOCS=(
+		CHANGELOG.md
+		CONTRIBUTING.md
+		README.md
+	)
+
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-db/turso/
@ 2025-09-15  8:04 Jonas Frei
  0 siblings, 0 replies; 11+ messages in thread
From: Jonas Frei @ 2025-09-15  8:04 UTC (permalink / raw
  To: gentoo-commits

commit:     4aa9b008673cb55083ce5fe7ada7514443747bfb
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Mon Sep 15 08:01:05 2025 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Mon Sep 15 08:01:05 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4aa9b008

dev-db/turso: drop 0.1.4

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 dev-db/turso/Manifest           |  2 --
 dev-db/turso/turso-0.1.4.ebuild | 73 -----------------------------------------
 2 files changed, 75 deletions(-)

diff --git a/dev-db/turso/Manifest b/dev-db/turso/Manifest
index f3e0eaabd1..6ae0456da4 100644
--- a/dev-db/turso/Manifest
+++ b/dev-db/turso/Manifest
@@ -1,7 +1,5 @@
 DIST limbo-0.0.22-crates.tar.xz 31930740 BLAKE2B df38f33717797a8b999f8c2a22efd88e67e62991cd1a0245c7e6c41f2a3a089dd229fd12e633cfb8b2c96604e4799019e8e9c0401f05d4c62d753ba4e10ce189 SHA512 f5ef72b87e663e9c09a510bdfd3507302df6c9206237af1a04469b772e8b6f6aa68bc04364722e168246423cb8da46498a032fb4b33dbbcc844ea7efea7488ad
 DIST limbo-0.0.22.tar.gz 5994615 BLAKE2B 9c26fca141d8797b69b81060a08b91f7017d4966a25856b5d238c874b3a275e52c7ec9719f48a0c45abda2dee8da07972589ddbf69d32889c6600e97f780142f SHA512 127038105f386fd2eb75936de17220ef663ebf341dc900556edb7f43e41c7ecfbf6641ed49e8677458182745325372169fbdeb10f90788d7f03e05349c2090a6
 DIST syntect-64644ffe064457265cbcee12a0c1baf9485ba6ee.gh.tar.gz 957024 BLAKE2B 46a84baedfc9923e4be3f70caa5f32d197659afe5a1c018fe03a473e175c56d60a321ca0378b52173076ff89df365f845d8d23997eaef6bf8082634497fbd031 SHA512 f6a4bd70e294046953923052734f8021ea64a7ef83965dcc13ba60f96fea6d4ad21c68bde71eb245cfd00d080f3decf9911eed85ad360b8d5185e0d018811f97
-DIST turso-0.1.4-crates.tar.xz 32438116 BLAKE2B 3b6ea32f3f20b1d3d13bd677d9b4412f8c6ce78a312a248bcce051622e7634d65cefac1e125f6de3e99a300ea9848e5e8f1f67022847d94cb8a852443c18882d SHA512 fc6739818e35344a4c904764ba3d5e9ef8a0a6bee7df0e7b3d692298a574d23ecb1039141e20b0153b6ec87b064e3e1f853665f8dc65fde8f274913d08c80cfe
-DIST turso-0.1.4.tar.gz 8556203 BLAKE2B a3a411304812d498caaab6e5b5f9b1830d25ebcfd98e8427b8b245f4f9c6e935499b96ce235cb951085175eb754ea5c1338e9eb8e5ad251b05ae4c6112f7608a SHA512 456cdda3d8433ae6e9b91a88c9e0d36725f11bd2e11261efa931bab2ee8792ef33966714153b6764f0637cbee591aff2e5fd6953983c37abf088293a0f8d95c9
 DIST turso-0.1.5-crates.tar.xz 33885240 BLAKE2B e60e619057b7785a4f0e9261b83141a61f7c4a0048644129d2e8dcf7e69c032bd3f18224169af56c8d8dc35e5f3da089a8f0d0cacb2bc50a03642c3bc02647e7 SHA512 c864a2644c751acdacb328a77a09da26f8efd10ea8f6b7c4e276dd2b95fbe493ca0fac093e6a56650565a4e99b8e519425a2bd52cabd72b74542076739abdd9c
 DIST turso-0.1.5.tar.gz 8690017 BLAKE2B f9c1f55313b5381f013f1c15d765e89ae3068efec98f6bd6fa5facf191a78948da617c4ed50af89cd1b5dfab646574b858239bcd0cc1ed456930960a8ae5a65a SHA512 a1165a1d9c15dae6cc42c22e31f07a626eae44b7527b54a3fc7cb9a890230746d6d55b15c6f145307a5aaffd11e58c8f42a9a51b97c8a7dceca654abd4db2f49

diff --git a/dev-db/turso/turso-0.1.4.ebuild b/dev-db/turso/turso-0.1.4.ebuild
deleted file mode 100644
index 826958a3d8..0000000000
--- a/dev-db/turso/turso-0.1.4.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 2024-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CRATES=""
-declare -A GIT_CRATES=(
-	[syntect]="https://github.com/trishume/syntect;64644ffe064457265cbcee12a0c1baf9485ba6ee;syntect-%commit%"
-)
-
-inherit cargo linux-info
-
-DESCRIPTION="Turso Database is an in-process OLTP database engine library with a CLI"
-HOMEPAGE="https://github.com/tursodatabase/turso"
-SRC_URI="
-	https://github.com/tursodatabase/${PN}/releases/download/v${PV}/source.tar.gz -> ${P}.tar.gz
-	https://github.com/freijon/${PN}/releases/download/v${PV}/${P}-crates.tar.xz
-	${CARGO_CRATE_URIS}
-"
-
-S="${WORKDIR}/${PN}_cli-${PV}"
-
-LICENSE="MIT"
-# Dependent crate licenses
-LICENSE+="
-	Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 CC0-1.0 CDDL
-	GPL-2.0-with-bison-exception MIT MPL-2.0 Unicode-DFS-2016
-"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+uring"
-
-DEPEND="
-	>=dev-libs/libgit2-0.99:=
-	dev-libs/oniguruma:=
-"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
-	CONFIG_CHECK="~IO_URING"
-	WARNING_IO_URING="The USE flag 'uring' needs the option IO_URING to be enabled."
-
-	use uring && linux-info_pkg_setup
-	rust_pkg_setup
-}
-
-src_configure() {
-	# high magic to allow system-libs
-	export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
-	export RUSTONIG_SYSTEM_LIBONIG=1
-	export LIBGIT2_NO_VENDOR=1
-
-	local myfeatures=(
-		$(use uring && usex "uring" "io_uring")
-	)
-	cargo_src_configure --no-default-features
-}
-
-src_compile() {
-	cargo_src_compile --package "${PN}_cli" --bin "tursodb"
-}
-
-src_install() {
-	cargo_src_install --path cli
-
-	local DOCS=(
-		CHANGELOG.md
-		CONTRIBUTING.md
-		README.md
-	)
-
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-db/turso/
@ 2025-10-16 15:52 Jonas Frei
  0 siblings, 0 replies; 11+ messages in thread
From: Jonas Frei @ 2025-10-16 15:52 UTC (permalink / raw
  To: gentoo-commits

commit:     c5d75adcd84481dbf0098c9c4a03413f5909843a
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Thu Oct 16 15:49:02 2025 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Thu Oct 16 15:51:21 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c5d75adc

dev-db/turso: drop 0.0.22, 0.1.5

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 dev-db/turso/Manifest            |  4 ---
 dev-db/turso/turso-0.0.22.ebuild | 73 ---------------------------------------
 dev-db/turso/turso-0.1.5.ebuild  | 74 ----------------------------------------
 3 files changed, 151 deletions(-)

diff --git a/dev-db/turso/Manifest b/dev-db/turso/Manifest
index 989563ee59..117edb5011 100644
--- a/dev-db/turso/Manifest
+++ b/dev-db/turso/Manifest
@@ -1,7 +1,3 @@
-DIST limbo-0.0.22-crates.tar.xz 31930740 BLAKE2B df38f33717797a8b999f8c2a22efd88e67e62991cd1a0245c7e6c41f2a3a089dd229fd12e633cfb8b2c96604e4799019e8e9c0401f05d4c62d753ba4e10ce189 SHA512 f5ef72b87e663e9c09a510bdfd3507302df6c9206237af1a04469b772e8b6f6aa68bc04364722e168246423cb8da46498a032fb4b33dbbcc844ea7efea7488ad
-DIST limbo-0.0.22.tar.gz 5994615 BLAKE2B 9c26fca141d8797b69b81060a08b91f7017d4966a25856b5d238c874b3a275e52c7ec9719f48a0c45abda2dee8da07972589ddbf69d32889c6600e97f780142f SHA512 127038105f386fd2eb75936de17220ef663ebf341dc900556edb7f43e41c7ecfbf6641ed49e8677458182745325372169fbdeb10f90788d7f03e05349c2090a6
 DIST syntect-64644ffe064457265cbcee12a0c1baf9485ba6ee.gh.tar.gz 957024 BLAKE2B 46a84baedfc9923e4be3f70caa5f32d197659afe5a1c018fe03a473e175c56d60a321ca0378b52173076ff89df365f845d8d23997eaef6bf8082634497fbd031 SHA512 f6a4bd70e294046953923052734f8021ea64a7ef83965dcc13ba60f96fea6d4ad21c68bde71eb245cfd00d080f3decf9911eed85ad360b8d5185e0d018811f97
-DIST turso-0.1.5-crates.tar.xz 33885240 BLAKE2B e60e619057b7785a4f0e9261b83141a61f7c4a0048644129d2e8dcf7e69c032bd3f18224169af56c8d8dc35e5f3da089a8f0d0cacb2bc50a03642c3bc02647e7 SHA512 c864a2644c751acdacb328a77a09da26f8efd10ea8f6b7c4e276dd2b95fbe493ca0fac093e6a56650565a4e99b8e519425a2bd52cabd72b74542076739abdd9c
-DIST turso-0.1.5.tar.gz 8690017 BLAKE2B f9c1f55313b5381f013f1c15d765e89ae3068efec98f6bd6fa5facf191a78948da617c4ed50af89cd1b5dfab646574b858239bcd0cc1ed456930960a8ae5a65a SHA512 a1165a1d9c15dae6cc42c22e31f07a626eae44b7527b54a3fc7cb9a890230746d6d55b15c6f145307a5aaffd11e58c8f42a9a51b97c8a7dceca654abd4db2f49
 DIST turso-0.2.2-crates.tar.xz 34176716 BLAKE2B 0646a63836dbaac7b220d3831fe297b88a62a360ee3c16adc9c1943e06751033a09e7b96cda1beef25a8429a9107a3d588030f9eadb594f802521479d6e00e32 SHA512 808863f5dd4306fce5afcb981fea52a784fcc577ac4ba18bc4f0a6da2b8d3e09e45de2626044fa105f06aab94587b90b32600b5f9bf5c6b8e833690914b13622
 DIST turso-0.2.2.tar.gz 7764039 BLAKE2B 7286f6d7edca03418dc28e6608b819f9bc6e5264c24821947035ffe593871632a7f996a1b4b308706005af4b8c6c8fd4b7438771ab129869e7f217ae6fb08fb4 SHA512 1d1e2e959b3e19dd7e159397325aaa026f52f54009710ae860c409b8f58f226c68de6fa81d2b080b2989054e6c15ee7d0f281331b72f41b5fdc77e3a5d2efac5

diff --git a/dev-db/turso/turso-0.0.22.ebuild b/dev-db/turso/turso-0.0.22.ebuild
deleted file mode 100644
index 7926043ae2..0000000000
--- a/dev-db/turso/turso-0.0.22.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 2024-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CRATES=""
-
-inherit cargo linux-info
-
-OLD_PN="limbo"
-OLD_P="${OLD_PN}-${PV}"
-
-DESCRIPTION="The Limbo interactive SQL shell"
-HOMEPAGE="https://github.com/tursodatabase/limbo"
-SRC_URI="
-	https://github.com/tursodatabase/${PN}/releases/download/v${PV}/source.tar.gz -> ${OLD_P}.tar.gz
-"
-DEPS_URI="https://github.com/freijon/${PN}/releases/download/v${PV}/${OLD_P}-crates.tar.xz"
-SRC_URI+=" ${DEPS_URI}"
-
-S="${WORKDIR}/${OLD_PN}_cli-${PV}"
-
-LICENSE="MIT"
-# Dependent crate licenses
-LICENSE+="
-	Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 CC0-1.0 CDDL
-	GPL-2.0-with-bison-exception MIT MPL-2.0 Unicode-DFS-2016
-"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+uring"
-
-DEPEND="
-	>=dev-libs/libgit2-0.99:=
-	dev-libs/oniguruma:=
-"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
-	CONFIG_CHECK="~IO_URING"
-	WARNING_IO_URING="The USE flag 'uring' needs the option IO_URING to be enabled."
-
-	use uring && linux-info_pkg_setup
-	rust_pkg_setup
-}
-
-src_configure() {
-	# high magic to allow system-libs
-	export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
-	export RUSTONIG_SYSTEM_LIBONIG=1
-	export LIBGIT2_NO_VENDOR=1
-
-	local myfeatures=(
-		$(use uring && usex "uring" "io_uring")
-	)
-	cargo_src_configure --no-default-features
-}
-
-src_compile() {
-	cargo_src_compile --package "${OLD_PN}_cli" --bin "${OLD_PN}"
-}
-
-src_install() {
-	cargo_src_install --path cli
-
-	local DOCS=(
-		CHANGELOG.md
-		CONTRIBUTING.md
-		README.md
-	)
-
-	einstalldocs
-}

diff --git a/dev-db/turso/turso-0.1.5.ebuild b/dev-db/turso/turso-0.1.5.ebuild
deleted file mode 100644
index fb726b77ff..0000000000
--- a/dev-db/turso/turso-0.1.5.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 2024-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-RUST_MIN_VER="1.85.0"
-
-declare -A GIT_CRATES=(
-	[syntect]="https://github.com/trishume/syntect;64644ffe064457265cbcee12a0c1baf9485ba6ee;syntect-%commit%"
-)
-
-inherit cargo linux-info
-
-DESCRIPTION="Turso Database is an in-process OLTP database engine library with a CLI"
-HOMEPAGE="https://github.com/tursodatabase/turso"
-SRC_URI="
-	https://github.com/tursodatabase/${PN}/releases/download/v${PV}/source.tar.gz -> ${P}.tar.gz
-	https://github.com/freijon/${PN}/releases/download/v${PV}/${P}-crates.tar.xz
-	${CARGO_CRATE_URIS}
-"
-
-S="${WORKDIR}/${PN}_cli-${PV}"
-
-LICENSE="MIT"
-# Dependent crate licenses
-LICENSE+="
-	Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 CC0-1.0 CDDL
-	GPL-2.0-with-bison-exception MIT MPL-2.0 Unicode-DFS-2016
-"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+uring"
-
-DEPEND="
-	>=dev-libs/libgit2-0.99:=
-	dev-libs/oniguruma:=
-"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
-	CONFIG_CHECK="~IO_URING"
-	WARNING_IO_URING="The USE flag 'uring' needs the option IO_URING to be enabled."
-
-	use uring && linux-info_pkg_setup
-	rust_pkg_setup
-}
-
-src_configure() {
-	# high magic to allow system-libs
-	export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
-	export RUSTONIG_SYSTEM_LIBONIG=1
-	export LIBGIT2_NO_VENDOR=1
-
-	local myfeatures=(
-		$(use uring && usex "uring" "io_uring")
-	)
-	cargo_src_configure --no-default-features
-}
-
-src_compile() {
-	cargo_src_compile --package "${PN}_cli" --bin "tursodb"
-}
-
-src_install() {
-	cargo_src_install --path cli
-
-	local DOCS=(
-		CHANGELOG.md
-		CONTRIBUTING.md
-		README.md
-	)
-
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-db/turso/
@ 2025-10-16 15:52 Jonas Frei
  0 siblings, 0 replies; 11+ messages in thread
From: Jonas Frei @ 2025-10-16 15:52 UTC (permalink / raw
  To: gentoo-commits

commit:     170836030b85d628b7271d07966718c628d04af1
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Thu Oct 16 15:48:40 2025 +0000
Commit:     Jonas Frei <freijon <AT> pm <DOT> me>
CommitDate: Thu Oct 16 15:51:21 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=17083603

dev-db/turso: add 0.2.2

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 dev-db/turso/Manifest           |  2 ++
 dev-db/turso/turso-0.2.2.ebuild | 74 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+)

diff --git a/dev-db/turso/Manifest b/dev-db/turso/Manifest
index 6ae0456da4..989563ee59 100644
--- a/dev-db/turso/Manifest
+++ b/dev-db/turso/Manifest
@@ -3,3 +3,5 @@ DIST limbo-0.0.22.tar.gz 5994615 BLAKE2B 9c26fca141d8797b69b81060a08b91f7017d496
 DIST syntect-64644ffe064457265cbcee12a0c1baf9485ba6ee.gh.tar.gz 957024 BLAKE2B 46a84baedfc9923e4be3f70caa5f32d197659afe5a1c018fe03a473e175c56d60a321ca0378b52173076ff89df365f845d8d23997eaef6bf8082634497fbd031 SHA512 f6a4bd70e294046953923052734f8021ea64a7ef83965dcc13ba60f96fea6d4ad21c68bde71eb245cfd00d080f3decf9911eed85ad360b8d5185e0d018811f97
 DIST turso-0.1.5-crates.tar.xz 33885240 BLAKE2B e60e619057b7785a4f0e9261b83141a61f7c4a0048644129d2e8dcf7e69c032bd3f18224169af56c8d8dc35e5f3da089a8f0d0cacb2bc50a03642c3bc02647e7 SHA512 c864a2644c751acdacb328a77a09da26f8efd10ea8f6b7c4e276dd2b95fbe493ca0fac093e6a56650565a4e99b8e519425a2bd52cabd72b74542076739abdd9c
 DIST turso-0.1.5.tar.gz 8690017 BLAKE2B f9c1f55313b5381f013f1c15d765e89ae3068efec98f6bd6fa5facf191a78948da617c4ed50af89cd1b5dfab646574b858239bcd0cc1ed456930960a8ae5a65a SHA512 a1165a1d9c15dae6cc42c22e31f07a626eae44b7527b54a3fc7cb9a890230746d6d55b15c6f145307a5aaffd11e58c8f42a9a51b97c8a7dceca654abd4db2f49
+DIST turso-0.2.2-crates.tar.xz 34176716 BLAKE2B 0646a63836dbaac7b220d3831fe297b88a62a360ee3c16adc9c1943e06751033a09e7b96cda1beef25a8429a9107a3d588030f9eadb594f802521479d6e00e32 SHA512 808863f5dd4306fce5afcb981fea52a784fcc577ac4ba18bc4f0a6da2b8d3e09e45de2626044fa105f06aab94587b90b32600b5f9bf5c6b8e833690914b13622
+DIST turso-0.2.2.tar.gz 7764039 BLAKE2B 7286f6d7edca03418dc28e6608b819f9bc6e5264c24821947035ffe593871632a7f996a1b4b308706005af4b8c6c8fd4b7438771ab129869e7f217ae6fb08fb4 SHA512 1d1e2e959b3e19dd7e159397325aaa026f52f54009710ae860c409b8f58f226c68de6fa81d2b080b2989054e6c15ee7d0f281331b72f41b5fdc77e3a5d2efac5

diff --git a/dev-db/turso/turso-0.2.2.ebuild b/dev-db/turso/turso-0.2.2.ebuild
new file mode 100644
index 0000000000..fb726b77ff
--- /dev/null
+++ b/dev-db/turso/turso-0.2.2.ebuild
@@ -0,0 +1,74 @@
+# Copyright 2024-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+RUST_MIN_VER="1.85.0"
+
+declare -A GIT_CRATES=(
+	[syntect]="https://github.com/trishume/syntect;64644ffe064457265cbcee12a0c1baf9485ba6ee;syntect-%commit%"
+)
+
+inherit cargo linux-info
+
+DESCRIPTION="Turso Database is an in-process OLTP database engine library with a CLI"
+HOMEPAGE="https://github.com/tursodatabase/turso"
+SRC_URI="
+	https://github.com/tursodatabase/${PN}/releases/download/v${PV}/source.tar.gz -> ${P}.tar.gz
+	https://github.com/freijon/${PN}/releases/download/v${PV}/${P}-crates.tar.xz
+	${CARGO_CRATE_URIS}
+"
+
+S="${WORKDIR}/${PN}_cli-${PV}"
+
+LICENSE="MIT"
+# Dependent crate licenses
+LICENSE+="
+	Apache-2.0 Apache-2.0-with-LLVM-exceptions Boost-1.0 CC0-1.0 CDDL
+	GPL-2.0-with-bison-exception MIT MPL-2.0 Unicode-DFS-2016
+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+uring"
+
+DEPEND="
+	>=dev-libs/libgit2-0.99:=
+	dev-libs/oniguruma:=
+"
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+	CONFIG_CHECK="~IO_URING"
+	WARNING_IO_URING="The USE flag 'uring' needs the option IO_URING to be enabled."
+
+	use uring && linux-info_pkg_setup
+	rust_pkg_setup
+}
+
+src_configure() {
+	# high magic to allow system-libs
+	export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
+	export RUSTONIG_SYSTEM_LIBONIG=1
+	export LIBGIT2_NO_VENDOR=1
+
+	local myfeatures=(
+		$(use uring && usex "uring" "io_uring")
+	)
+	cargo_src_configure --no-default-features
+}
+
+src_compile() {
+	cargo_src_compile --package "${PN}_cli" --bin "tursodb"
+}
+
+src_install() {
+	cargo_src_install --path cli
+
+	local DOCS=(
+		CHANGELOG.md
+		CONTRIBUTING.md
+		README.md
+	)
+
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2025-10-16 15:52 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-20 18:19 [gentoo-commits] repo/proj/guru:dev commit in: dev-db/turso/ Jonas Frei
  -- strict thread matches above, loose matches on Subject: below --
2025-10-16 15:52 Jonas Frei
2025-10-16 15:52 Jonas Frei
2025-09-15  8:04 Jonas Frei
2025-09-15  8:04 Jonas Frei
2025-08-20 18:19 Jonas Frei
2025-08-04  5:15 Jonas Frei
2025-08-04  5:15 Jonas Frei
2025-07-23 18:25 Jonas Frei
2025-07-23 18:25 Jonas Frei
2025-07-02 18:57 Jonas Frei

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox