public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sqlite3/
Date: Fri, 07 Nov 2025 07:11:26 +0000 (UTC)	[thread overview]
Message-ID: <1762499215.6d1e2fc7f6b57f8966a88391deeba02b07c0d11a.graaff@gentoo> (raw)

commit:     6d1e2fc7f6b57f8966a88391deeba02b07c0d11a
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Nov  7 07:06:55 2025 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Nov  7 07:06:55 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d1e2fc7

dev-ruby/sqlite3: add 2.8.0

Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/sqlite3/Manifest             |  1 +
 dev-ruby/sqlite3/sqlite3-2.8.0.ebuild | 66 +++++++++++++++++++++++++++++++++++
 2 files changed, 67 insertions(+)

diff --git a/dev-ruby/sqlite3/Manifest b/dev-ruby/sqlite3/Manifest
index a4da02e7f0d6..44e80d95bead 100644
--- a/dev-ruby/sqlite3/Manifest
+++ b/dev-ruby/sqlite3/Manifest
@@ -2,3 +2,4 @@ DIST sqlite3-1.7.3.gem 3307008 BLAKE2B 0df742c7cb4a8f920196106b5701eae07e60e668f
 DIST sqlite3-2.6.0.tar.gz 94405 BLAKE2B f59eae6d25c6ee6585fb6047805281d30b3e86fe077d9ab0c91486a19eba643bb9096aea711331b3bded0b6237bfb3cbdc8055d3949104309271c4b0c1c42234 SHA512 f2ade31c4f179a6a3f7474679e029d98106523d7b27b05ce80d3ee8efa2c9bad0154470c37dc3e95d27ad47a39590f0724c7855ef43c58a380419621b7077453
 DIST sqlite3-2.7.3.tar.gz 94800 BLAKE2B 08036a1078818c6e6c5c67d922aa8ebcb05dbd8f2a1789e52af5014e41a39f9c5a9b373e356f99919c2227fc62996e2e87198f6253a102af03076e614f072fa2 SHA512 30015de31653b6dbec699a8245172b2db921c7f2c5c74872f926ceec06226bb43545f3caa89a6cc846761dcd3e291e8d9508cc787a1f520eda036df01f03e30e
 DIST sqlite3-2.7.4.tar.gz 94824 BLAKE2B f7726bebfa44fb724c23c58b5a20c733c31a916224cefc0da2fac5390cec0c87fa2a8377e0a01fa824a4bd3dcdd7e46feecca14feb06d0265a095b0564e52a84 SHA512 eba6eb50ec017f66996e4bb4491d22579912f323aeaa6d0ec57465ddda71acefe8c12d582eb2fc8aa85691c6420ea6b30b697cf208479a40afbbc82ad7ad4f2d
+DIST sqlite3-2.8.0.tar.gz 94833 BLAKE2B 6ff832dea938f3dd29a5cde3d2424202042bb993737f99a3056ea1e6707b757f404aa6b0aac87e3f46f82f6a37211319205ab024808665deda5f3a9d5aded887 SHA512 43493a5aef6c0514fa64286d35612dabca2d926abb84f6827638f3fcc81eeead1e611f5d615d3a3d30db25cb2d3267d539424a90e76e03117058e529e795ddf3

diff --git a/dev-ruby/sqlite3/sqlite3-2.8.0.ebuild b/dev-ruby/sqlite3/sqlite3-2.8.0.ebuild
new file mode 100644
index 000000000000..d3279b538516
--- /dev/null
+++ b/dev-ruby/sqlite3/sqlite3-2.8.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby32 ruby33 ruby34"
+
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_TASK_DOC="faq"
+RUBY_FAKEGEM_DOCDIR="doc faq"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/sqlite3/extconf.rb)
+RUBY_FAKEGEM_EXTENSION_LIBDIR=lib/sqlite3
+RUBY_FAKEGEM_GEMSPEC="sqlite3.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="An extension library to access a SQLite database from Ruby"
+HOMEPAGE="https://github.com/sparklemotion/sqlite3-ruby"
+SRC_URI="https://github.com/sparklemotion/sqlite3-ruby/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+RUBY_S="sqlite3-ruby-${PV}"
+LICENSE="BSD"
+
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+IUSE="doc test"
+
+# We track the bundled sqlite version here
+RDEPEND=">=dev-db/sqlite-3.51.0:3"
+DEPEND=">=dev-db/sqlite-3.51.0:3"
+
+ruby_add_bdepend "
+	doc? ( dev-ruby/rdoc )
+	test? ( dev-ruby/minitest:5 )
+"
+
+all_ruby_prepare() {
+	sed -i -e 's/enable_config("system-libraries")/true/' ext/sqlite3/extconf.rb || die
+
+	# Remove the runtime dependency on mini_portile2. We build without
+	# it and it is not a runtime dependency for us.
+	sed -e '/mini_portile2/ s:^:#:' \
+		-e '/WARNING/ s:^:#:' \
+		-e "s/0.0.0/${PV}/" \
+		-i ${RUBY_FAKEGEM_GEMSPEC} || die
+
+	# Avoid a failing spec for reprepares stats. Upstream indicates that
+	# the stats data should not be relied on other than for human
+	# debugging.
+	sed -e '/def test_stat_reprepares/askip "Fails on Gentoo"' \
+		-i test/test_statement.rb || die
+}
+
+all_ruby_compile() {
+	all_fakegem_compile
+
+	if use doc; then
+		rdoc --title "${P} Documentation" -o doc --main README.rdoc lib *.rdoc ext/*/*.c || die
+		rm -f doc/js/*.gz || die
+	fi
+}
+
+each_ruby_test() {
+	${RUBY} -Ilib:test:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die
+}


             reply	other threads:[~2025-11-07  7:11 UTC|newest]

Thread overview: 110+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-07  7:11 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-11-07  7:11 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sqlite3/ Hans de Graaff
2025-10-01 20:17 Arthur Zamarin
2025-10-01 20:17 Arthur Zamarin
2025-10-01 14:12 Sam James
2025-10-01 14:12 Sam James
2025-10-01 10:09 Hans de Graaff
2025-10-01 10:09 Hans de Graaff
2025-08-05  9:35 Hans de Graaff
2025-08-05  9:35 Hans de Graaff
2025-07-18 19:29 Sam James
2025-07-18 10:43 Arthur Zamarin
2025-07-18 10:43 Arthur Zamarin
2025-07-18 10:43 Arthur Zamarin
2025-07-08  5:54 Hans de Graaff
2025-06-10  4:59 Hans de Graaff
2025-06-01 12:11 Hans de Graaff
2025-06-01 12:11 Hans de Graaff
2025-03-09  8:44 Hans de Graaff
2025-01-03  8:31 Hans de Graaff
2025-01-01  7:38 Hans de Graaff
2024-12-22  7:06 Hans de Graaff
2024-11-24  8:07 Hans de Graaff
2024-11-18 19:49 Hans de Graaff
2024-11-12 11:05 Hans de Graaff
2024-11-12 11:05 Hans de Graaff
2024-10-17  7:19 Sam James
2024-10-17  7:08 Sam James
2024-10-17  6:57 Arthur Zamarin
2024-10-17  6:57 Arthur Zamarin
2024-09-13  6:46 Hans de Graaff
2024-09-12  5:33 Hans de Graaff
2024-09-07  8:31 Hans de Graaff
2024-09-07  8:29 Hans de Graaff
2024-06-02  5:43 Hans de Graaff
2024-06-02  5:43 Hans de Graaff
2024-06-01 12:07 Arthur Zamarin
2024-06-01 11:03 Arthur Zamarin
2024-06-01 10:28 Arthur Zamarin
2024-04-02  5:38 Hans de Graaff
2024-04-02  5:38 Hans de Graaff
2024-02-04  8:12 Hans de Graaff
2023-12-28 10:26 Hans de Graaff
2023-12-21  8:05 Arthur Zamarin
2023-12-21  7:27 Arthur Zamarin
2023-12-06  9:29 Hans de Graaff
2023-11-29  7:14 Hans de Graaff
2023-10-25  5:22 Hans de Graaff
2023-10-11  5:37 Hans de Graaff
2023-10-11  5:37 Hans de Graaff
2023-09-14  5:15 Hans de Graaff
2023-09-10  5:57 Hans de Graaff
2023-09-02  5:45 Hans de Graaff
2023-08-20  8:11 Sam James
2023-08-19  7:23 Sam James
2023-08-02 15:11 Sam James
2023-07-24 10:05 Jakov Smolić
2023-07-10 18:10 Hans de Graaff
2023-06-23 19:04 Hans de Graaff
2023-06-12  2:27 Sam James
2023-04-23 20:00 Sam James
2023-04-23 20:00 Sam James
2023-04-23 19:56 Sam James
2023-04-23 19:52 Sam James
2023-04-02  5:07 Sam James
2023-03-28 19:15 Sam James
2023-03-20  4:47 Sam James
2023-03-18 23:12 Sam James
2022-10-22  4:36 Hans de Graaff
2022-10-22  4:36 Hans de Graaff
2022-10-22  4:36 Hans de Graaff
2022-06-16  5:37 Hans de Graaff
2022-06-14  5:04 Hans de Graaff
2022-04-22  6:56 Hans de Graaff
2021-11-08  2:51 Yixun Lan
2021-09-25  8:49 Hans de Graaff
2021-09-25  5:18 Agostino Sarubbo
2021-09-13  7:00 Agostino Sarubbo
2021-09-13  6:59 Agostino Sarubbo
2021-09-13  6:57 Agostino Sarubbo
2021-07-06 19:41 Hans de Graaff
2021-04-29  1:52 Sam James
2021-04-07  6:14 Hans de Graaff
2021-02-13  7:55 Hans de Graaff
2020-03-22  6:31 Hans de Graaff
2020-02-27  6:05 Hans de Graaff
2019-12-20  7:21 Hans de Graaff
2019-11-04 18:34 Hans de Graaff
2019-04-30  5:49 Hans de Graaff
2019-02-05  6:02 Hans de Graaff
2018-10-14  6:16 Hans de Graaff
2018-07-30 21:50 Sergei Trofimovich
2018-06-27 22:15 Sergei Trofimovich
2018-06-26  2:04 Aaron Bauman
2018-05-14  4:23 Hans de Graaff
2018-04-09  5:10 Hans de Graaff
2017-11-26 12:23 Hans de Graaff
2017-06-21  7:27 Hans de Graaff
2017-01-05  7:04 Hans de Graaff
2017-01-05  6:40 Hans de Graaff
2016-11-25 10:10 Hans de Graaff
2016-11-25  9:43 Hans de Graaff
2016-11-06 14:41 Hans de Graaff
2016-10-09  5:50 Hans de Graaff
2016-10-02  9:22 Jeroen Roovers
2016-08-01  5:41 Hans de Graaff
2016-07-28 18:30 Richard Farina
2016-07-14  5:52 Hans de Graaff
2016-04-16 13:08 Manuel Rüger
2015-10-13  5:26 Hans de Graaff

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=1762499215.6d1e2fc7f6b57f8966a88391deeba02b07c0d11a.graaff@gentoo \
    --to=graaff@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

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

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