commit:     e90fa4d00dedd702c19bc19c97a101fcebdcff43
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 26 05:56:02 2023 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed Apr 26 05:57:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e90fa4d0

dev-ruby/sparklines: fix rmagick deprecation

Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/sparklines/sparklines-0.5.2-r8.ebuild | 38 ++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/dev-ruby/sparklines/sparklines-0.5.2-r8.ebuild 
b/dev-ruby/sparklines/sparklines-0.5.2-r8.ebuild
new file mode 100644
index 000000000000..bb8943773706
--- /dev/null
+++ b/dev-ruby/sparklines/sparklines-0.5.2-r8.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby30 ruby31"
+
+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=""
+
+DEPEND+="test? ( media-gfx/imagemagick[png] )"
+
+ruby_add_rdepend "dev-ruby/rmagick:*"
+
+ruby_add_bdepend "test? ( dev-ruby/tidy_table dev-ruby/dust )"
+
+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
+
+}
+
+each_ruby_test() {
+       ${RUBY} -I. test/test_all.rb || die
+}

Reply via email to