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 520387A210 for ; Sat, 17 Sep 2016 23:58:06 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id B624A85E74; Sat, 17 Sep 2016 23:58:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4659785E13 for ; Sat, 17 Sep 2016 23:58:05 +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 GAUg-97f8JAs for ; Sat, 17 Sep 2016 23:58:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CB36185E45 for ; Sat, 17 Sep 2016 23:58:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C940CFBD1; Sat, 17 Sep 2016 23:58:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1474156684190800" MIME-Version: 1.0 Date: Sat, 17 Sep 2016 23:58:04 +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: <20160917235804.C940CFBD1@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. --_----------=_1474156684190800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sat Sep 17 23:58:04 UTC 2016 Modified Files: pkgsrc/pkgtools/pkglint: Makefile pkgsrc/pkgtools/pkglint/files: plist.go Log Message: Updated pkglint to 5.4.9. Changes since 5.4.8: * Disallow lib/charset.alias in PLIST. This file may only be installed by converters/libiconv. (That package is currently broken, since it only touches that file when installing from source, not from a binary package. But pkglint is prepared for it to be fixed.) To generate a diff of this commit: cvs rdiff -u -r1.495 -r1.496 pkgsrc/pkgtools/pkglint/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/pkgtools/pkglint/files/plist.go Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1474156684190800 Content-Disposition: inline Content-Length: 1363 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.495 pkgsrc/pkgtools/pkglint/Makefile:1.496 --- pkgsrc/pkgtools/pkglint/Makefile:1.495 Sat Sep 10 19:47:20 2016 +++ pkgsrc/pkgtools/pkglint/Makefile Sat Sep 17 23:58:04 2016 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.495 2016/09/10 19:47:20 bsiegert Exp $ +# $NetBSD: Makefile,v 1.496 2016/09/17 23:58:04 rillig Exp $ -PKGNAME= pkglint-5.4.8 -PKGREVISION= 1 +PKGNAME= pkglint-5.4.9 DISTFILES= # none CATEGORIES= pkgtools Index: pkgsrc/pkgtools/pkglint/files/plist.go diff -u pkgsrc/pkgtools/pkglint/files/plist.go:1.7 pkgsrc/pkgtools/pkglint/files/plist.go:1.8 --- pkgsrc/pkgtools/pkglint/files/plist.go:1.7 Sat Jul 9 13:16:43 2016 +++ pkgsrc/pkgtools/pkglint/files/plist.go Sat Sep 17 23:58:04 2016 @@ -246,6 +246,10 @@ func (ck *PlistChecker) checkpathLib(pli case G.Pkg != nil && G.Pkg.EffectivePkgbase != "" && hasPrefix(pline.text, "lib/"+G.Pkg.EffectivePkgbase+"/"): return + case pline.text == "lib/charset.alias" && (G.Pkg == nil || G.Pkg.Pkgpath != "converters/libiconv"): + pline.line.Error0("Only the libiconv package may install lib/charset.alias.") + return + case hasPrefix(pline.text, "lib/locale/"): pline.line.Error0("\"lib/locale\" must not be listed. Use ${PKGLOCALEDIR}/locale and set USE_PKGLOCALEDIR instead.") return --_----------=_1474156684190800--