From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EE8FF15808B for ; Sat, 5 Oct 2024 07:30:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44714E29AE; Sat, 5 Oct 2024 07:30:25 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2A367E29AE for ; Sat, 5 Oct 2024 07:30:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2EAB233BF36 for ; Sat, 5 Oct 2024 07:30:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8CB70E8A for ; Sat, 5 Oct 2024 07:30:22 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1728113411.f2c051cad77e5ed55a86bd5743e62ce722e30b42.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rbpdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/rbpdf/rbpdf-1.21.3.ebuild X-VCS-Directories: dev-ruby/rbpdf/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: f2c051cad77e5ed55a86bd5743e62ce722e30b42 X-VCS-Branch: master Date: Sat, 5 Oct 2024 07:30:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 484daaf0-4db9-44c3-8575-156d37e0f40b X-Archives-Hash: 6d504393a66e03fbbe3796b8cc2b467c commit: f2c051cad77e5ed55a86bd5743e62ce722e30b42 Author: Hans de Graaff gentoo org> AuthorDate: Sat Oct 5 07:29:35 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Oct 5 07:30:11 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2c051ca dev-ruby/rbpdf: use compatible mini_magick slot Closes: https://bugs.gentoo.org/940788 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/rbpdf/rbpdf-1.21.3.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-ruby/rbpdf/rbpdf-1.21.3.ebuild b/dev-ruby/rbpdf/rbpdf-1.21.3.ebuild index 2b31c3cb7ff3..e65f19168013 100644 --- a/dev-ruby/rbpdf/rbpdf-1.21.3.ebuild +++ b/dev-ruby/rbpdf/rbpdf-1.21.3.ebuild @@ -28,7 +28,7 @@ ruby_add_rdepend " dev-ruby/actionview dev-ruby/htmlentities =dev-ruby/rbpdf-font-1.19* - || ( dev-ruby/mini_magick dev-ruby/rmagick ) + || ( dev-ruby/mini_magick:0 dev-ruby/rmagick ) " # Two of the tests require png/jpeg support in "magick identify", @@ -47,6 +47,8 @@ all_ruby_prepare() { each_ruby_test() { local cmd='gem "test-unit", ">= 3.0"' cmd+=' and ' + cmd+='gem "mini_magick", "~>4.0"' + cmd+=' and ' cmd+='require "test/unit"' cmd+=' and ' cmd+='Dir["test/rbpdf_*.rb"].each{|f| require("./" + f)}'