diff options
author | Hans de Graaff <graaff@gentoo.org> | 2017-09-10 08:06:04 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2017-09-10 09:53:24 +0200 |
commit | 2058e9291228788f1a7d46d9648a5502371507ae (patch) | |
tree | e8ef286384980c565254505e797cbeeef15e7300 /dev-ruby/msgpack/msgpack-1.0.2.ebuild | |
parent | f85cd99ab41b4c67315f9a2967c57c16951c7c9a (diff) | |
download | gentoo-2058e9291228788f1a7d46d9648a5502371507ae.tar.gz gentoo-2058e9291228788f1a7d46d9648a5502371507ae.tar.xz |
dev-ruby/msgpack: cleanup
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-ruby/msgpack/msgpack-1.0.2.ebuild')
-rw-r--r-- | dev-ruby/msgpack/msgpack-1.0.2.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-ruby/msgpack/msgpack-1.0.2.ebuild b/dev-ruby/msgpack/msgpack-1.0.2.ebuild deleted file mode 100644 index 4c2ed3b83bc..00000000000 --- a/dev-ruby/msgpack/msgpack-1.0.2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -USE_RUBY="ruby20 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." -} |