gentoo-ebuilds/dev-ruby/sparklines/sparklines-0.5.2-r8.ebuild
Hans de Graaff 71badd9933
dev-ruby/sparklines: enable ruby34
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
2025-04-03 13:51:05 +02:00

41 lines
970 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby31 ruby32 ruby33 ruby34"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="History.txt README.txt"
inherit ruby-fakegem
DESCRIPTION="Create sparklines, small graphs to be used inline in texts"
HOMEPAGE="http://sparklines.rubyforge.org/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="test"
DEPEND+="test? ( media-gfx/imagemagick[png] )"
ruby_add_rdepend "dev-ruby/rmagick:*"
ruby_add_bdepend "test? ( dev-ruby/tidy_table )"
PATCHES=( "${FILESDIR}/${P}-rmagick4-deprecation.patch" )
all_ruby_prepare() {
# Don't use deprecated rmagick require for compatibility with newer
# versions.
sed -i -e '/require/ s/RMagick/rmagick/' lib/sparklines.rb || die
# Dust does not work with ruby33 and does not seem to be used.
sed -e '/dust/ s:^:#:' \
-i test/test_all.rb || die
}
each_ruby_test() {
${RUBY} -I. test/test_all.rb || die
}