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: Sun, 9 Oct 2016 05:50:01 +0000 (UTC) [thread overview]
Message-ID: <1475991923.8fecbf082653101f84d8336f9c8502df662562c6.graaff@gentoo> (raw)
commit: 8fecbf082653101f84d8336f9c8502df662562c6
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 9 05:45:23 2016 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Oct 9 05:45:23 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fecbf08
dev-ruby/sqlite3: add 1.3.12
Package-Manager: portage-2.3.0
dev-ruby/sqlite3/Manifest | 1 +
dev-ruby/sqlite3/sqlite3-1.3.12.ebuild | 84 ++++++++++++++++++++++++++++++++++
2 files changed, 85 insertions(+)
diff --git a/dev-ruby/sqlite3/Manifest b/dev-ruby/sqlite3/Manifest
index 244cba3..1c8cd50 100644
--- a/dev-ruby/sqlite3/Manifest
+++ b/dev-ruby/sqlite3/Manifest
@@ -1,2 +1,3 @@
DIST sqlite3-1.3.10.gem 60416 SHA256 70d815be84bd9630a0b68b236fd2811eef4297a8e4b53e3df89dd39f2d39efe3 SHA512 0a35896a4b9ce4f1e0f29ef9385f13b418b089d9bad467290e21eb12a4d09ce755231f5844c5009013ac9c73a27f7050ce899660d93d6ecc9e919f048a073cfe WHIRLPOOL 95f5f6d2944012cd4778f5d29e63ae43208e247ff5a9d184409dec4756beb14b90878c5ae6b337bf3f3d1fb9049de0cf65625a8544a429c735d5d9b66f90cd1d
DIST sqlite3-1.3.11.gem 60928 SHA256 de8ecdcc00a7af0cda98661ed94ce442964b9403b425e95c3ac4544b1f3720a7 SHA512 02bef5f8f61d1f04c79d9032d62c9d708dddc2446dd256ad13f932ed4cae256d6c60f742a285bc4015ef5b1fb13e9541738f31fd270fe22320fc176525fe37bb WHIRLPOOL 2fb319f159e50d372ae374a6656b7452a746f6a85d94c7b15745feea73dc9c107dd4c51af54c76115ebe184ef906e41e53f2a72b9beffdada5a533cc5f142494
+DIST sqlite3-1.3.12.gem 64512 SHA256 7d912f1b53d4bc11f84c4076c7ebae73bc21a9d82cc2df750fc37bbef3418d42 SHA512 fd1888b3107b02b15a65fdf081cad59445de4bc00ed244f4d3c09504c78ebbe97d9e1e189d61e6776ef70dedcb4d7b976799fd9d4752caafff733bc50cd0abf5 WHIRLPOOL 0cab560c5f5bae01ac80490d11154e9cb8ab1567fe2596db568023006bb35f2f26c6fa1dfdac47d5d70ec821df846a5337179ac0b96fb6667c4021c5b7f16a9b
diff --git a/dev-ruby/sqlite3/sqlite3-1.3.12.ebuild b/dev-ruby/sqlite3/sqlite3-1.3.12.ebuild
new file mode 100644
index 00000000..d9f8eb7
--- /dev/null
+++ b/dev-ruby/sqlite3/sqlite3-1.3.12.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_TASK_DOC="faq"
+RUBY_FAKEGEM_DOCDIR="doc faq"
+RUBY_FAKEGEM_EXTRADOC="API_CHANGES.rdoc README.rdoc ChangeLog.cvs CHANGELOG.rdoc"
+
+inherit multilib 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 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+SLOT="0"
+IUSE=""
+
+RDEPEND+=" >=dev-db/sqlite-3.6.16:3"
+DEPEND+=" >=dev-db/sqlite-3.6.16:3"
+
+ruby_add_bdepend "
+ dev-ruby/rake-compiler
+ dev-ruby/hoe
+ doc? ( dev-ruby/redcloth )
+ test? ( dev-ruby/minitest:5 )"
+
+all_ruby_prepare() {
+ # We remove the vendor_sqlite3 rake task because it's used to
+ # bundle SQlite3 which we definitely don't want.
+ rm tasks/vendor_sqlite3.rake || die
+
+ # Remove license line from hoe to avoid depending on a newer
+ # version.
+ sed -i -e '/license/d' tasks/gem.rake || die
+
+ sed -i -e 's:, HOE.spec::' -e '/task :test/d' tasks/native.rake || die
+}
+
+each_ruby_configure() {
+ ${RUBY} -Cext/sqlite3 extconf.rb || die
+}
+
+all_ruby_compile() {
+ all_fakegem_compile
+
+ if use doc; then
+ rdoc --title "${P} Dcoumentation" -o doc --main README.rdoc lib *.rdoc ext/*/*.c || die
+ fi
+}
+
+each_ruby_compile() {
+ # TODO: not sure what happens with jruby
+
+ emake -Cext/sqlite3 V=1
+ mv ext/sqlite3/sqlite3_native$(get_modname) lib/sqlite3/ || die
+}
+
+each_ruby_install() {
+ each_fakegem_install
+
+ # sqlite3 was called sqlite3-ruby before, so add a spec file that
+ # simply loads sqlite3 to make sure that old projects load correctly
+ # we don't even need to create a file to load this: the `require
+ # sqlite3` was already part of sqlite3-ruby requirements.
+ cat - <<EOF > "${T}/sqlite3-ruby.gemspec"
+# generated by ebuild
+# $Id$
+Gem::Specification.new do |s|
+ s.name = "sqlite3-ruby"
+ s.version = "${RUBY_FAKEGEM_VERSION}"
+ s.summary = "Fake gem to load sqlite3"
+ s.homepage = "${HOMEPAGE}"
+ s.specification_version = 3
+ s.add_runtime_dependency("${RUBY_FAKEGEM_NAME}", ["= ${RUBY_FAKEGEM_VERSION}"])
+end
+EOF
+ RUBY_FAKEGEM_NAME=sqlite3-ruby \
+ RUBY_FAKEGEM_GEMSPEC="${T}/sqlite3-ruby.gemspec" \
+ ruby_fakegem_install_gemspec
+}
next reply other threads:[~2016-10-09 5:50 UTC|newest]
Thread overview: 84+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-09 5:50 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-17 7:19 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sqlite3/ 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-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=1475991923.8fecbf082653101f84d8336f9c8502df662562c6.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