You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-ruby/simple-rss/simple-rss-1.3.3.ebuild

32 lines
753 B

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
USE_RUBY="ruby24 ruby25 ruby26 ruby27"
RUBY_FAKEGEM_TASK_DOC="doc"
RUBY_FAKEGEM_EXTRADOC="README.markdown"
inherit ruby-fakegem
DESCRIPTION="A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby"
HOMEPAGE="https://github.com/cardmagic/simple-rss"
LICENSE="LGPL-2"
KEYWORDS="amd64 x86"
SLOT="0"
IUSE=""
all_ruby_prepare() {
# Avoid dependency on bundler
sed -i -e '/bundler/d' \
-e '/rubyforgepublisher/I s:^:#:' \
Rakefile || die
# Avoid tests that require unpackaged test data
sed -i -e '/@\(media_rss\|rss20_utf8\)/ s:^:#:' \
-e '/test_rss_utf8/aomit "missing data"' \
test/base/base_test.rb || die
}