Date: Sun, 15 May 2016 16:09:03 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415239 - in head/ports-mgmt/portlint: . src Message-ID: <201605151609.u4FG93Kx091757@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Sun May 15 16:09:02 2016 New Revision: 415239 URL: https://svnweb.freebsd.org/changeset/ports/415239 Log: Make portlint not yelling at TIMESTAMP in distinfo PR: 209522 Reported by: John W. O'Brien <john@saltant.com> Modified: head/ports-mgmt/portlint/Makefile head/ports-mgmt/portlint/src/portlint.pl Modified: head/ports-mgmt/portlint/Makefile ============================================================================== --- head/ports-mgmt/portlint/Makefile Sun May 15 15:53:05 2016 (r415238) +++ head/ports-mgmt/portlint/Makefile Sun May 15 16:09:02 2016 (r415239) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= portlint -PORTVERSION= 2.17.0 +PORTVERSION= 2.17.1 CATEGORIES= ports-mgmt MASTER_SITES= # none DISTFILES= # none Modified: head/ports-mgmt/portlint/src/portlint.pl ============================================================================== --- head/ports-mgmt/portlint/src/portlint.pl Sun May 15 15:53:05 2016 (r415238) +++ head/ports-mgmt/portlint/src/portlint.pl Sun May 15 16:09:02 2016 (r415239) @@ -398,7 +398,7 @@ sub checkdistinfo { my ($tag, $path, $value) = ($1, $2, $3); $records{$path}{$tag} = $value; - if (!$algorithms{$tag} && $tag ne "SIZE") { + if (!$algorithms{$tag} && $tag ne "SIZE" && $tag ne "TIMESTAMP") { &perror("FATAL", $file, $., "unsupported checksum algorithm ". "found: $tag."); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605151609.u4FG93Kx091757>