From owner-svn-ports-all@freebsd.org Sun May 15 16:09:04 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 29618B3CB2A; Sun, 15 May 2016 16:09:04 +0000 (UTC) (envelope-from bapt@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 EF5B31EF2; Sun, 15 May 2016 16:09:03 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4FG93Ww091759; Sun, 15 May 2016 16:09:03 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4FG93Kx091757; Sun, 15 May 2016 16:09:03 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201605151609.u4FG93Kx091757@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sun, 15 May 2016 16:09:03 +0000 (UTC) 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 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.22 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, 15 May 2016 16:09:04 -0000 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 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."); }