Files
gentoo/dev-ruby/ruby-oembed/ruby-oembed-0.18.1.ebuild
Alfred Wingate b2a7393a0d dev-ruby/ruby-oembed: enable ruby40
Signed-off-by: Alfred Wingate <parona@protonmail.com>
Part-of: https://codeberg.org/gentoo/gentoo/pulls/1527
Signed-off-by: Sam James <sam@gentoo.org>
2026-07-26 16:06:36 +01:00

42 lines
1013 B
Bash

# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby32 ruby33 ruby34 ruby40"
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc README.md"
RUBY_FAKEGEM_GEMSPEC="ruby-oembed.gemspec"
inherit ruby-fakegem
DESCRIPTION="An oEmbed consumer library written in Ruby"
HOMEPAGE="https://github.com/ruby-oembed/ruby-oembed"
SRC_URI="https://github.com/ruby-oembed/ruby-oembed/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
ruby_add_bdepend "test?
(
dev-ruby/json
dev-ruby/vcr:6
dev-ruby/xml-simple
dev-ruby/nokogiri
dev-ruby/webmock:3
)"
all_ruby_prepare() {
# Remove bundler but keep vcr version requirement
rm -f Gemfile || die
sed -i -e '1igem "vcr", "~> 6.0"' spec/spec_helper.rb || die
# Avoid development dependencies
sed -i -e '/coverall/I s:^:#:' spec/spec_helper.rb || die
sed -i -e 's/git ls-files/find * -print/' ${RUBY_FAKEGEM_GEMSPEC} || die
}