pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/graphics



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Jan 30 10:28:51 UTC 2018

Modified Files:
        pkgsrc/graphics/py-matplotlib: Makefile.common distinfo
        pkgsrc/graphics/py-matplotlib-gtk2: Makefile
        pkgsrc/graphics/py-matplotlib-tk: Makefile

Log Message:
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


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/graphics/py-matplotlib/Makefile.common
cvs rdiff -u -r1.28 -r1.29 pkgsrc/graphics/py-matplotlib/distinfo
cvs rdiff -u -r1.61 -r1.62 pkgsrc/graphics/py-matplotlib-gtk2/Makefile
cvs rdiff -u -r1.29 -r1.30 pkgsrc/graphics/py-matplotlib-tk/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/graphics/py-matplotlib/Makefile.common
diff -u pkgsrc/graphics/py-matplotlib/Makefile.common:1.4 pkgsrc/graphics/py-matplotlib/Makefile.common:1.5
--- pkgsrc/graphics/py-matplotlib/Makefile.common:1.4   Sun Jan 14 10:38:17 2018
+++ pkgsrc/graphics/py-matplotlib/Makefile.common       Tue Jan 30 10:28:51 2018
@@ -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/}
 

Index: pkgsrc/graphics/py-matplotlib/distinfo
diff -u pkgsrc/graphics/py-matplotlib/distinfo:1.28 pkgsrc/graphics/py-matplotlib/distinfo:1.29
--- pkgsrc/graphics/py-matplotlib/distinfo:1.28 Fri Dec 22 12:21:54 2017
+++ pkgsrc/graphics/py-matplotlib/distinfo      Tue Jan 30 10:28:51 2018
@@ -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

Index: pkgsrc/graphics/py-matplotlib-gtk2/Makefile
diff -u pkgsrc/graphics/py-matplotlib-gtk2/Makefile:1.61 pkgsrc/graphics/py-matplotlib-gtk2/Makefile:1.62
--- pkgsrc/graphics/py-matplotlib-gtk2/Makefile:1.61    Fri Dec 22 12:21:54 2017
+++ pkgsrc/graphics/py-matplotlib-gtk2/Makefile Tue Jan 30 10:28:51 2018
@@ -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 @@ COMMENT=        GTK frontend for matplotlib
 
 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 @@ do-test:
        ${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"

Index: pkgsrc/graphics/py-matplotlib-tk/Makefile
diff -u pkgsrc/graphics/py-matplotlib-tk/Makefile:1.29 pkgsrc/graphics/py-matplotlib-tk/Makefile:1.30
--- pkgsrc/graphics/py-matplotlib-tk/Makefile:1.29      Mon May 29 20:59:21 2017
+++ pkgsrc/graphics/py-matplotlib-tk/Makefile   Tue Jan 30 10:28:51 2018
@@ -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 @@ do-test:
        ${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"



Home | Main Index | Thread Index | Old Index