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 32B2C1382C5 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 496C4E09C0; 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 2601AE09C0 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 46B1F335C5A 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 7644021D 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: <1521593905.dae187f9846017f28fbbd0047db520cad0b4daa8.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Wx/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Wx/Wx-0.993.200-r1.ebuild X-VCS-Directories: dev-perl/Wx/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: dae187f9846017f28fbbd0047db520cad0b4daa8 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: a4e27c13-20f2-4741-a727-ba4f09dda7ac X-Archives-Hash: 20d7305d4dbfdbb7a8543c78a3efed06 commit: dae187f9846017f28fbbd0047db520cad0b4daa8 Author: Kent Fredric gentoo org> AuthorDate: Wed Mar 21 00:57:47 2018 +0000 Commit: Kent Fredric gentoo org> CommitDate: Wed Mar 21 00:58:25 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dae187f9 dev-perl/Wx: Force newer Alien-wxWidgets to avoid wxgtk build issues Older EAPI6 versions of Alien-wxWidgets could build against versions of wxGTK that eventually lead to dev-perl/Wx failing to compile. Also avoids using deprecated API of wxwidgets.eclass Bug: https://bugs.gentoo.org/615246 Closes: https://bugs.gentoo.org/627180 Closes: https://bugs.gentoo.org/623042 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-perl/Wx/Wx-0.993.200-r1.ebuild | 46 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/dev-perl/Wx/Wx-0.993.200-r1.ebuild b/dev-perl/Wx/Wx-0.993.200-r1.ebuild new file mode 100644 index 00000000000..b1d9866a7ae --- /dev/null +++ b/dev-perl/Wx/Wx-0.993.200-r1.ebuild @@ -0,0 +1,46 @@ +# 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.9932 +DIST_EXAMPLES=("samples/*") +inherit wxwidgets virtualx perl-module + +DESCRIPTION="Perl bindings for wxGTK" +HOMEPAGE="http://wxperl.sourceforge.net/ ${HOMEPAGE}" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + >=dev-perl/Alien-wxWidgets-0.690.0-r1 + x11-libs/wxGTK:${WX_GTK_VER} + >=virtual/perl-File-Spec-0.820.0 +" +DEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-MakeMaker-6.480.0 + >=virtual/perl-ExtUtils-ParseXS-3.150.0 + >=dev-perl/ExtUtils-XSpp-0.160.200 + >=virtual/perl-if-0.30.0 + test? ( + >=virtual/perl-Test-Harness-2.260.0 + >=virtual/perl-Test-Simple-0.430.0 + ) +" + +src_prepare() { + setup-wxwidgets + perl-module_src_prepare +} + +src_test() { + # the webview/t/03_threads.t test tends to hang or crash in weird + # ways depending on local configuration. eg, backtraces involving + # all of webkit-gtk, kpartsplugin and kdelibs... + perl_rm_files t/12_pod.t ext/webview/t/03_threads.t + virtx perl-module_src_test +}