diff options
author | Hans de Graaff <graaff@gentoo.org> | 2020-06-03 06:38:25 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2020-06-03 06:38:25 +0200 |
commit | e4e0ae037a4f6a825af01ec750caf49fd1d55d1d (patch) | |
tree | 09a95bb8638eb45cb0cbed8e23e06ae1fbc17abf /dev-ruby/connection_pool | |
parent | dev-util/crash: drop old (diff) | |
download | gentoo-e4e0ae037a4f6a825af01ec750caf49fd1d55d1d.tar.gz gentoo-e4e0ae037a4f6a825af01ec750caf49fd1d55d1d.tar.bz2 gentoo-e4e0ae037a4f6a825af01ec750caf49fd1d55d1d.zip |
dev-ruby/connection_pool: add 2.2.3
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/connection_pool')
-rw-r--r-- | dev-ruby/connection_pool/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/connection_pool/connection_pool-2.2.3.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-ruby/connection_pool/Manifest b/dev-ruby/connection_pool/Manifest index afbda0330467..4460dd832d71 100644 --- a/dev-ruby/connection_pool/Manifest +++ b/dev-ruby/connection_pool/Manifest @@ -1 +1,2 @@ DIST connection_pool-2.2.2.gem 13824 BLAKE2B 2f52bb3451dec5916d5797596f7bc3dbf39845321ee83736d679c433e96f154db852469b1f6d0d3b7c7f48262f7840087d89cdd40ece22b67a29c20ff77274dd SHA512 74cb64aa3f183ee4e41f438133f60581e9f99a1d5b5daf61607cff2329bfb1fbd8810d87c35d709418a22ad925049e3e9403a602107452414a67aee1c6eecfe9 +DIST connection_pool-2.2.3.gem 13824 BLAKE2B b74666181790e678793023413eedbd5b68836e6d480d79f6c12d512277a1917db0d400e08be98c098305ca065a12988bcac9d46f89b4c1380d758991490a540b SHA512 a5e54b11073723d5cf5150a47c38b37ef8e58e9adb056eeedc4427207ed1ae5d1844cab925bbbcc8a2a9dd3fe9373593ab735ce4de588b89db97800fb74757ac diff --git a/dev-ruby/connection_pool/connection_pool-2.2.3.ebuild b/dev-ruby/connection_pool/connection_pool-2.2.3.ebuild new file mode 100644 index 000000000000..194ac6f8667a --- /dev/null +++ b/dev-ruby/connection_pool/connection_pool-2.2.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby24 ruby25 ruby26 ruby27" + +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 +} |