Received: by mail.netbsd.org (Postfix, from userid 605) id 22DC384DBB; Fri, 15 Nov 2019 14:05:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9FC8B84DB1 for ; Fri, 15 Nov 2019 14:05:55 +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 zggACZ8XYGw7 for ; Fri, 15 Nov 2019 14:05:55 +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 E9FBE84CEF for ; Fri, 15 Nov 2019 14:05:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D707DFA97; Fri, 15 Nov 2019 14:05:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157382675497460" MIME-Version: 1.0 Date: Fri, 15 Nov 2019 14:05:54 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/lang/python To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20191115140554.D707DFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_157382675497460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Nov 15 14:05:54 UTC 2019 Modified Files: pkgsrc/lang/python: versioned_dependencies.mk Log Message: python: add support for more-itertools to versioned_dependencies.mk To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 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. --_----------=_157382675497460 Content-Disposition: inline Content-Length: 1367 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.34 pkgsrc/lang/python/versioned_dependencies.mk:1.35 --- pkgsrc/lang/python/versioned_dependencies.mk:1.34 Mon Oct 21 21:08:56 2019 +++ pkgsrc/lang/python/versioned_dependencies.mk Fri Nov 15 14:05:54 2019 @@ -1,4 +1,4 @@ -# $NetBSD: versioned_dependencies.mk,v 1.34 2019/10/21 21:08:56 adam Exp $ +# $NetBSD: versioned_dependencies.mk,v 1.35 2019/11/15 14:05:54 wiz Exp $ # # This file determines which separate distribution of a Python # package is used as dependency, depending on the Python version @@ -15,6 +15,7 @@ .include "../../lang/python/pyversion.mk" +# format: short name for PYTHON_VERSIONED_DEPENDENCIESpython-2.x pathpython-3.x path _SUPPORTED_PACKAGES= # empty _SUPPORTED_PACKAGES+= Pmw x11/py-Pmw x11/py-Pmw2 _SUPPORTED_PACKAGES+= X textproc/py-X2 textproc/py-X @@ -24,6 +25,7 @@ _SUPPORTED_PACKAGES+= ipython devel/py-i _SUPPORTED_PACKAGES+= jsonlib textproc/py-jsonlib textproc/py-jsonlib3 _SUPPORTED_PACKAGES+= python-digest www/py-python-digest www/py-python3-digest _SUPPORTED_PACKAGES+= sphinx textproc/py-sphinx1 textproc/py-sphinx +_SUPPORTED_PACKAGES+= more-itertools devel/py-more-itertools2 devel/py-more-itertools .for pattern in ${PYTHON_VERSIONED_DEPENDENCIES} _PKG_MATCHED= no --_----------=_157382675497460--