Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id E33E41A9239 for ; Sun, 23 Jan 2022 00:46:29 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 0BC6884D66; Sun, 23 Jan 2022 00:46:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 46BE184D50 for ; Sun, 23 Jan 2022 00:46:28 +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 dzw5tzh5R4x2 for ; Sun, 23 Jan 2022 00:46:27 +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 B2AF484D21 for ; Sun, 23 Jan 2022 00:46:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AA2CEFB24; Sun, 23 Jan 2022 00:46:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1642898787238890" MIME-Version: 1.0 Date: Sun, 23 Jan 2022 00:46:27 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220123004627.AA2CEFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1642898787238890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Jan 23 00:46:27 UTC 2022 Modified Files: pkgsrc/misc/calibre: Makefile pkgsrc/sysutils/py-jeepney: Makefile Log Message: py-jeepney, calibre: remove python 3.7 from allowed versions because of py-trio To generate a diff of this commit: cvs rdiff -u -r1.261 -r1.262 pkgsrc/misc/calibre/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/sysutils/py-jeepney/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1642898787238890 Content-Disposition: inline Content-Length: 1424 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/calibre/Makefile diff -u pkgsrc/misc/calibre/Makefile:1.261 pkgsrc/misc/calibre/Makefile:1.262 --- pkgsrc/misc/calibre/Makefile:1.261 Thu Jan 20 19:03:07 2022 +++ pkgsrc/misc/calibre/Makefile Sun Jan 23 00:46:27 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.261 2022/01/20 19:03:07 rhialto Exp $ +# $NetBSD: Makefile,v 1.262 2022/01/23 00:46:27 wiz Exp $ DISTNAME= calibre-5.34.0 CATEGORIES= misc @@ -41,7 +41,7 @@ BUILD_DEPENDS+= xdg-utils>=1.0.2:../../m EXTRACT_USING= bsdtar -PYTHON_VERSIONS_INCOMPATIBLE= 27 # as of 5.x +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # as of 5.x; and for py-trio via py-jeepney PYTHON_VERSIONED_DEPENDENCIES+= markdown USE_LANGUAGES= c99 c++ Index: pkgsrc/sysutils/py-jeepney/Makefile diff -u pkgsrc/sysutils/py-jeepney/Makefile:1.2 pkgsrc/sysutils/py-jeepney/Makefile:1.3 --- pkgsrc/sysutils/py-jeepney/Makefile:1.2 Sat Jan 22 14:10:10 2022 +++ pkgsrc/sysutils/py-jeepney/Makefile Sun Jan 23 00:46:27 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2022/01/22 14:10:10 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2022/01/23 00:46:27 wiz Exp $ DISTNAME= jeepney-0.6.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -17,7 +17,7 @@ DEPENDS+= ${PYPKGPREFIX}-trio-[0-9]*:../ USE_LANGUAGES= # none -PYTHON_VERSIONS_INCOMPATIBLE= 27 +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-trio do-test: cd ${WRKSRC} && ${SETENV} ${TEST_ENV} py.test-${PYVERSSUFFIX} --_----------=_1642898787238890--