Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6189384D37 for ; Sat, 1 Jul 2023 09:13:25 +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 CrvGGciRzjiz for ; Sat, 1 Jul 2023 09:13:25 +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 E87A584D24 for ; Sat, 1 Jul 2023 09:13:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DFAECFA89; Sat, 1 Jul 2023 09:13:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688202804270990" MIME-Version: 1.0 Date: Sat, 1 Jul 2023 09:13:24 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/pkgtools/revbump To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230701091324.DFAECFA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688202804270990 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Jul 1 09:13:24 UTC 2023 Modified Files: pkgsrc/pkgtools/revbump: Makefile Log Message: revbump: Not for Python 2 To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 pkgsrc/pkgtools/revbump/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688202804270990 Content-Disposition: inline Content-Length: 660 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.54 pkgsrc/pkgtools/revbump/Makefile:1.55 --- pkgsrc/pkgtools/revbump/Makefile:1.54 Sat Jul 1 09:11:58 2023 +++ pkgsrc/pkgtools/revbump/Makefile Sat Jul 1 09:13:24 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.54 2023/07/01 09:11:58 wiz Exp $ +# $NetBSD: Makefile,v 1.55 2023/07/01 09:13:24 wiz Exp $ PKGNAME= revbump-3.3 CATEGORIES= pkgtools @@ -13,6 +13,8 @@ USE_LANGUAGES= # empty INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 REPLACE_PYTHON+= revbump.py +PYTHON_VERSIONS_INCOMPATIBLE= 27 + post-extract: ${CP} ${FILESDIR}/revbump.py ${WRKSRC} --_----------=_1688202804270990--