Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CE55085347 for ; Sun, 28 May 2023 22:59:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 0C6XbY681zHJ for ; Sun, 28 May 2023 22:59:53 +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 5C41A85346 for ; Sun, 28 May 2023 22:59:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 55255FA87; Sun, 28 May 2023 22:59:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1685314793188760" MIME-Version: 1.0 Date: Sun, 28 May 2023 22:59:53 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/textproc/py-pdf To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230528225953.55255FA87@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1685314793188760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun May 28 22:59:53 UTC 2023 Modified Files: pkgsrc/textproc/py-pdf: Makefile Log Message: py-pdf: not for Python 2 To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/py-pdf/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1685314793188760 Content-Disposition: inline Content-Length: 659 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-pdf/Makefile diff -u pkgsrc/textproc/py-pdf/Makefile:1.1 pkgsrc/textproc/py-pdf/Makefile:1.2 --- pkgsrc/textproc/py-pdf/Makefile:1.1 Sun May 28 18:52:36 2023 +++ pkgsrc/textproc/py-pdf/Makefile Sun May 28 22:59:53 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2023/05/28 18:52:36 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2023/05/28 22:59:53 wiz Exp $ DISTNAME= pypdf-3.9.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -15,6 +15,8 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9] USE_LANGUAGES= # none +PYTHON_VERSIONS_INCOMPATIBLE= 27 + do-test: cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} --_----------=_1685314793188760--