From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 3 18:20:06 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03F68106566B for ; Thu, 3 Sep 2009 18:20:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CC7AE8FC15 for ; Thu, 3 Sep 2009 18:20:05 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n83IK5MT069062 for ; Thu, 3 Sep 2009 18:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n83IK501069061; Thu, 3 Sep 2009 18:20:05 GMT (envelope-from gnats) Date: Thu, 3 Sep 2009 18:20:05 GMT Message-Id: <200909031820.n83IK501069061@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: wahjava@gmail.com (Ashish SHUKLA) Cc: Subject: Re: ports/138502: editors/p5-Padre dumps core. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ashish SHUKLA List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Sep 2009 18:20:06 -0000 The following reply was made to PR ports/138502; it has been noted by GNATS. From: wahjava@gmail.com (Ashish SHUKLA) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/138502: editors/p5-Padre dumps core. Date: Thu, 03 Sep 2009 23:40:16 +0530 --=-=-= Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" --==-=-= Content-Transfer-Encoding: quoted-printable Hi, I've discussed this issue with szabgab on #padre on irc.perl.org and he provided the following diff which fixes the issue for me.=20 #v+ Index: lib/Padre/Wx.pm =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =2D-- lib/Padre/Wx.pm (revision 7709) +++ lib/Padre/Wx.pm (working copy) @@ -104,6 +104,7 @@ =20 sub launch_browser { require Padre::Task::LaunchDefaultBrowser; + Wx::LaunchDefaultBrowser( $_[0] ); return 1; Padre::Task::LaunchDefaultBrowser->new( url =3D> $_[0], )->schedule; #v- For those who want to test this diff with 0.40 version of editors/p5-Padre port apply the attached diff to the port. =2D-=20 Ashish SHUKLA --==-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.12 (FreeBSD) iEYEARECAAYFAkqgBosACgkQHy+EEHYuXnTcqwCeIrWFa/OoF+KlPvaqZ164398A 3nMAniOoNhBxCUfYNzk/9uLsTgDx8lL8 =IGnC -----END PGP SIGNATURE----- --==-=-=-- --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=p5-Padre.diff Content-Description: p5-Padre.diff diff -urN /usr/ports/editors/p5-Padre/files/patch-lib_Padre_Wx.pm p5-Padre/files/patch-lib_Padre_Wx.pm --- /usr/ports/editors/p5-Padre/files/patch-lib_Padre_Wx.pm 1970-01-01 05:30:00.000000000 +0530 +++ p5-Padre/files/patch-lib_Padre_Wx.pm 2009-09-03 23:34:24.000000000 +0530 @@ -0,0 +1,13 @@ + +$FreeBSD$ + +--- lib/Padre/Wx.pm.orig ++++ lib/Padre/Wx.pm +@@ -67,6 +67,7 @@ + + sub launch_browser { + require Padre::Task::LaunchDefaultBrowser; ++ Wx::LaunchDefaultBrowser( $_[0] ); return 1; + Padre::Task::LaunchDefaultBrowser->new( + url => $_[0], + )->schedule; --=-=-=--