Make portlint not yelling at TIMESTAMP in distinfo

PR:		209522
Reported by:	John W. O'Brien <john@saltant.com>
This commit is contained in:
Baptiste Daroussin 2016-05-15 16:09:02 +00:00
parent a7bfabc382
commit 70ef64e730
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=415239
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= portlint
PORTVERSION= 2.17.0
PORTVERSION= 2.17.1
CATEGORIES= ports-mgmt
MASTER_SITES= # none
DISTFILES= # none

View file

@ -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.");
}