commit: 918a0709e8b191d50e7199fd947e5aca7fa7f199 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Sat Apr 23 06:17:54 2022 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Sat Apr 23 08:00:47 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=918a0709
dev-ruby/http-accept: update EAPI 7 -> 8 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/http-accept/http-accept-2.1.1-r1.ebuild | 27 ++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/dev-ruby/http-accept/http-accept-2.1.1-r1.ebuild b/dev-ruby/http-accept/http-accept-2.1.1-r1.ebuild new file mode 100644 index 000000000000..ac8cdf35b333 --- /dev/null +++ b/dev-ruby/http-accept/http-accept-2.1.1-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30 ruby31" + +RUBY_FAKEGEM_EXTRADOC="README.md" +RUBY_FAKEGEM_GEMSPEC="http-accept.gemspec" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +inherit ruby-fakegem + +DESCRIPTION="Parse Accept and Accept-Language HTTP headers" +HOMEPAGE="https://github.com/socketry/http-accept" +SRC_URI="https://github.com/socketry/http-accept/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="$(ver_cut 1)" +KEYWORDS="~amd64" +IUSE="" + +all_ruby_prepare() { + sed -i -e '/covered/ s:^:#:' spec/spec_helper.rb || die + sed -e "s:_relative ': './:" \ + -e 's/git ls-files -z/find * -print0/' \ + -i ${RUBY_FAKEGEM_GEMSPEC} || die +}
