From owner-svn-ports-head@freebsd.org Tue Nov 22 15:04:30 2016 Return-Path: Delivered-To: svn-ports-head@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 B7AECC4F285; Tue, 22 Nov 2016 15:04:30 +0000 (UTC) (envelope-from mat@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 82CF414B4; Tue, 22 Nov 2016 15:04:30 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAMF4TsD094384; Tue, 22 Nov 2016 15:04:29 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAMF4Ttw094382; Tue, 22 Nov 2016 15:04:29 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201611221504.uAMF4Ttw094382@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 22 Nov 2016 15:04:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426829 - in head/mail/p5-Mail-Alias: . 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-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Nov 2016 15:04:30 -0000 Author: mat Date: Tue Nov 22 15:04:29 2016 New Revision: 426829 URL: https://svnweb.freebsd.org/changeset/ports/426829 Log: Fix with Perl 5.22+ Using defined(@array) was deprecated in 1999 for Perl 5.6, and removed in 2014 for 5.22. PR: 214617 Reported by: takeda takeda tk Sponsored by: Absolight Added: head/mail/p5-Mail-Alias/files/ head/mail/p5-Mail-Alias/files/patch-Alias.pm (contents, props changed) Modified: head/mail/p5-Mail-Alias/Makefile (contents, props changed) Modified: head/mail/p5-Mail-Alias/Makefile ============================================================================== --- head/mail/p5-Mail-Alias/Makefile Tue Nov 22 14:41:53 2016 (r426828) +++ head/mail/p5-Mail-Alias/Makefile Tue Nov 22 15:04:29 2016 (r426829) @@ -3,7 +3,7 @@ PORTNAME= Mail-Alias PORTVERSION= 1.12 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Added: head/mail/p5-Mail-Alias/files/patch-Alias.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/p5-Mail-Alias/files/patch-Alias.pm Tue Nov 22 15:04:29 2016 (r426829) @@ -0,0 +1,11 @@ +--- Alias.pm.orig 2016-11-22 14:55:19 UTC ++++ Alias.pm +@@ -82,7 +82,7 @@ sub format { + my $pkg = "Mail::Alias::" . $fmt; + + croak "Unknown format '$fmt'" +- unless defined @{$pkg . "::ISA"}; ++ unless @{$pkg . "::ISA"}; + + bless $me, $pkg; + }