From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/msgpack/
Date: Sat, 28 Jan 2017 06:48:07 +0000 (UTC) [thread overview]
Message-ID: <1485585923.911bf30972edbec504cae1f325a6e03741013daa.graaff@gentoo> (raw)
commit: 911bf30972edbec504cae1f325a6e03741013daa
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 28 06:45:23 2017 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Jan 28 06:45:23 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=911bf309
dev-ruby/msgpack: add 1.0.3
Package-Manager: portage-2.3.3
dev-ruby/msgpack/Manifest | 1 +
dev-ruby/msgpack/msgpack-1.0.3.ebuild | 45 +++++++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/dev-ruby/msgpack/Manifest b/dev-ruby/msgpack/Manifest
index 2f891a6..3729271 100644
--- a/dev-ruby/msgpack/Manifest
+++ b/dev-ruby/msgpack/Manifest
@@ -1,3 +1,4 @@
DIST msgpack-0.7.6.gem 74752 SHA256 8537beb868cc6e742488c54928961cd79694fa0ef5d10772dd3e3eaf62ccc2ba SHA512 9d30533175118c08f671015a99664e4798c845f63595495933b42f0fa95c160a6708e472da70baeb64537a704dd4768cdc9ab99a19045daabd92555b21f4e389 WHIRLPOOL 879e5b6b3fc6cd82d28cce5c4f91621437b2cfc34caf21bdbad5d1bf48d8f7719c97b7b1f96e5648ddc77cee679911c58711a8804dc30765f1ae3ff7f8e32f94
DIST msgpack-1.0.1.gem 77312 SHA256 b6b2253658ebea78c3933a72b50463414e9cbcd29daf7ebf070a5d7c6bef195f SHA512 6a8edde5ef049a5fc3304200424d263d1d67b2e4e3c49480c17b3377713beb7f6e83e43b8a7b1358bb511671b6a7f77650fd949e9c7c432b6fe4141a40628c32 WHIRLPOOL f5e680c8064be6a492f7de46d967f0d491d0c50704413910fbe890d59f11fbc2bb8a8f35efdff25df3411def388e8adee9e77279eecd42812c829b657c6068b3
DIST msgpack-1.0.2.gem 77312 SHA256 8f9a01d2456276e37f29ceb8b5deaf541f98358db3f8bc96a617011992af62b9 SHA512 e821c7057ee3497c833be522c4baa8133ae029ff582bd9892ab20b8981d26c757d6348e8ae9ea4288ef3d4fccc44c5d7304473a9e4c7475a78727811630ccfe9 WHIRLPOOL 68e6c41d7e07abca71096f27f37693beb0991b54483aa95a1d47589a028403739b08f68f9dad81d29f827f266af1e2d4b341c889079bad2f05ede1cea9701ebe
+DIST msgpack-1.0.3.gem 77312 SHA256 6a0de861d6ef51e9155ddac15a476358fbcc21d64be059b7cc2dea076c130623 SHA512 b76db7f5c91128d19677774c7bf8c914a7e85e374fc0149bf5d0b470729fa01f4fdf173f7397e6f8df32af760a622a405cdc6d268f45b776b172bb39b9f1f4f7 WHIRLPOOL 77ee2a14fbcd1245ee8e515df8756b2d37aa7f89b842b5e67726b72b6cc1e8bec3d91bc223107cb03a7402d1b2ea3328900f5d7c6119363fcca059bf9d4278bc
diff --git a/dev-ruby/msgpack/msgpack-1.0.3.ebuild b/dev-ruby/msgpack/msgpack-1.0.3.ebuild
new file mode 100644
index 00000000..4deeae2
--- /dev/null
+++ b/dev-ruby/msgpack/msgpack-1.0.3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_TASK_DOC="doc"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRADOC="README.rdoc"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Binary-based efficient data interchange format for ruby binding"
+HOMEPAGE="https://msgpack.org/"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~x86-fbsd"
+IUSE="doc"
+
+ruby_add_bdepend "doc? ( dev-ruby/yard )"
+
+all_ruby_prepare() {
+ sed -i -e '/bundler/I s:^:#:' Rakefile || die
+
+ # Remove jruby-specific specs that are run also for other rubies.
+ rm -rf spec/jruby || die
+
+ sed -i -e '/git ls-files/d' msgpack.gemspec || die
+}
+
+each_ruby_configure() {
+ ${RUBY} -Cext/${PN} extconf.rb || die "Configuration of extension failed."
+
+ # rb_num2int is not inlined on 32 bit arches but also not explicitly
+ # defined, bug 582968
+ sed -i -e 's:-Wl,--no-undefined::' ext/${PN}/Makefile || die
+}
+
+each_ruby_compile() {
+ emake V=1 -Cext/${PN}
+ cp ext/${PN}/msgpack$(get_modname) lib/${PN} || die "Unable to install msgpack library."
+}
next reply other threads:[~2017-01-28 6:48 UTC|newest]
Thread overview: 76+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-28 6:48 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-01 16:31 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/msgpack/ Hans de Graaff
2025-02-07 5:58 Hans de Graaff
2024-11-12 10:46 Hans de Graaff
2024-11-12 10:46 Hans de Graaff
2024-11-02 11:45 Arthur Zamarin
2024-10-30 15:46 Arthur Zamarin
2024-10-30 14:41 Sam James
2024-10-30 11:07 Sam James
2024-10-30 11:07 Sam James
2024-10-30 11:07 Sam James
2024-10-05 7:00 Hans de Graaff
2024-10-05 7:00 Hans de Graaff
2024-06-01 5:41 Hans de Graaff
2023-12-31 17:15 Hans de Graaff
2023-12-06 17:57 Ionen Wolkens
2023-11-24 9:31 Sam James
2023-11-23 21:09 Sam James
2023-11-23 17:12 Sam James
2023-11-15 18:39 Arthur Zamarin
2023-11-15 17:49 Jakov Smolić
2023-07-19 5:26 Hans de Graaff
2023-07-11 9:43 Hans de Graaff
2023-07-02 7:49 Hans de Graaff
2023-06-06 13:40 Hans de Graaff
2023-03-18 23:12 Sam James
2022-10-01 7:06 Hans de Graaff
2022-08-26 11:45 Hans de Graaff
2022-08-26 11:45 Hans de Graaff
2022-07-26 6:45 Hans de Graaff
2022-07-06 5:28 Hans de Graaff
2022-06-25 8:55 Hans de Graaff
2022-05-28 5:39 Hans de Graaff
2022-05-28 5:39 Hans de Graaff
2022-04-09 7:38 Hans de Graaff
2022-03-17 6:40 Hans de Graaff
2022-02-05 6:57 Hans de Graaff
2022-01-30 8:19 Hans de Graaff
2022-01-20 6:40 Hans de Graaff
2021-10-27 11:26 Hans de Graaff
2021-04-02 11:16 Hans de Graaff
2021-02-07 8:24 Hans de Graaff
2020-08-08 6:37 Hans de Graaff
2020-02-05 6:16 Hans de Graaff
2019-08-05 5:17 Hans de Graaff
2019-08-05 5:17 Hans de Graaff
2019-06-21 6:05 Hans de Graaff
2019-05-07 5:16 Hans de Graaff
2019-05-07 5:16 Hans de Graaff
2019-03-11 6:25 Hans de Graaff
2019-03-01 6:09 Hans de Graaff
2019-03-01 6:09 Hans de Graaff
2019-01-09 9:12 Hans de Graaff
2018-04-06 4:54 Hans de Graaff
2018-03-03 6:41 Hans de Graaff
2018-02-04 15:15 Hans de Graaff
2018-01-12 6:01 Hans de Graaff
2018-01-12 6:01 Hans de Graaff
2017-12-07 6:36 Hans de Graaff
2017-10-28 16:23 Andreas Sturmlechner
2017-09-10 7:53 Hans de Graaff
2017-03-07 6:01 Hans de Graaff
2016-11-14 6:39 Hans de Graaff
2016-11-14 6:39 Hans de Graaff
2016-10-17 5:23 Hans de Graaff
2016-08-22 19:15 Ole Reifschneider
2016-05-30 18:15 Hans de Graaff
2016-05-30 18:15 Hans de Graaff
2016-05-11 4:55 Hans de Graaff
2016-04-06 5:13 Hans de Graaff
2016-04-06 5:13 Hans de Graaff
2016-01-10 7:28 Hans de Graaff
2016-01-10 7:28 Hans de Graaff
2015-11-24 7:00 Hans de Graaff
2015-10-25 8:30 Hans de Graaff
2015-10-25 8:30 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=1485585923.911bf30972edbec504cae1f325a6e03741013daa.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