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 18D051381F1 for ; Wed, 21 Mar 2018 00:59:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 150BEE09BC; Wed, 21 Mar 2018 00:59:13 +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 DE16CE09BC for ; Wed, 21 Mar 2018 00:59:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 64197335C5C for ; Wed, 21 Mar 2018 00:59:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 629931BC for ; Wed, 21 Mar 2018 00:59:09 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1521593904.ed08a23a6851fc365b1a538789258f4649091849.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Alien-wxWidgets/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Alien-wxWidgets/Alien-wxWidgets-0.690.0-r1.ebuild X-VCS-Directories: dev-perl/Alien-wxWidgets/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: ed08a23a6851fc365b1a538789258f4649091849 X-VCS-Branch: master Date: Wed, 21 Mar 2018 00:59:09 +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-Archives-Salt: fe51a0b7-196c-44e6-9a3f-f2c4859c27ba X-Archives-Hash: b54f55237149c68b1dd6dbad31f0bd90 commit: ed08a23a6851fc365b1a538789258f4649091849 Author: Kent Fredric gentoo org> AuthorDate: Wed Mar 21 00:44:38 2018 +0000 Commit: Kent Fredric gentoo org> CommitDate: Wed Mar 21 00:58:24 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed08a23a dev-perl/Alien-wxWidgets: Fix use of wxwidgets eclass EAPI5 auto-setup the wxwidgets magic, but EAPI6 requires explicit invocation to function. This omission means Alien-wxWidgets would get built with whatever was currently selected with "eselect wxwidgets", ultimately resulting in compilation failure in dev-perl/Wx when the wx implementation was either wxGTK 2.8, or the GTK3 version of wxGTK3 Bug: https://bugs.gentoo.org/623042 Bug: https://bugs.gentoo.org/627180 Bug: https://bugs.gentoo.org/615246 Package-Manager: Portage-2.3.24, Repoman-2.3.6 .../Alien-wxWidgets-0.690.0-r1.ebuild | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/dev-perl/Alien-wxWidgets/Alien-wxWidgets-0.690.0-r1.ebuild b/dev-perl/Alien-wxWidgets/Alien-wxWidgets-0.690.0-r1.ebuild new file mode 100644 index 00000000000..4a697f0903d --- /dev/null +++ b/dev-perl/Alien-wxWidgets/Alien-wxWidgets-0.690.0-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +WX_GTK_VER=3.0 +DIST_AUTHOR=MDOOTSON +DIST_VERSION=0.69 +inherit wxwidgets perl-module + +DESCRIPTION="Building, finding and using wxWidgets binaries" + +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~x86" +IUSE="gstreamer opengl test" + +RDEPEND=" + >=x11-libs/wxGTK-3:3.0[gstreamer=,opengl=,tiff,X] + >=dev-perl/Module-Pluggable-2.600.0 +" +DEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-CBuilder-0.24 + >=virtual/perl-File-Spec-1.500.0 + >=dev-perl/Module-Build-0.280.0 + test? ( virtual/perl-Test-Simple ) +" + +src_configure() { + setup-wxwidgets + myconf=( --wxWidgets-build=0 ) + perl-module_src_configure +} + +src_test() { + perl_rm_files t/zz_pod.t t/zy_pod_coverage.t + perl-module_src_test +}