From owner-svn-ports-head@freebsd.org Tue May 24 07:07:02 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 C04D0B48FF1; Tue, 24 May 2016 07:07:02 +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 8CDC11750; Tue, 24 May 2016 07:07:02 +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 u4O771B2073159; Tue, 24 May 2016 07:07:01 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4O771Ev073157; Tue, 24 May 2016 07:07:01 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201605240707.u4O771Ev073157@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 24 May 2016 07:07:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415766 - in head/sysutils/backuppc: . 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.22 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, 24 May 2016 07:07:02 -0000 Author: pi Date: Tue May 24 07:07:01 2016 New Revision: 415766 URL: https://svnweb.freebsd.org/changeset/ports/415766 Log: sysutils/backuppc: fix fatal error with perl-5.22 - Using an array as a reference cause fatal error with Perl-5.22. PR: 209496 Submitted by: Alexander Moisseev (maintainer) Added: head/sysutils/backuppc/files/patch-lib_BackupPC_CGI_Browse.pm (contents, props changed) Modified: head/sysutils/backuppc/Makefile Modified: head/sysutils/backuppc/Makefile ============================================================================== --- head/sysutils/backuppc/Makefile Tue May 24 06:27:03 2016 (r415765) +++ head/sysutils/backuppc/Makefile Tue May 24 07:07:01 2016 (r415766) @@ -3,7 +3,7 @@ PORTNAME= backuppc PORTVERSION= 3.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= SF DISTNAME= BackupPC-${PORTVERSION} Added: head/sysutils/backuppc/files/patch-lib_BackupPC_CGI_Browse.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/backuppc/files/patch-lib_BackupPC_CGI_Browse.pm Tue May 24 07:07:01 2016 (r415766) @@ -0,0 +1,11 @@ +--- lib/BackupPC/CGI/Browse.pm.orig 2016-05-14 07:28:52 UTC ++++ lib/BackupPC/CGI/Browse.pm +@@ -65,7 +65,7 @@ sub action + # + # default to the newest backup + # +- if ( !defined($In{num}) && defined(@Backups) && @Backups > 0 ) { ++ if ( !defined($In{num}) && @Backups > 0 ) { + $i = @Backups - 1; + $num = $Backups[$i]{num}; + }