diff options
author | Hans de Graaff <graaff@gentoo.org> | 2022-02-05 07:49:25 +0100 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2022-02-05 07:57:01 +0100 |
commit | 73225d4f9a4b1729c0c88e8996416c8d88746396 (patch) | |
tree | 2b632b5fa6e7cdff5a510f3ffb04e28936764961 /dev-ruby/coolio | |
parent | www-servers/puma: cleanup (diff) | |
download | gentoo-73225d4f9a4b1729c0c88e8996416c8d88746396.tar.gz gentoo-73225d4f9a4b1729c0c88e8996416c8d88746396.tar.bz2 gentoo-73225d4f9a4b1729c0c88e8996416c8d88746396.zip |
dev-ruby/coolio: cleanup
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/coolio')
-rw-r--r-- | dev-ruby/coolio/coolio-1.7.1.ebuild | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-ruby/coolio/coolio-1.7.1.ebuild b/dev-ruby/coolio/coolio-1.7.1.ebuild deleted file mode 100644 index 18be3f40240f..000000000000 --- a/dev-ruby/coolio/coolio-1.7.1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" -RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md" -RUBY_FAKEGEM_NAME="cool.io" - -RUBY_FAKEGEM_GEMSPEC="cool.io.gemspec" - -RUBY_FAKEGEM_EXTENSIONS=(ext/cool.io/extconf.rb) - -inherit multilib ruby-fakegem - -DESCRIPTION="A high performance event framework for Ruby which uses the libev C library" -HOMEPAGE="https://coolio.github.io/" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -# cool.io includes a bundled version of libev that is patched to work correctly with ruby. - -ruby_add_rdepend ">=dev-ruby/iobuffer-1" - -all_ruby_prepare() { - rm -r Gemfile* lib/.gitignore || die - - sed -i -e '/[Bb]undler/d' Rakefile || die - sed -i -e '28i s.add_dependency "iobuffer"' ${RUBY_FAKEGEM_GEMSPEC} || die - sed -i -e '/git ls-files/d' ${RUBY_FAKEGEM_GEMSPEC} || die - - # Avoid dependency on rake-compiler - sed -i -e '/extensiontask/ s:^:#:' \ - -e '/ExtensionTask/,/^end/ s:^:#:' Rakefile || die - - # Remove specs that require network connectivity - rm -f spec/dns_spec.rb || die - - # Use one address consistently - sed -i -e 's/localhost/127.0.0.1/' spec/{udp_socket,tcp_server,iobuffer}_spec.rb || die -} |