Received: by mail.netbsd.org (Postfix, from userid 605) id 60D6B84E67; Mon, 14 Nov 2022 22:06:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9156584CF7 for ; Mon, 14 Nov 2022 22:06:03 +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 necDU76GqWKu for ; Mon, 14 Nov 2022 22:06:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 123B084CEE for ; Mon, 14 Nov 2022 22:06:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D7FFBFA90; Mon, 14 Nov 2022 22:06:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1668463562201340" MIME-Version: 1.0 Date: Mon, 14 Nov 2022 22:06:02 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20221114220602.D7FFBFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1668463562201340 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Nov 14 22:06:02 UTC 2022 Modified Files: pkgsrc/audio/py-music21: Makefile pkgsrc/devel/py-guppy3: Makefile Log Message: py-guppy3: does not support python 3.11 as of 3.1.2 To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/audio/py-music21/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-guppy3/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1668463562201340 Content-Disposition: inline Content-Length: 1578 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/py-music21/Makefile diff -u pkgsrc/audio/py-music21/Makefile:1.22 pkgsrc/audio/py-music21/Makefile:1.23 --- pkgsrc/audio/py-music21/Makefile:1.22 Mon Oct 10 11:27:28 2022 +++ pkgsrc/audio/py-music21/Makefile Mon Nov 14 22:06:02 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2022/10/10 11:27:28 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2022/11/14 22:06:02 wiz Exp $ VERSION= 8.1.0 DISTNAME= music21-noCorpus-${VERSION} @@ -31,7 +31,8 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-guppy3-[0- USE_LANGUAGES= # none # This package now only supports >= 3.8. (Same with its scipy dependency.) -PYTHON_VERSIONS_INCOMPATIBLE= 27 37 +# no 3.11 support in py-guppy3 as of 3.1.2 +PYTHON_VERSIONS_INCOMPATIBLE= 27 37 311 # NB lilypond must be installed in order to run the full test suite. do-test: Index: pkgsrc/devel/py-guppy3/Makefile diff -u pkgsrc/devel/py-guppy3/Makefile:1.9 pkgsrc/devel/py-guppy3/Makefile:1.10 --- pkgsrc/devel/py-guppy3/Makefile:1.9 Tue Jan 4 20:53:09 2022 +++ pkgsrc/devel/py-guppy3/Makefile Mon Nov 14 22:06:02 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2022/01/04 20:53:09 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2022/11/14 22:06:02 wiz Exp $ DISTNAME= guppy3-3.1.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -13,7 +13,9 @@ LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-Tk-[0-9]*:../../x11/py-Tk -PYTHON_VERSIONS_INCOMPATIBLE= 27 +# no 3.11 support as of 3.1.2 +# https://github.com/zhuyifei1999/guppy3/issues/41 +PYTHON_VERSIONS_INCOMPATIBLE= 27 311 .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1668463562201340--