From owner-svn-ports-all@freebsd.org Sat May 12 18:59:09 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E5EC9FCB691; Sat, 12 May 2018 18:59:08 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9AAAC874C1; Sat, 12 May 2018 18:59:08 +0000 (UTC) (envelope-from marcus@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7BDCA2245B; Sat, 12 May 2018 18:59:08 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4CIx8iW035049; Sat, 12 May 2018 18:59:08 GMT (envelope-from marcus@FreeBSD.org) Received: (from marcus@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4CIx8jx035047; Sat, 12 May 2018 18:59:08 GMT (envelope-from marcus@FreeBSD.org) Message-Id: <201805121859.w4CIx8jx035047@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marcus set sender to marcus@FreeBSD.org using -f From: Joe Marcus Clarke Date: Sat, 12 May 2018 18:59:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469754 - in head/ports-mgmt/portlint: . src X-SVN-Group: ports-head X-SVN-Commit-Author: marcus X-SVN-Commit-Paths: in head/ports-mgmt/portlint: . src X-SVN-Commit-Revision: 469754 X-SVN-Commit-Repository: ports 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.25 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: Sat, 12 May 2018 18:59:09 -0000 Author: marcus Date: Sat May 12 18:59:07 2018 New Revision: 469754 URL: https://svnweb.freebsd.org/changeset/ports/469754 Log: Bump version to 2.18.1. Soften the py-* dependency error around flavors. Now the message is a warning and a suggestion. This is pending more discussion, but this seems like a good compromise for now. PR: 225654 Requested by: antoine Modified: head/ports-mgmt/portlint/Makefile head/ports-mgmt/portlint/src/portlint.pl Modified: head/ports-mgmt/portlint/Makefile ============================================================================== --- head/ports-mgmt/portlint/Makefile Sat May 12 18:56:27 2018 (r469753) +++ head/ports-mgmt/portlint/Makefile Sat May 12 18:59:07 2018 (r469754) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= portlint -PORTVERSION= 2.18.0 +PORTVERSION= 2.18.1 CATEGORIES= ports-mgmt MASTER_SITES= # none DISTFILES= # none Modified: head/ports-mgmt/portlint/src/portlint.pl ============================================================================== --- head/ports-mgmt/portlint/src/portlint.pl Sat May 12 18:56:27 2018 (r469753) +++ head/ports-mgmt/portlint/src/portlint.pl Sat May 12 18:59:07 2018 (r469754) @@ -15,7 +15,7 @@ # was removed. # # $FreeBSD$ -# $MCom: portlint/portlint.pl,v 1.459 2018/05/11 21:26:56 jclarke Exp $ +# $MCom: portlint/portlint.pl,v 1.461 2018/05/12 18:55:45 jclarke Exp $ # use strict; @@ -50,7 +50,7 @@ $portdir = '.'; # version variables my $major = 2; my $minor = 18; -my $micro = 0; +my $micro = 1; # default setting - for FreeBSD my $portsdir = '/usr/ports'; @@ -1152,13 +1152,13 @@ sub check_depends_syntax { $makevar{USE_PYTHON} eq 'noflavors' || $makevar{USE_PYTHON} eq '') { if ($m{'fla'} ne '${PY_FLAVOR}') { - &perror("FATAL", $file, -1, "directory for dependency ". - "$m{'dep'} must be $m{'dir'}:\@\${PY_FLAVOR}"); + &perror("WARN", $file, -1, "you may want directory for ". + "dependency $m{'dep'} to be $m{'dir'}:\@\${PY_FLAVOR}"); } } else { if ($m{'fla'} ne '${FLAVOR}') { - &perror("FATAL", $file, -1, "directory for dependency ". - "$m{'dep'} must be $m{'dir'}:\@\${FLAVOR}"); + &perror("WARN", $file, -1, "you may want directory for ". + "dependency $m{'dep'} to be $m{'dir'}:\@\${FLAVOR}"); } } }