From owner-svn-ports-all@freebsd.org Sun Feb 7 17:41:52 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 60DC0AA1FDA; Sun, 7 Feb 2016 17:41:52 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F5B319CF; Sun, 7 Feb 2016 17:41:52 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u17Hfp3x050149; Sun, 7 Feb 2016 17:41:51 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u17Hfp6G050147; Sun, 7 Feb 2016 17:41:51 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201602071741.u17Hfp6G050147@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 7 Feb 2016 17:41:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408433 - in head/math/p5-Math-BigInt: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Feb 2016 17:41:52 -0000 Author: pi Date: Sun Feb 7 17:41:50 2016 New Revision: 408433 URL: https://svnweb.freebsd.org/changeset/ports/408433 Log: math/p5-Math-BigInt: the overload of '..' is still not supported in perl - Similar patch is done in the lang/perl* ports PR: 196773 Submitted by: papowell@astart.com Approved by: tobez (maintainer timeout) Added: head/math/p5-Math-BigInt/files/ head/math/p5-Math-BigInt/files/patch-lib_Math_BigInt.pm (contents, props changed) Modified: head/math/p5-Math-BigInt/Makefile Modified: head/math/p5-Math-BigInt/Makefile ============================================================================== --- head/math/p5-Math-BigInt/Makefile Sun Feb 7 17:39:35 2016 (r408432) +++ head/math/p5-Math-BigInt/Makefile Sun Feb 7 17:41:50 2016 (r408433) @@ -3,6 +3,7 @@ PORTNAME= Math-BigInt PORTVERSION= 1.999715 +PORTREVISION= 1 CATEGORIES= math perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:PJACKLAM Added: head/math/p5-Math-BigInt/files/patch-lib_Math_BigInt.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/p5-Math-BigInt/files/patch-lib_Math_BigInt.pm Sun Feb 7 17:41:50 2016 (r408433) @@ -0,0 +1,11 @@ +--- lib/Math/BigInt.pm.orig 2016-02-07 17:28:38 UTC ++++ lib/Math/BigInt.pm +@@ -65,7 +65,7 @@ use overload + '>>=' => sub { $_[0]->brsft($_[1]); }, + + # not supported by Perl yet +-'..' => \&_pointpoint, ++#'..' => \&_pointpoint, + + '<=>' => sub { my $rc = $_[2] ? + ref($_[0])->bcmp($_[1],$_[0]) :