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: Thu, 14 Sep 2023 05:15:19 +0000 (UTC)	[thread overview]
Message-ID: <1694668503.7d84410a542f4b6e36ef9cf12a8464ec27bc886e.graaff@gentoo> (raw)

commit:     7d84410a542f4b6e36ef9cf12a8464ec27bc886e
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 14 05:15:03 2023 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Thu Sep 14 05:15:03 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d84410a

dev-ruby/sqlite3: add 1.6.6

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

 dev-ruby/sqlite3/Manifest             |  1 +
 dev-ruby/sqlite3/sqlite3-1.6.6.ebuild | 53 +++++++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/dev-ruby/sqlite3/Manifest b/dev-ruby/sqlite3/Manifest
index bf49f50bef4a..40966a19ab9c 100644
--- a/dev-ruby/sqlite3/Manifest
+++ b/dev-ruby/sqlite3/Manifest
@@ -3,3 +3,4 @@ DIST sqlite3-1.6.1.gem 3194368 BLAKE2B f06fc82454730ad136c0824258d4f0fba75d2e2e2
 DIST sqlite3-1.6.3.gem 3219968 BLAKE2B 3243aa61993cf0e9f20b46f4e02ca88a17f204d05815cd7661910e39034a7a83822943db643d8ae2dee758b6e78063f6201446a91c9552f518da5eb1edf6f3c7 SHA512 017fc5b5e4a7955da84e105a13213e702d16a1489371748c3a9170f92e9af3a8ed458c3867e13a17bf7fa30baf026e2efc8cd548b5695cad5397323ea6a71112
 DIST sqlite3-1.6.4.gem 3248640 BLAKE2B 95deb2f826c912948b677c33b405e6f95ac124fe61074a30217aa823eceb9b8a2fc659e8c71e37c0dab4b30371f047ae693a401644a3d7c48d5b259926b81fc9 SHA512 47eb7b40305450d4e4a90c2985163ed6e8b971358405a6a8a4e24f6cc959921c19fb16d987bacbc2697de4bf9d9215b4395fbeb641bf2e281b3e13d82da8eef5
 DIST sqlite3-1.6.5.gem 3249664 BLAKE2B 22f20fffd3c005d452efd4a27b8d6a8c56e09f4078f4c44c72eb48d740c8184803de21ed9ca8d2befc636cd1510e182fd6d1a51a23bebe07b44d70e6722024dd SHA512 a297cb3daf27bcc9933e7521771fa1c570a3e6850dc498659f6b61b8add5d7765ea9758c0549a8c2ded7d9e23aadb6530c1c9c494ce83263b4c4a566ac7d5437
+DIST sqlite3-1.6.6.gem 3250176 BLAKE2B 94afd152f77118af066de36ae1269c8a18b19409b5d2940d4b5fda926b49b9a7599442bd4b8ff060fcacfaff09e55375ec50d4616e99a8e884a410dfdaeb1420 SHA512 5679ea1ef4a8a54c6f60e53403e9d0e1b00e718593058b4532dbc4240ba4a52a36c17e8dd5908402c8fd944b7cc4642c1bdfe648fc4b86da0677512340736525

diff --git a/dev-ruby/sqlite3/sqlite3-1.6.6.ebuild b/dev-ruby/sqlite3/sqlite3-1.6.6.ebuild
new file mode 100644
index 000000000000..1c447b5d638d
--- /dev/null
+++ b/dev-ruby/sqlite3/sqlite3-1.6.6.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby31 ruby32"
+
+RUBY_FAKEGEM_TASK_DOC="faq"
+RUBY_FAKEGEM_DOCDIR="doc faq"
+RUBY_FAKEGEM_EXTRADOC="API_CHANGES.md README.md ChangeLog.cvs CHANGELOG.md"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/sqlite3/extconf.rb)
+RUBY_FAKEGEM_EXTENSION_LIBDIR=lib/sqlite3
+
+inherit ruby-fakegem
+
+DESCRIPTION="An extension library to access a SQLite database from Ruby"
+HOMEPAGE="https://github.com/sparklemotion/sqlite3-ruby"
+LICENSE="BSD"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+SLOT="0"
+IUSE=""
+
+# We track the bundled sqlite version here
+RDEPEND+=" >=dev-db/sqlite-3.43.1:3"
+DEPEND+=" >=dev-db/sqlite-3.43.1:3"
+
+ruby_add_bdepend "
+	doc? ( dev-ruby/rdoc dev-ruby/redcloth )
+	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 -i -e '/^dependencies:/,/force_ruby_platform/d' ../metadata || 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:[~2023-09-14  5:15 UTC|newest]

Thread overview: 80+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-14  5:15 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-13  6:46 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sqlite3/ 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-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=1694668503.7d84410a542f4b6e36ef9cf12a8464ec27bc886e.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