Received: by mail.netbsd.org (Postfix, from userid 605) id A22668559D; Thu, 16 Nov 2017 18:50:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2C1AC84D5B for ; Thu, 16 Nov 2017 18:50:54 +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 lk80AWz_SbPM for ; Thu, 16 Nov 2017 18:50:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8885084D2D for ; Thu, 16 Nov 2017 18:50:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 83E9FFB3F; Thu, 16 Nov 2017 18:50:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15108582535230" MIME-Version: 1.0 Date: Thu, 16 Nov 2017 18:50:53 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/devel/py-ipython To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20171116185053.83E9FFB3F@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. --_----------=_15108582535230 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Thu Nov 16 18:50:53 UTC 2017 Modified Files: pkgsrc/devel/py-ipython: Makefile Log Message: devel/py-ipython: Needs py-typing when used with python34 Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/devel/py-ipython/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15108582535230 Content-Disposition: inline Content-Length: 882 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-ipython/Makefile diff -u pkgsrc/devel/py-ipython/Makefile:1.22 pkgsrc/devel/py-ipython/Makefile:1.23 --- pkgsrc/devel/py-ipython/Makefile:1.22 Mon Oct 16 18:03:49 2017 +++ pkgsrc/devel/py-ipython/Makefile Thu Nov 16 18:50:53 2017 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.22 2017/10/16 18:03:49 adam Exp $ +# $NetBSD: Makefile,v 1.23 2017/11/16 18:50:53 minskim Exp $ DISTNAME= ipython-6.2.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=i/ipython/} @@ -26,6 +27,11 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 +.include "../../lang/python/pyversion.mk" +.if "${PYPKGPREFIX}" == "34" +DEPENDS+= ${PYPKGPREFIX}-typing-[0-9]*:../../devel/py-typing +.endif + post-install: cd ${DESTDIR}${PREFIX} && \ ${MV} bin/iptest bin/iptest${PYVERSSUFFIX} && \ --_----------=_15108582535230--