From owner-svn-ports-all@FreeBSD.ORG Mon Oct 27 16:02:03 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B525660; Mon, 27 Oct 2014 16:02:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 E1082BA0; Mon, 27 Oct 2014 16:02:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9RG22ir045879; Mon, 27 Oct 2014 16:02:02 GMT (envelope-from marcus@FreeBSD.org) Received: (from marcus@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9RG22Nt045877; Mon, 27 Oct 2014 16:02:02 GMT (envelope-from marcus@FreeBSD.org) Message-Id: <201410271602.s9RG22Nt045877@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marcus set sender to marcus@FreeBSD.org using -f From: Joe Marcus Clarke Date: Mon, 27 Oct 2014 16:02:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r371592 - 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.18-1 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: Mon, 27 Oct 2014 16:02:03 -0000 Author: marcus Date: Mon Oct 27 16:02:01 2014 New Revision: 371592 URL: https://svnweb.freebsd.org/changeset/ports/371592 QAT: https://qat.redports.org/buildarchive/r371592/ Log: Update to 2.16.1. Add an additional check for EXTRACT_SUFX. Submitted by: ak Modified: head/ports-mgmt/portlint/Makefile head/ports-mgmt/portlint/src/portlint.pl Modified: head/ports-mgmt/portlint/Makefile ============================================================================== --- head/ports-mgmt/portlint/Makefile Mon Oct 27 15:54:19 2014 (r371591) +++ head/ports-mgmt/portlint/Makefile Mon Oct 27 16:02:01 2014 (r371592) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= portlint -PORTVERSION= 2.16.0 +PORTVERSION= 2.16.1 CATEGORIES= ports-mgmt MASTER_SITES= # none DISTFILES= # none Modified: head/ports-mgmt/portlint/src/portlint.pl ============================================================================== --- head/ports-mgmt/portlint/src/portlint.pl Mon Oct 27 15:54:19 2014 (r371591) +++ head/ports-mgmt/portlint/src/portlint.pl Mon Oct 27 16:02:01 2014 (r371592) @@ -15,7 +15,7 @@ # was removed. # # $FreeBSD$ -# $MCom: portlint/portlint.pl,v 1.342 2014/10/26 18:08:18 marcus Exp $ +# $MCom: portlint/portlint.pl,v 1.344 2014/10/27 16:00:59 marcus Exp $ # use strict; @@ -50,7 +50,7 @@ $portdir = '.'; # version variables my $major = 2; my $minor = 16; -my $micro = 0; +my $micro = 1; # default setting - for FreeBSD my $portsdir = '/usr/ports'; @@ -2466,6 +2466,10 @@ DIST_SUBDIR EXTRACT_ONLY &perror("WARN", $file, -1, "no need to define EXTRACT_SUFX if ". "DISTFILES is defined."); } + if ($extractsufx eq '.tar.gz') { + &perror("WARN", $file, -1, "EXTRACT_SUFX is \".tar.gz.\" ". + "by default. you don't need to specify it."); + } if ($extractsufx =~ /^\.tar\.(bz2|lzma|xz|Z)$/) { my $ext = $1; $ext = 'bzip2' if ($ext eq 'bz2'); @@ -2476,10 +2480,6 @@ DIST_SUBDIR EXTRACT_ONLY &perror("WARN", $file, -1, "EXTRACT_SUFX is \".$1\". ". "Please use USES=tar:$1 instead."); } - if ($extractsufx eq '.tar.bz2') { - &perror("WARN", $file, -1, "EXTRACT_SUFX is \".tar.bz2.\" ". - "You should use USE_BZIP2 instead."); - } if ($extractsufx eq '.zip') { &perror("WARN", $file, -1, "EXTRACT_SUFX is \".zip\" ". "You should use USES[+]=zip instead.");