Tue Jan 30 10:28:51 2018 UTC ()
py-matplotlib: updated to 2.1.2

2.1.2:
This release fixes a number of critical bugs:
- fix a typo in mlab.cohere which yielded incorrect results
- allow nonposx / nonposy to pass through loglog
- fix color comparisons when finding handles with legend
- fixes a recursive draw bug and a major performance regression in
  Qt5Agg backend
- fix a re-draw bug in WxAgg
- fix image scaling with high-bit depth integers
- revert the busy-cursor


(adam)
diff -r1.4 -r1.5 pkgsrc/graphics/py-matplotlib/Makefile.common
diff -r1.28 -r1.29 pkgsrc/graphics/py-matplotlib/distinfo
diff -r1.61 -r1.62 pkgsrc/graphics/py-matplotlib-gtk2/Makefile
diff -r1.29 -r1.30 pkgsrc/graphics/py-matplotlib-tk/Makefile

cvs diff -r1.4 -r1.5 pkgsrc/graphics/py-matplotlib/Attic/Makefile.common (expand / switch to context diff)
--- pkgsrc/graphics/py-matplotlib/Attic/Makefile.common 2018/01/14 10:38:17 1.4
+++ pkgsrc/graphics/py-matplotlib/Attic/Makefile.common 2018/01/30 10:28:51 1.5
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile.common,v 1.4 2018/01/14 10:38:17 wiz Exp $
+# $NetBSD: Makefile.common,v 1.5 2018/01/30 10:28:51 adam Exp $
 # used by graphics/py-matplotlib/Makefile
 # used by graphics/py-matplotlib-gtk2/Makefile
 # used by graphics/py-matplotlib-tk/Makefile
 
-DISTNAME=	matplotlib-2.1.1
+DISTNAME=	matplotlib-2.1.2
 CATEGORIES=	graphics python
 MASTER_SITES=	${MASTER_SITE_PYPI:=m/matplotlib/}
 

cvs diff -r1.28 -r1.29 pkgsrc/graphics/py-matplotlib/distinfo (expand / switch to context diff)
--- pkgsrc/graphics/py-matplotlib/distinfo 2017/12/22 12:21:54 1.28
+++ pkgsrc/graphics/py-matplotlib/distinfo 2018/01/30 10:28:51 1.29
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.28 2017/12/22 12:21:54 adam Exp $
+$NetBSD: distinfo,v 1.29 2018/01/30 10:28:51 adam Exp $
 
-SHA1 (matplotlib-2.1.1.tar.gz) = 948777ef3387cc8cc3454d77342c015c303d3df8
-RMD160 (matplotlib-2.1.1.tar.gz) = 6d12812253728ac462b7519bbf2a8d531604a288
-SHA512 (matplotlib-2.1.1.tar.gz) = ccfb7d9496cb8e160a22adfae7ec6edf56bf65d24d38d9a24767b8f10074a006509e789f8b270da0cedee77ed4a98642a29d2d351c520e029d4680ce6ea713cf
-Size (matplotlib-2.1.1.tar.gz) = 36121490 bytes
+SHA1 (matplotlib-2.1.2.tar.gz) = 627519bb237930550d0913f00ef1f75a4fba0e86
+RMD160 (matplotlib-2.1.2.tar.gz) = 32c2023f0a0884c0715878a1b47cfc803cc4d257
+SHA512 (matplotlib-2.1.2.tar.gz) = 91e8c75d26025b9ec31daaeac0d9e05bba8551eccd15c632a6fc724a7b25af3248528e691adc77374c4bf558d121b07bff2e82402847d43c027e88b0971e4bb9
+Size (matplotlib-2.1.2.tar.gz) = 36238363 bytes
 SHA1 (patch-setup.py) = 0088019e1296d245021fb592915226618d91495d
 SHA1 (patch-src___macosx.m) = 5b46ec15d2f66ae1ee489b6714c2731dd476d50c

cvs diff -r1.61 -r1.62 pkgsrc/graphics/py-matplotlib-gtk2/Attic/Makefile (expand / switch to context diff)
--- pkgsrc/graphics/py-matplotlib-gtk2/Attic/Makefile 2017/12/22 12:21:54 1.61
+++ pkgsrc/graphics/py-matplotlib-gtk2/Attic/Makefile 2018/01/30 10:28:51 1.62
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.61 2017/12/22 12:21:54 adam Exp $
+# $NetBSD: Makefile,v 1.62 2018/01/30 10:28:51 adam Exp $
 
 .include "../../graphics/py-matplotlib/Makefile.common"
 
@@ -7,6 +7,8 @@
 
 MPL_PACKAGES=	[setupext.Numpy(),setupext.LibAgg(),setupext.BackendGtkAgg(),setupext.BackendGtk()]
 
+DEPENDS+=	${PYPKGPREFIX}-matplotlib-[0-9]*:../../graphics/py-matplotlib
+
 PYTHON_VERSIONS_ACCEPTED=	27 # py-gtk2
 
 post-patch:
@@ -32,6 +34,5 @@
 	${PYTHONBIN} -c "import matplotlib; matplotlib.test()"
 
 .include "../../lang/python/egg.mk"
-.include "../../graphics/py-matplotlib/buildlink3.mk"
 .include "../../x11/py-gtk2/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

cvs diff -r1.29 -r1.30 pkgsrc/graphics/py-matplotlib-tk/Attic/Makefile (expand / switch to context diff)
--- pkgsrc/graphics/py-matplotlib-tk/Attic/Makefile 2017/05/29 20:59:21 1.29
+++ pkgsrc/graphics/py-matplotlib-tk/Attic/Makefile 2018/01/30 10:28:51 1.30
@@ -1,10 +1,11 @@
-# $NetBSD: Makefile,v 1.29 2017/05/29 20:59:21 adam Exp $
+# $NetBSD: Makefile,v 1.30 2018/01/30 10:28:51 adam Exp $
 
 .include "../../graphics/py-matplotlib/Makefile.common"
 
 PKGNAME=	${PYPKGPREFIX}-${DISTNAME:S/-/-tk-/}
 COMMENT=	Tk frontend for matplotlib
 
+DEPENDS+=	${PYPKGPREFIX}-matplotlib-[0-9]*:../../graphics/py-matplotlib
 DEPENDS+=	${PYPKGPREFIX}-Tk-[0-9]*:../../x11/py-Tk
 
 MPL_PACKAGES=	[setupext.Numpy(),setupext.LibAgg(),setupext.BackendTkAgg()]
@@ -32,6 +33,5 @@
 	${PYTHONBIN} -c "import matplotlib; matplotlib.test()"
 
 .include "../../lang/python/egg.mk"
-.include "../../graphics/py-matplotlib/buildlink3.mk"
 .include "../../x11/tk/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"