From 495a8590505b434749ddebe6aa159b4d707ed846 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 26 Apr 2023 18:15:31 +0100 Subject: gentoo auto-resync : 26:04:2023 - 18:15:30 --- .../sparklines-0.5.2-rmagick4-deprecation.patch | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dev-ruby/sparklines/files/sparklines-0.5.2-rmagick4-deprecation.patch (limited to 'dev-ruby/sparklines/files') diff --git a/dev-ruby/sparklines/files/sparklines-0.5.2-rmagick4-deprecation.patch b/dev-ruby/sparklines/files/sparklines-0.5.2-rmagick4-deprecation.patch new file mode 100644 index 000000000000..5dcb556318be --- /dev/null +++ b/dev-ruby/sparklines/files/sparklines-0.5.2-rmagick4-deprecation.patch @@ -0,0 +1,20 @@ +--- a/lib/sparklines.rb 2023-04-26 07:46:30.263829168 +0200 ++++ b/lib/sparklines.rb 2023-04-26 07:48:47.140656193 +0200 +@@ -685,7 +685,7 @@ + @draw = Magick::Draw.new + @draw.pointsize = @@pointsize # TODO Use height + @draw.pointsize = @options[:font_size] if @options.has_key?(:font_size) +- @canvas = Magick::Image.new(w , h) { self.background_color = bkg_col } ++ @canvas = Magick::Image.new(w , h) { |image| image.background_color = bkg_col } + + # Make room for label and last value + unless @options[:label].nil? +@@ -697,7 +697,7 @@ + w += @label_and_data_last_width + end + +- @canvas = Magick::Image.new(w , h) { self.background_color = bkg_col } ++ @canvas = Magick::Image.new(w , h) { |image| image.background_color = bkg_col } + @canvas.format = "PNG" + + # Draw label and last value -- cgit v1.2.3