Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 195A184EB2 for ; Mon, 16 Oct 2023 22:21:56 +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 QnhvVWaNmkoh for ; Mon, 16 Oct 2023 22:21:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 7D30184CF7 for ; Mon, 16 Oct 2023 22:21:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 772A2FADC; Mon, 16 Oct 2023 22:21:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1697494915190010" MIME-Version: 1.0 Date: Mon, 16 Oct 2023 22:21:55 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20231016222155.772A2FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1697494915190010 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Mon Oct 16 22:21:55 UTC 2023 Modified Files: pkgsrc/pkgtools/lintpkgsrc/files/t: pkgversion.t pkgsrc/regress/plus_build_version: spec Log Message: lintpkgsrc, regress: update references to pkglint files The source code of pkglint is no longer stored in pkgsrc itself. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/pkgtools/lintpkgsrc/files/t/pkgversion.t cvs rdiff -u -r1.3 -r1.4 pkgsrc/regress/plus_build_version/spec Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1697494915190010 Content-Disposition: inline Content-Length: 2090 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/lintpkgsrc/files/t/pkgversion.t diff -u pkgsrc/pkgtools/lintpkgsrc/files/t/pkgversion.t:1.12 pkgsrc/pkgtools/lintpkgsrc/files/t/pkgversion.t:1.13 --- pkgsrc/pkgtools/lintpkgsrc/files/t/pkgversion.t:1.12 Sat Aug 13 12:22:20 2022 +++ pkgsrc/pkgtools/lintpkgsrc/files/t/pkgversion.t Mon Oct 16 22:21:55 2023 @@ -1,4 +1,4 @@ -# $NetBSD: pkgversion.t,v 1.12 2022/08/13 12:22:20 rillig Exp $ +# $NetBSD: pkgversion.t,v 1.13 2023/10/16 22:21:55 rillig Exp $ # # Tests for parsing and comparing package versions, such as 1.0nb4. @@ -14,7 +14,7 @@ require('../lintpkgsrc.pl'); ok(pkgversion_cmp('3.4', '<', '3.4'), ''); ok(pkgversion_cmp('3.4', '<=', '3.4'), 1); -# See pkgtools/pkglint/files/pkgver/vercmp_test.go. +# See pkgtools/pkglint, file pkgver/vercmp_test.go. my @split_version_tests = ( [ '5.0', [ [ 5, 0, 0 ], 0 ] ], [ '5.0nb5', [ [ 5, 0, 0 ], 5 ] ], @@ -44,7 +44,7 @@ foreach my $test (@split_version_tests) ok($actual_str, $expected_str); } -# See pkgtools/pkglint/files/pkgver/vercmp_test.go. +# See pkgtools/pkglint, file pkgver/vercmp_test.go. my @versions = ( [ '0pre20160620' ], [ '0' ], Index: pkgsrc/regress/plus_build_version/spec diff -u pkgsrc/regress/plus_build_version/spec:1.3 pkgsrc/regress/plus_build_version/spec:1.4 --- pkgsrc/regress/plus_build_version/spec:1.3 Tue May 19 05:02:42 2020 +++ pkgsrc/regress/plus_build_version/spec Mon Oct 16 22:21:55 2023 @@ -1,5 +1,5 @@ #! /bin/sh -# $NetBSD: spec,v 1.3 2020/05/19 05:02:42 rillig Exp $ +# $NetBSD: spec,v 1.4 2023/10/16 22:21:55 rillig Exp $ # This test demonstrates how the RCS Ids from the package files end up in # the +BUILD_VERSION file of the binary package. @@ -22,7 +22,7 @@ # to the RCS Ids from the binary package, to see whether the package # needs to be built again. # -# pkgtools/pkglint/files/distinfo.go, function computePatchSha1Hex: +# pkgtools/pkglint, file distinfo.go, function computePatchSha1Hex: # Same as mk/checksum/checksum. # # All these places must use the same patterns for extracting the RCS Ids. --_----------=_1697494915190010--