Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/pkgtools/pkglint pkgtools/pkglint: update to 20.1.7
details: https://anonhg.NetBSD.org/pkgsrc/rev/f7644550bc9d
branches: trunk
changeset: 432095:f7644550bc9d
user: rillig <rillig%pkgsrc.org@localhost>
date: Mon May 18 19:11:16 2020 +0000
description:
pkgtools/pkglint: update to 20.1.7
Changes since 20.1.6:
Versioned Python dependencies may end with :test or :tool, as the code in
lang/python/versioned_dependencies.mk says.
diffstat:
pkgtools/pkglint/Makefile | 4 ++--
pkgtools/pkglint/files/vartypecheck.go | 9 ++++++---
2 files changed, 8 insertions(+), 5 deletions(-)
diffs (35 lines):
diff -r 2fe52208c502 -r f7644550bc9d pkgtools/pkglint/Makefile
--- a/pkgtools/pkglint/Makefile Mon May 18 18:39:28 2020 +0000
+++ b/pkgtools/pkglint/Makefile Mon May 18 19:11:16 2020 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.645 2020/05/17 07:07:18 rillig Exp $
+# $NetBSD: Makefile,v 1.646 2020/05/18 19:11:16 rillig Exp $
-PKGNAME= pkglint-20.1.6
+PKGNAME= pkglint-20.1.7
CATEGORIES= pkgtools
DISTNAME= tools
MASTER_SITES= ${MASTER_SITE_GITHUB:=golang/}
diff -r 2fe52208c502 -r f7644550bc9d pkgtools/pkglint/files/vartypecheck.go
--- a/pkgtools/pkglint/files/vartypecheck.go Mon May 18 18:39:28 2020 +0000
+++ b/pkgtools/pkglint/files/vartypecheck.go Mon May 18 19:11:16 2020 +0000
@@ -1143,13 +1143,16 @@
func (cv *VartypeCheck) PythonDependency() {
if cv.Value != cv.ValueNoVar {
cv.Warnf("Python dependencies should not contain variables.")
- } else if !matches(cv.ValueNoVar, `^[+\-.0-9A-Z_a-z]+(?:|:link|:build)$`) {
+ } else if !matches(cv.ValueNoVar, `^[+\-.0-9A-Z_a-z]+(?:|:link|:build|:test|:tool)$`) {
cv.Warnf("Invalid Python dependency %q.", cv.Value)
cv.Explain(
"Python dependencies must be an identifier for a package, as",
"specified in lang/python/versioned_dependencies.mk.",
- "This identifier may be followed by :build for a build-time only",
- "dependency, or by :link for a run-time only dependency.")
+ "This identifier may be followed by:",
+ "\t:tool for a tool dependency,",
+ "\t:build for a build-time only dependency,",
+ "\t:test for a test-only dependency,",
+ "\t:link for a run-time dependency.")
}
}
Home |
Main Index |
Thread Index |
Old Index