diff options
author | Hans de Graaff <graaff@gentoo.org> | 2015-10-25 06:43:35 +0100 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2015-10-25 09:30:41 +0100 |
commit | 9312f8e01a9f4c069f30dd95f9c343a21f02dcd4 (patch) | |
tree | 16c46aa2fff3e3f8dd888f176ae0fc0fd38038c5 /dev-ruby/msgpack/msgpack-0.6.1.ebuild | |
parent | 7fa0b75fd0259d3ef8d23216186b43b733e73fef (diff) | |
download | gentoo-9312f8e01a9f4c069f30dd95f9c343a21f02dcd4.tar.gz gentoo-9312f8e01a9f4c069f30dd95f9c343a21f02dcd4.tar.xz |
dev-ruby/msgpack: cleanup
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'dev-ruby/msgpack/msgpack-0.6.1.ebuild')
-rw-r--r-- | dev-ruby/msgpack/msgpack-0.6.1.ebuild | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-ruby/msgpack/msgpack-0.6.1.ebuild b/dev-ruby/msgpack/msgpack-0.6.1.ebuild deleted file mode 100644 index 2be64469ab7..00000000000 --- a/dev-ruby/msgpack/msgpack-0.6.1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -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="http://msgpack.org/" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~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 - - sed -i -e '/git ls-files/d' msgpack.gemspec || die -} - -each_ruby_configure() { - ${RUBY} -Cext/${PN} extconf.rb || die "Configuration of extension failed." -} - -each_ruby_compile() { - emake V=1 -Cext/${PN} - cp ext/${PN}/msgpack$(get_modname) lib/${PN} || die "Unable to install msgpack library." -} |