Received: by mail.netbsd.org (Postfix, from userid 605) id BF14A84E80; Tue, 2 May 2023 17:18:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D50D684E7F for ; Tue, 2 May 2023 17:18:06 +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 gGk30U7PXfW1 for ; Tue, 2 May 2023 17:18:06 +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 3047C84CC9 for ; Tue, 2 May 2023 17:18:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 23070FA87; Tue, 2 May 2023 17:18:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1683047886102920" MIME-Version: 1.0 Date: Tue, 2 May 2023 17:18:06 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-logbook To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230502171806.23070FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1683047886102920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue May 2 17:18:06 UTC 2023 Modified Files: pkgsrc/devel/py-logbook: Makefile Log Message: py-logbook: not for Python 2 To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/py-logbook/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1683047886102920 Content-Disposition: inline Content-Length: 1104 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-logbook/Makefile diff -u pkgsrc/devel/py-logbook/Makefile:1.10 pkgsrc/devel/py-logbook/Makefile:1.11 --- pkgsrc/devel/py-logbook/Makefile:1.10 Wed Aug 24 08:41:08 2022 +++ pkgsrc/devel/py-logbook/Makefile Tue May 2 17:18:05 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2022/08/24 08:41:08 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2023/05/02 17:18:05 wiz Exp $ DISTNAME= Logbook-1.5.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} @@ -12,13 +12,14 @@ COMMENT= Logging replacement for Python LICENSE= modified-bsd DEPENDS+= ${PYPKGPREFIX}-brotlipy-[0-9]*:../../archivers/py-brotlipy +TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test +TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov -PYTHON_VERSIONED_DEPENDENCIES+= test:test test-cov:test +PYTHON_VERSIONS_INCOMPATIBLE= 27 pre-build: cd ${WRKSRC} && cython-${PYVERSSUFFIX} logbook/_speedups.pyx .include "../../devel/py-cython/buildlink3.mk" .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1683047886102920--