diff options
author | Hans de Graaff <graaff@gentoo.org> | 2021-04-18 07:25:10 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2021-04-18 07:34:04 +0200 |
commit | 58f496929d04ee23244b6ca55c60d5cfefab8f9a (patch) | |
tree | 04ce7497f8f3a00109d0bf26cd96f8d8aa43b7c8 /dev-ruby/connection_pool/connection_pool-2.2.5.ebuild | |
parent | gnome-extra/evolution-ews: fix build with CMake 3.20.1 (diff) | |
download | gentoo-58f496929d04ee23244b6ca55c60d5cfefab8f9a.tar.gz gentoo-58f496929d04ee23244b6ca55c60d5cfefab8f9a.tar.bz2 gentoo-58f496929d04ee23244b6ca55c60d5cfefab8f9a.zip |
dev-ruby/connection_pool: add 2.2.5
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/connection_pool/connection_pool-2.2.5.ebuild')
-rw-r--r-- | dev-ruby/connection_pool/connection_pool-2.2.5.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-ruby/connection_pool/connection_pool-2.2.5.ebuild b/dev-ruby/connection_pool/connection_pool-2.2.5.ebuild new file mode 100644 index 000000000000..ec3d219df836 --- /dev/null +++ b/dev-ruby/connection_pool/connection_pool-2.2.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby25 ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_RECIPE_TEST="rake" +RUBY_FAKEGEM_RECIPE_DOC="none" +RUBY_FAKEGEM_EXTRADOC="Changes.md README.md" + +inherit ruby-fakegem + +DESCRIPTION="Generic connection pooling for Ruby" +HOMEPAGE="https://github.com/mperham/connection_pool" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +ruby_add_bdepend "test? ( >=dev-ruby/minitest-5 )" + +all_ruby_prepare() { + sed -i -e '/git ls-files/d' connection_pool.gemspec || die + sed -i -e '/\(bundler\|standard\)/ s:^:#:' Rakefile || die + sed -i -e "s/gem 'minitest'/gem 'minitest', '~> 5.0'/" test/helper.rb || die +} |