Received: by mail.netbsd.org (Postfix, from userid 605) id E50DA84E5E; Sun, 16 Oct 2022 06:32:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 235AB84D8D for ; Sun, 16 Oct 2022 06:32:01 +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 MVttuqGODG_S for ; Sun, 16 Oct 2022 06:32:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 714FD84D2C for ; Sun, 16 Oct 2022 06:32:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6A1E8FA90; Sun, 16 Oct 2022 06:32:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1665901920129960" MIME-Version: 1.0 Date: Sun, 16 Oct 2022 06:32:00 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-setuptools_scm To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20221016063200.6A1E8FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1665901920129960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Oct 16 06:32:00 UTC 2022 Modified Files: pkgsrc/devel/py-setuptools_scm: Makefile Log Message: py-setuptools_scam: comment out py-importlib-metadata dependency This is required per setup.cfg for python < 3.8, but this introduces a cyclic dependency. To do: mark this (and everything using it) as not for python 3.7, since it probably won't work correctly? To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/devel/py-setuptools_scm/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1665901920129960 Content-Disposition: inline Content-Length: 908 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-setuptools_scm/Makefile diff -u pkgsrc/devel/py-setuptools_scm/Makefile:1.33 pkgsrc/devel/py-setuptools_scm/Makefile:1.34 --- pkgsrc/devel/py-setuptools_scm/Makefile:1.33 Fri Oct 14 14:03:01 2022 +++ pkgsrc/devel/py-setuptools_scm/Makefile Sun Oct 16 06:32:00 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2022/10/14 14:03:01 wiz Exp $ +# $NetBSD: Makefile,v 1.34 2022/10/16 06:32:00 wiz Exp $ DISTNAME= setuptools_scm-7.0.5 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -25,7 +25,8 @@ PYTHON_VERSIONS_INCOMPATIBLE= 27 .include "../../lang/python/pyversion.mk" .if ${_PYTHON_VERSION} == 37 -DEPENDS+= ${PYPKGPREFIX}-importlib-metadata-[0-9]*:../../devel/py-importlib-metadata +# required per setup.cfg, but this introduces a cyclic dependency +#DEPENDS+= ${PYPKGPREFIX}-importlib-metadata-[0-9]*:../../devel/py-importlib-metadata .endif USE_LANGUAGES= # none --_----------=_1665901920129960--