Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 93FF57A26A for ; Wed, 5 Apr 2017 19:17:20 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 45C01855AF; Wed, 5 Apr 2017 19:17:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CC20084CEE for ; Wed, 5 Apr 2017 19:17:19 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id HsPyX2DnzDfD for ; Wed, 5 Apr 2017 19:17:19 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5D3A985582 for ; Wed, 5 Apr 2017 19:17:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5B4E1FBE4; Wed, 5 Apr 2017 19:17:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1491419839276900" MIME-Version: 1.0 Date: Wed, 5 Apr 2017 19:17:19 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/pkgtools/pkglint To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20170405191719.5B4E1FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1491419839276900 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Wed Apr 5 19:17:19 UTC 2017 Modified Files: pkgsrc/pkgtools/pkglint: Makefile pkgsrc/pkgtools/pkglint/files: vardefs.go Log Message: Updated pkglint to 5.4.20. Changes since 5.4.19: * Updated allowed Python versions to include py36. To generate a diff of this commit: cvs rdiff -u -r1.512 -r1.513 pkgsrc/pkgtools/pkglint/Makefile cvs rdiff -u -r1.22 -r1.23 pkgsrc/pkgtools/pkglint/files/vardefs.go Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1491419839276900 Content-Disposition: inline Content-Length: 1445 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/pkglint/Makefile diff -u pkgsrc/pkgtools/pkglint/Makefile:1.512 pkgsrc/pkgtools/pkglint/Makefile:1.513 --- pkgsrc/pkgtools/pkglint/Makefile:1.512 Fri Mar 17 22:43:34 2017 +++ pkgsrc/pkgtools/pkglint/Makefile Wed Apr 5 19:17:19 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.512 2017/03/17 22:43:34 rillig Exp $ +# $NetBSD: Makefile,v 1.513 2017/04/05 19:17:19 rillig Exp $ -PKGNAME= pkglint-5.4.19 +PKGNAME= pkglint-5.4.20 DISTFILES= # none CATEGORIES= pkgtools Index: pkgsrc/pkgtools/pkglint/files/vardefs.go diff -u pkgsrc/pkgtools/pkglint/files/vardefs.go:1.22 pkgsrc/pkgtools/pkglint/files/vardefs.go:1.23 --- pkgsrc/pkgtools/pkglint/files/vardefs.go:1.22 Sun Jan 29 14:27:48 2017 +++ pkgsrc/pkgtools/pkglint/files/vardefs.go Wed Apr 5 19:17:19 2017 @@ -854,7 +854,7 @@ func (gd *GlobalData) InitVartypes() { acl("PTHREAD_OPTS", lkShell, enum("native optional require"), "Makefile: set, append; Makefile.common, buildlink3.mk: append") sys("PTHREAD_TYPE", lkNone, BtIdentifier) // Or "native" or "none". pkg("PY_PATCHPLIST", lkNone, BtYes) - acl("PYPKGPREFIX", lkNone, enum("py27 py34 py35"), "pyversion.mk: set; *: use-loadtime, use") + acl("PYPKGPREFIX", lkNone, enum("py27 py34 py35 py36"), "pyversion.mk: set; *: use-loadtime, use") pkg("PYTHON_FOR_BUILD_ONLY", lkNone, BtYes) pkglist("REPLACE_PYTHON", lkShell, BtPathmask) pkg("PYTHON_VERSIONS_ACCEPTED", lkShell, BtVersion) --_----------=_1491419839276900--