svn commit: r415239 - in head/ports-mgmt/portlint: . src

Baptiste Daroussin bapt at FreeBSD.org
Sun May 15 16:09:04 UTC 2016


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


More information about the svn-ports-all mailing list