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 BE8C31382C5 for ; Sat, 8 May 2021 13:03:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5BB2E078A; Sat, 8 May 2021 13:03:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 BE0BAE078A for ; Sat, 8 May 2021 13:03:26 +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 5385B340E76 for ; Sat, 8 May 2021 13:03:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDAB85D2 for ; Sat, 8 May 2021 13:03:22 +0000 (UTC) From: "Andreas K. Hüttel" 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 K. Hüttel" Message-ID: <1620478986.a344440d3ed4874975a510d6487cc3b099b476af.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/GooCanvas2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/GooCanvas2/GooCanvas2-0.60.0-r1.ebuild dev-perl/GooCanvas2/GooCanvas2-0.60.0.ebuild X-VCS-Directories: dev-perl/GooCanvas2/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: a344440d3ed4874975a510d6487cc3b099b476af X-VCS-Branch: master Date: Sat, 8 May 2021 13:03: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: 2186bb9b-ac2b-4864-a3f0-4b215a8a7e3c X-Archives-Hash: f2698d6f31e8c094753996162e2ee494 commit: a344440d3ed4874975a510d6487cc3b099b476af Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat May 8 12:19:44 2021 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat May 8 13:03:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a344440d dev-perl/GooCanvas2: Fix goocanvas dependency, bug 767883 Closes: https://bugs.gentoo.org/767883 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> .../{GooCanvas2-0.60.0.ebuild => GooCanvas2-0.60.0-r1.ebuild} | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dev-perl/GooCanvas2/GooCanvas2-0.60.0.ebuild b/dev-perl/GooCanvas2/GooCanvas2-0.60.0-r1.ebuild similarity index 71% rename from dev-perl/GooCanvas2/GooCanvas2-0.60.0.ebuild rename to dev-perl/GooCanvas2/GooCanvas2-0.60.0-r1.ebuild index 2dfa9ee2b0b..22a09fef195 100644 --- a/dev-perl/GooCanvas2/GooCanvas2-0.60.0.ebuild +++ b/dev-perl/GooCanvas2/GooCanvas2-0.60.0-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 DIST_AUTHOR=PERLMAX DIST_VERSION=0.06 @@ -14,12 +14,15 @@ IUSE="test" RESTRICT="!test? ( test )" RDEPEND=" - x11-libs/goocanvas:2.0 + x11-libs/goocanvas:2.0[introspection] dev-perl/Gtk3 " -DEPEND="${RDEPEND} +BDEPEND="${RDEPEND} virtual/perl-ExtUtils-MakeMaker test? ( virtual/perl-Test ) " +DEPEND=" + x11-libs/goocanvas:2.0[introspection] +"