Received: by mail.netbsd.org (Postfix, from userid 605) id C633284DBA; Mon, 20 Nov 2017 17:10:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5257F84D62 for ; Mon, 20 Nov 2017 17:10:44 +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 kxmHqvKY2uz0 for ; Mon, 20 Nov 2017 17:10:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B414384D33 for ; Mon, 20 Nov 2017 17:10:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AF610FB40; Mon, 20 Nov 2017 17:10:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1511197843192250" MIME-Version: 1.0 Date: Mon, 20 Nov 2017 17:10:43 +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: <20171120171043.AF610FB40@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. --_----------=_1511197843192250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Mon Nov 20 17:10:43 UTC 2017 Modified Files: pkgsrc/devel/py-ipython: Makefile Log Message: Correct the PYPKGPREFIX value It should be "py34" rather than "34". Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/devel/py-ipython/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1511197843192250 Content-Disposition: inline Content-Length: 835 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.23 pkgsrc/devel/py-ipython/Makefile:1.24 --- pkgsrc/devel/py-ipython/Makefile:1.23 Thu Nov 16 18:50:53 2017 +++ pkgsrc/devel/py-ipython/Makefile Mon Nov 20 17:10:43 2017 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.23 2017/11/16 18:50:53 minskim Exp $ +# $NetBSD: Makefile,v 1.24 2017/11/20 17:10:43 minskim Exp $ DISTNAME= ipython-6.2.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=i/ipython/} @@ -28,7 +28,7 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 .include "../../lang/python/pyversion.mk" -.if "${PYPKGPREFIX}" == "34" +.if "${PYPKGPREFIX}" == "py34" DEPENDS+= ${PYPKGPREFIX}-typing-[0-9]*:../../devel/py-typing .endif --_----------=_1511197843192250--