Received: by mail.netbsd.org (Postfix, from userid 605) id F1BCA84E98; Thu, 17 Nov 2022 07:25:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3004284CFD for ; Thu, 17 Nov 2022 07:25:31 +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 Tr8Lm3obl4zD for ; Thu, 17 Nov 2022 07:25:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A10D184CE3 for ; Thu, 17 Nov 2022 07:25:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 99DCDFA90; Thu, 17 Nov 2022 07:25:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1668669930298160" MIME-Version: 1.0 Date: Thu, 17 Nov 2022 07:25:30 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/pkgtools/revbump To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20221117072530.99DCDFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1668669930298160 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Nov 17 07:25:30 UTC 2022 Modified Files: pkgsrc/pkgtools/revbump: Makefile pkgsrc/pkgtools/revbump/files: check-cvs-diff Log Message: revbump: support python 3.10 and newer in check-cvs-diff Bump version. To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 pkgsrc/pkgtools/revbump/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/pkgtools/revbump/files/check-cvs-diff Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1668669930298160 Content-Disposition: inline Content-Length: 1730 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/revbump/Makefile diff -u pkgsrc/pkgtools/revbump/Makefile:1.47 pkgsrc/pkgtools/revbump/Makefile:1.48 --- pkgsrc/pkgtools/revbump/Makefile:1.47 Thu Nov 17 00:20:28 2022 +++ pkgsrc/pkgtools/revbump/Makefile Thu Nov 17 07:25:30 2022 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.47 2022/11/17 00:20:28 gutteridge Exp $ +# $NetBSD: Makefile,v 1.48 2022/11/17 07:25:30 wiz Exp $ -PKGNAME= revbump-2.15 -PKGREVISION= 5 +PKGNAME= revbump-2.16 CATEGORIES= pkgtools MAINTAINER= wiz@NetBSD.org Index: pkgsrc/pkgtools/revbump/files/check-cvs-diff diff -u pkgsrc/pkgtools/revbump/files/check-cvs-diff:1.4 pkgsrc/pkgtools/revbump/files/check-cvs-diff:1.5 --- pkgsrc/pkgtools/revbump/files/check-cvs-diff:1.4 Thu Nov 17 00:20:28 2022 +++ pkgsrc/pkgtools/revbump/files/check-cvs-diff Thu Nov 17 07:25:30 2022 @@ -1,7 +1,7 @@ #!@PERL@ -w # -*- perl -*- # -# $NetBSD: check-cvs-diff,v 1.4 2022/11/17 00:20:28 gutteridge Exp $ +# $NetBSD: check-cvs-diff,v 1.5 2022/11/17 07:25:30 wiz Exp $ # # read output of (cd /usr/pkgsrc; cvs diff -u ) and check if # py* and ruby* strings are left in buildlink3.mk. @@ -71,7 +71,7 @@ sub main() { open(EDIT, $file_to_edit ) || print STDERR "Problem opening file $file_to_edit: $! \n"; while() { if ( /^BUILDLINK.*py27/ ) { $_=~ s/py27/\${PYPKGPREFIX}/ ; $edit++;} - if ( /^BUILDLINK.*py3[0-9]/ ) { $_=~ s/py3[0-9]/\${PYPKGPREFIX}/ ; + if ( /^BUILDLINK.*py3[0-9]*/ ) { $_=~ s/py3[0-9]/\${PYPKGPREFIX}/ ; print STDERR " py3[0-9] found at $file_to_edit\n"; ; $edit++;} if ( /^BUILDLINK.*ruby[0-9][0-9]*/ ) { $_=~ s/ruby[0-9][0-9]*/\${RUBY_PKGPREFIX}/ ; $edit++;} --_----------=_1668669930298160--