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 193A015800A for ; Thu, 31 Aug 2023 05:05:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63B152BC013; Thu, 31 Aug 2023 05:05:32 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 509F52BC013 for ; Thu, 31 Aug 2023 05:05:32 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 91459335D7C for ; Thu, 31 Aug 2023 05:05:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 202B8DAC for ; Thu, 31 Aug 2023 05:05:30 +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: <1693458324.46adedb3d0c9c487fb1f8112be072eec313ab070.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rmagick/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/rmagick/rmagick-4.3.0.ebuild dev-ruby/rmagick/rmagick-5.3.0.ebuild X-VCS-Directories: dev-ruby/rmagick/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 46adedb3d0c9c487fb1f8112be072eec313ab070 X-VCS-Branch: master Date: Thu, 31 Aug 2023 05:05:30 +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: 70b8bd08-d6e2-43a4-9d14-65b210dca5c7 X-Archives-Hash: 396c08992370405f221881b90a488ef6 commit: 46adedb3d0c9c487fb1f8112be072eec313ab070 Author: Hans de Graaff gentoo org> AuthorDate: Wed Aug 30 18:14:27 2023 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Thu Aug 31 05:05:24 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46adedb3 dev-ruby/rmagick: use font that imagemagick knows about Imagemagick only recognizes fonts that are listed in its type.xml. Use a font from this list to ensure tests pass. Closes: https://bugs.gentoo.org/912009 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/rmagick/rmagick-4.3.0.ebuild | 2 +- dev-ruby/rmagick/rmagick-5.3.0.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-ruby/rmagick/rmagick-4.3.0.ebuild b/dev-ruby/rmagick/rmagick-4.3.0.ebuild index 129ffe8ed02a..d49338658934 100644 --- a/dev-ruby/rmagick/rmagick-4.3.0.ebuild +++ b/dev-ruby/rmagick/rmagick-4.3.0.ebuild @@ -29,7 +29,7 @@ KEYWORDS="amd64 ~hppa ppc ppc64 x86" IUSE="doc" RDEPEND+=" >=media-gfx/imagemagick-6.9.0:=" -DEPEND+=" >=media-gfx/imagemagick-6.9.0 test? ( >=media-gfx/imagemagick-7.1.0:=[jpeg,lqr,lcms,postscript,tiff,webp] virtual/ttf-fonts )" +DEPEND+=" >=media-gfx/imagemagick-6.9.0 test? ( >=media-gfx/imagemagick-7.1.0:=[jpeg,lqr,lcms,postscript,tiff,webp] media-fonts/dejavu )" all_ruby_prepare() { # Avoid unused dependency on rake-compiler. This also avoids an diff --git a/dev-ruby/rmagick/rmagick-5.3.0.ebuild b/dev-ruby/rmagick/rmagick-5.3.0.ebuild index 65658f67e938..66cd50953112 100644 --- a/dev-ruby/rmagick/rmagick-5.3.0.ebuild +++ b/dev-ruby/rmagick/rmagick-5.3.0.ebuild @@ -29,7 +29,7 @@ KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86" IUSE="doc" RDEPEND+=" >=media-gfx/imagemagick-6.9.0:=" -DEPEND+=" >=media-gfx/imagemagick-6.9.0 test? ( >=media-gfx/imagemagick-7.1.0:=[jpeg,lqr,lcms,postscript,tiff,webp] virtual/ttf-fonts )" +DEPEND+=" >=media-gfx/imagemagick-6.9.0 test? ( >=media-gfx/imagemagick-7.1.0:=[jpeg,lqr,lcms,postscript,tiff,webp] media-fonts/dejavu )" ruby_add_bdepend "dev-ruby/pkg-config"