diff options
author | Hans de Graaff <graaff@gentoo.org> | 2022-12-16 10:33:26 +0100 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2022-12-17 09:37:24 +0100 |
commit | f08985db0d52692cbff9a0159058f501508de0e7 (patch) | |
tree | 9bbc7bf50e2783eddbf871880ed61925f6e2c732 | |
parent | dev-ruby/acme-client: drop 2.0.8 (diff) | |
download | gentoo-f08985db0d52692cbff9a0159058f501508de0e7.tar.gz gentoo-f08985db0d52692cbff9a0159058f501508de0e7.tar.bz2 gentoo-f08985db0d52692cbff9a0159058f501508de0e7.zip |
dev-ruby/acme-client: enable ruby30 and disable ruby26
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
-rw-r--r-- | dev-ruby/acme-client/acme-client-2.0.9.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dev-ruby/acme-client/acme-client-2.0.9.ebuild b/dev-ruby/acme-client/acme-client-2.0.9.ebuild index 3faab7452ba8..7aee24551ee4 100644 --- a/dev-ruby/acme-client/acme-client-2.0.9.ebuild +++ b/dev-ruby/acme-client/acme-client-2.0.9.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby26 ruby27" +USE_RUBY="ruby27 ruby30" RUBY_FAKEGEM_BINWRAP="" @@ -33,4 +33,6 @@ ruby_add_bdepend "test? ( all_ruby_prepare() { # Avoid dependency on git sed -i -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die + + sed -i -e '3igem "faraday", "<2"' spec/spec_helper.rb || die } |