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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C619413835A for ; Sat, 1 May 2021 21:24:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0FC47E0D1F; Sat, 1 May 2021 21:24:19 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EFD37E0D1F for ; Sat, 1 May 2021 21:24:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5E391340D19 for ; Sat, 1 May 2021 21:24:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4EE72752 for ; Sat, 1 May 2021 21:24:13 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1619904117.8540e4435accab3ee168d02e6858886349521144.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/graphite2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/graphite2/graphite2-1.3.14.ebuild X-VCS-Directories: media-gfx/graphite2/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8540e4435accab3ee168d02e6858886349521144 X-VCS-Branch: master Date: Sat, 1 May 2021 21:24:13 +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: 6a93715b-72a8-4622-acdc-f1ebe70efe93 X-Archives-Hash: 99f69c5cb3c891db07593b84f57ded7e commit: 8540e4435accab3ee168d02e6858886349521144 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat May 1 20:44:48 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat May 1 21:21:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8540e443 media-gfx/graphite2: python3_9, fix BDEPENDs Closes: https://bugs.gentoo.org/787473 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> media-gfx/graphite2/graphite2-1.3.14.ebuild | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/media-gfx/graphite2/graphite2-1.3.14.ebuild b/media-gfx/graphite2/graphite2-1.3.14.ebuild index 7293cfb0a10..3f1a3d4d8c2 100644 --- a/media-gfx/graphite2/graphite2-1.3.14.ebuild +++ b/media-gfx/graphite2/graphite2-1.3.14.ebuild @@ -3,10 +3,9 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) - CMAKE_ECLASS=cmake GENTOO_DEPEND_ON_PERL="no" +PYTHON_COMPAT=( python3_{7,8,9} ) inherit perl-module python-any-r1 cmake-multilib DESCRIPTION="Library providing rendering capabilities for complex non-Roman writing systems" @@ -19,17 +18,19 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x IUSE="perl test" RESTRICT="!test? ( test )" -RDEPEND=" - perl? ( dev-lang/perl:= ) +RDEPEND="perl? ( dev-lang/perl:= )" +DEPEND=" + perl? ( dev-lang/perl ) + test? ( dev-libs/glib:2 ) " -DEPEND="${RDEPEND} +BDEPEND=" perl? ( + dev-lang/perl dev-perl/Locale-Maketext-Lexicon dev-perl/Module-Build ) test? ( ${PYTHON_DEPS} - dev-libs/glib:2 $(python_gen_any_dep 'dev-python/fonttools[${PYTHON_USEDEP}]') media-libs/fontconfig perl? ( virtual/perl-Test-Simple )