Received: by mail.netbsd.org (Postfix, from userid 605) id 2FDEA84E3B; Tue, 30 Jan 2018 10:20:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id ADA6C84DAE for ; Tue, 30 Jan 2018 10:20:12 +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 sPvZgvIYgHbp for ; Tue, 30 Jan 2018 10:20:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1506384D38 for ; Tue, 30 Jan 2018 10:20:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1F8F3FBDE; Tue, 30 Jan 2018 10:20:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_151730761239420" MIME-Version: 1.0 Date: Tue, 30 Jan 2018 10:20:12 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/math/py-scikit-image To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180130102012.1F8F3FBDE@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. --_----------=_151730761239420 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Jan 30 10:20:12 UTC 2018 Modified Files: pkgsrc/math/py-scikit-image: Makefile Log Message: Now DEPENDS on py-matplotlib rather than buildlinking To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/math/py-scikit-image/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_151730761239420 Content-Disposition: inline Content-Length: 1399 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-scikit-image/Makefile diff -u pkgsrc/math/py-scikit-image/Makefile:1.1 pkgsrc/math/py-scikit-image/Makefile:1.2 --- pkgsrc/math/py-scikit-image/Makefile:1.1 Wed Nov 22 11:14:52 2017 +++ pkgsrc/math/py-scikit-image/Makefile Tue Jan 30 10:20:11 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2017/11/22 11:14:52 markd Exp $ +# $NetBSD: Makefile,v 1.2 2018/01/30 10:20:11 adam Exp $ DISTNAME= scikit-image-0.13.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -11,16 +11,16 @@ COMMENT= Image processing routines for S LICENSE= modified-bsd DEPENDS+= ${PYPKGPREFIX}-Pillow>=2.9.0:../../graphics/py-Pillow -DEPENDS+= ${PYPKGPREFIX}-six>=1.9.0:../../lang/py-six +DEPENDS+= ${PYPKGPREFIX}-PyWavelets>=0.5.2:../../math/py-pywavelets +DEPENDS+= ${PYPKGPREFIX}-matplotlib-[0-9]*:../../graphics/py-matplotlib DEPENDS+= ${PYPKGPREFIX}-networkx>=1.9:../../math/py-networkx DEPENDS+= ${PYPKGPREFIX}-scipy>=0.15.1:../../math/py-scipy -DEPENDS+= ${PYPKGPREFIX}-PyWavelets>=0.5.2:../../math/py-pywavelets +DEPENDS+= ${PYPKGPREFIX}-six>=1.9.0:../../lang/py-six post-install: cd ${DESTDIR}${PREFIX}/bin && ${MV} skivi skivi${PYVERSSUFFIX} || ${TRUE} .include "../../devel/py-cython/buildlink3.mk" -.include "../../graphics/py-matplotlib/buildlink3.mk" .include "../../lang/python/egg.mk" .include "../../math/py-numpy/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_151730761239420--