Received: by mail.netbsd.org (Postfix, from userid 605) id 47DFF84EBB; Tue, 18 Apr 2023 17:44:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7930E84E97 for ; Tue, 18 Apr 2023 17:44:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 7jTfg9gXKj_i for ; Tue, 18 Apr 2023 17:44:33 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F0C2E84D21 for ; Tue, 18 Apr 2023 17:44:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EA2FBFA85; Tue, 18 Apr 2023 17:44:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1681839872122180" MIME-Version: 1.0 Date: Tue, 18 Apr 2023 17:44:32 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/lang/python To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230418174432.EA2FBFA85@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1681839872122180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Apr 18 17:44:32 UTC 2023 Modified Files: pkgsrc/lang/python: versioned_dependencies.mk Log Message: removed markdown from versioned_dependencies.mk To generate a diff of this commit: cvs rdiff -u -r1.91 -r1.92 pkgsrc/lang/python/versioned_dependencies.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1681839872122180 Content-Disposition: inline Content-Length: 1588 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/python/versioned_dependencies.mk diff -u pkgsrc/lang/python/versioned_dependencies.mk:1.91 pkgsrc/lang/python/versioned_dependencies.mk:1.92 --- pkgsrc/lang/python/versioned_dependencies.mk:1.91 Wed Nov 30 10:43:00 2022 +++ pkgsrc/lang/python/versioned_dependencies.mk Tue Apr 18 17:44:32 2023 @@ -1,4 +1,4 @@ -# $NetBSD: versioned_dependencies.mk,v 1.91 2022/11/30 10:43:00 adam Exp $ +# $NetBSD: versioned_dependencies.mk,v 1.92 2023/04/18 17:44:32 adam Exp $ # # This file determines which separate distribution of a Python # package is used as dependency, depending on the Python version @@ -9,7 +9,7 @@ # PYTHON_VERSIONED_DEPENDENCIES # The Python package which should be added as a dependency. # -# Possible values: Pillow X cairo chardet click coverage cryptography dns flake8 hypothesis importlib-metadata jinja2 markdown mccabe more-itertools pip packaging pygments pyphen rsa setuptools setuptools_scm test test-cov +# Possible values: Pillow X cairo chardet click coverage cryptography dns flake8 hypothesis importlib-metadata jinja2 mccabe more-itertools pip packaging pygments pyphen rsa setuptools setuptools_scm test test-cov # Default: (nothing) # @@ -66,9 +66,6 @@ _PY_VERS_PKG.27.importlib-metadata= dev _PY_VERS_PKG.default.jinja2= textproc/py-jinja2 _PY_VERS_PKG.27.jinja2= textproc/py27-jinja2 -_PY_VERS_PKG.default.markdown= textproc/py-markdown -_PY_VERS_PKG.27.markdown= textproc/py-markdown3 - _PY_VERS_PKG.default.mccabe= devel/py-mccabe _PY_VERS_PKG.27.mccabe= devel/py-mccabe06 --_----------=_1681839872122180--