Received: by mail.netbsd.org (Postfix, from userid 605) id 16F5584D75; Tue, 1 Jun 2021 09:07:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5384784D25 for ; Tue, 1 Jun 2021 09:07:27 +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 oBLR4h9neM8U for ; Tue, 1 Jun 2021 09:07:26 +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 A7FC784CDA for ; Tue, 1 Jun 2021 09:07:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9C1CDFA95; Tue, 1 Jun 2021 09:07:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1622538446193600" MIME-Version: 1.0 Date: Tue, 1 Jun 2021 09:07:26 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/comms/py-rich To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20210601090726.9C1CDFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1622538446193600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Jun 1 09:07:26 UTC 2021 Modified Files: pkgsrc/comms/py-rich: Makefile Log Message: py-rich: depend on typing-extensions only for Python < 3.8 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/comms/py-rich/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1622538446193600 Content-Disposition: inline Content-Length: 1115 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/comms/py-rich/Makefile diff -u pkgsrc/comms/py-rich/Makefile:1.3 pkgsrc/comms/py-rich/Makefile:1.4 --- pkgsrc/comms/py-rich/Makefile:1.3 Thu May 27 09:49:31 2021 +++ pkgsrc/comms/py-rich/Makefile Tue Jun 1 09:07:26 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2021/05/27 09:49:31 adam Exp $ +# $NetBSD: Makefile,v 1.4 2021/06/01 09:07:26 adam Exp $ DISTNAME= rich-10.2.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -13,7 +13,6 @@ LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-colorama>=0.4.0:../../comms/py-colorama DEPENDS+= ${PYPKGPREFIX}-commonmark>=0.9.0:../../textproc/py-commonmark DEPENDS+= ${PYPKGPREFIX}-pygments>=2.6.0:../../textproc/py-pygments -DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=3.7.4:../../devel/py-typing-extensions PYTHON_VERSIONS_INCOMPATIBLE= 27 @@ -21,6 +20,9 @@ PYTHON_VERSIONS_INCOMPATIBLE= 27 .if ${_PYTHON_VERSION} == 36 DEPENDS+= ${PYPKGPREFIX}-dataclasses>=0.7:../../devel/py-dataclasses .endif +.if ${_PYTHON_VERSION} < 38 +DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=3.7.4:../../devel/py-typing-extensions +.endif USE_LANGUAGES= # none --_----------=_1622538446193600--