[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD freetype.patch)

2022-05-07 Thread Bruno Pagani via arch-commits
Date: Saturday, May 7, 2022 @ 11:38:06
  Author: archange
Revision: 1196166

upgpkg: python-matplotlib 3.5.2-1

Modified:
  python-matplotlib/trunk/PKGBUILD
  python-matplotlib/trunk/freetype.patch

+
 PKGBUILD   |   17 +
 freetype.patch |   52 +++-
 2 files changed, 40 insertions(+), 29 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-05-07 11:23:29 UTC (rev 1196165)
+++ PKGBUILD2022-05-07 11:38:06 UTC (rev 1196166)
@@ -6,8 +6,8 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=python-matplotlib
-pkgver=3.5.1
-pkgrel=2
+pkgver=3.5.2
+pkgrel=1
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";
@@ -35,14 +35,14 @@
   texlive-bin texlive-core texlive-latexextra texlive-pictures 
ghostscript inkscape ffmpeg imagemagick
   gtk4 python-cairo python-cairocffi python-gobject python-pyqt5 
pyside2 python-pyqt6 pyside6 python-tornado python-wxpython tk
   jupyter-nbconvert jupyter-nbformat python-ipykernel 
python-pandas python-pikepdf python-pytz)
-_tag=312c1fb08c5d46aaccaf8b62c8673e4202523e8a # git rev-parse v${pkgver}
-_ftver=2.11.0
+_tag=af8c92817e9c1b5cb51bd060ceb99ed956e714c1 # git rev-parse v${pkgver}
+_ftver=2.12.1
 source=(git+https://github.com/matplotlib/matplotlib.git#tag=${_tag}?signed
 
https://github.com/QuLogic/mpl-images/archive/v${pkgver}-with-freetype-${_ftver}/mpl-images-${pkgver}-ft${_ftver}.tar.gz
 freetype.patch)
 b2sums=('SKIP'
-
'85e4298a7b36c6eedc6a4f7b81f803ab45536697937dccd1a039471e257a4f23f547f16e244bebb77a1d3260397a3da0a7f4ee70869a47c8f68b603f0e287d89'
-
'514324b3e17e832d5199eaa6592c05ca662b1164ddc95f16ea076d6a1063b06e6a8fa4eac7740e5f73afbcc9d17244c5cc41373d5787f62cd58eab10249302c9')
+
'b3dc00bd2e2ffb36e8d61ae570dee19a7bf54155fd91d4dc03b3f0ac439466efddc9564a27c44bb3eb9b46b7505cb4920f35c1a2c74a3ab7396a4b7bbbc6a9be'
+
'0f41283060ecd070e04efa51b32321f378fbcd50d2fc3105df517f55ea5b0268f2d4494dd742e463c4790fa18ecdac26e6c6ab6adcaa134cda152a523911ece1')
 validpgpkeys=(23CAB59E3332F94D26BEF0378D86E7FAE5EB0C10) # Elliott Sales de 
Andrade 
 
 prepare() {
@@ -71,9 +71,10 @@
   cd matplotlib
   python -m venv --system-site-packages test-env
   test-env/bin/python setup.py install --skip-build
-  # test_ipynb: https://github.com/matplotlib/matplotlib/issues/21654 fixed 
but jupyter does not see matplotlib?
+  # test_ipynb: https://github.com/matplotlib/matplotlib/issues/21654 fixed 
but `ModuleNotFoundError: No module named 'matplotlib'`
+  # test_cross_Qt_imports https://github.com/matplotlib/matplotlib/issues/23004
   xvfb-run -a -s "-screen 0 640x480x24" \
-test-env/bin/python -m pytest -ra -n auto -v --color=yes --pyargs 
matplotlib mpl_toolkits.tests -k 'not test_ipynb'
+test-env/bin/python -m pytest -ra -n auto -v --color=yes --pyargs 
matplotlib mpl_toolkits.tests -k 'not test_ipynb and not test_cross_Qt_imports'
 }
 
 package() {

Modified: freetype.patch
===
--- freetype.patch  2022-05-07 11:23:29 UTC (rev 1196165)
+++ freetype.patch  2022-05-07 11:38:06 UTC (rev 1196166)
@@ -1,4 +1,4 @@
-From 0779db3fa70c58e88e048bec9b738ae02fccaead Mon Sep 17 00:00:00 2001
+From 200afb4b8503031e1aad437482b2bc61b1cede32 Mon Sep 17 00:00:00 2001
 From: Elliott Sales de Andrade 
 Date: Fri, 14 Feb 2020 06:05:42 -0500
 
@@ -9,27 +9,27 @@
  lib/matplotlib/tests/test_constrainedlayout.py |  2 +-
  lib/matplotlib/tests/test_polar.py |  2 +-
  lib/matplotlib/tests/test_tightlayout.py   | 10 +-
- setupext.py|  9 -
- 7 files changed, 23 insertions(+), 13 deletions(-)
+ setupext.py|  9 +--
+ 6 files changed, 23 insertions(+), 12 deletions(-)
 
 diff --git a/lib/matplotlib/__init__.py b/lib/matplotlib/__init__.py
 index bc800e1322..10ff904c8e 100644
 --- a/lib/matplotlib/__init__.py
 +++ b/lib/matplotlib/__init__.py
-@@ -1198,7 +1198,7 @@ default_test_modules = [
+@@ -1201,7 +1201,7 @@ default_test_modules = [
  def _init_tests():
  # The version of FreeType to install locally for running the
  # tests.  This must match the value in `setupext.py`
 -LOCAL_FREETYPE_VERSION = '2.6.1'
-+LOCAL_FREETYPE_VERSION = '2.11.0'
++LOCAL_FREETYPE_VERSION = '2.12.1'
  
  from matplotlib import ft2font
  if (ft2font.__freetype_version__ != LOCAL_FREETYPE_VERSION or
 diff --git a/lib/matplotlib/tests/test_axes.py 
b/lib/matplotlib/tests/test_axes.py
-index 2d6c1deed4..472e0e6902 100644
+index eb4c34382b..03b92d34fa 100644
 --- a/lib/matplotlib/tests/test_axes.py
 +++ b/lib/matplotlib/tests/test_axes.py
-@@ -6572,7 +6572,7 @@ def test_normal_axes():
+@@ -6710,7 +6710,7 @@ def test_normal_axes():
  

[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)

2022-01-22 Thread Bruno Pagani via arch-commits
Date: Saturday, January 22, 2022 @ 19:56:26
  Author: archange
Revision: 1113480

Update tests data, re-enable fixed test

Modified:
  python-matplotlib/trunk/PKGBUILD

--+
 PKGBUILD |   14 ++
 1 file changed, 6 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-01-22 19:39:14 UTC (rev 1113479)
+++ PKGBUILD2022-01-22 19:56:26 UTC (rev 1113480)
@@ -7,7 +7,7 @@
 
 pkgname=python-matplotlib
 pkgver=3.5.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";
@@ -38,10 +38,10 @@
 _tag=312c1fb08c5d46aaccaf8b62c8673e4202523e8a # git rev-parse v${pkgver}
 _ftver=2.11.0
 source=(git+https://github.com/matplotlib/matplotlib.git#tag=${_tag}?signed
-
https://github.com/QuLogic/mpl-images/archive/v3.5.0-with-freetype-${_ftver}/mpl-images-3.5.0-ft${_ftver}.tar.gz
+
https://github.com/QuLogic/mpl-images/archive/v${pkgver}-with-freetype-${_ftver}/mpl-images-${pkgver}-ft${_ftver}.tar.gz
 freetype.patch)
 b2sums=('SKIP'
-
'fed606dcd4d338c6b1c7dd2add58b42b0e819598129618289036dda0499584287315819cce647c35999eb8375875e0488ca20311b03c79cf76dddb2bbdf366ba'
+
'85e4298a7b36c6eedc6a4f7b81f803ab45536697937dccd1a039471e257a4f23f547f16e244bebb77a1d3260397a3da0a7f4ee70869a47c8f68b603f0e287d89'
 
'514324b3e17e832d5199eaa6592c05ca662b1164ddc95f16ea076d6a1063b06e6a8fa4eac7740e5f73afbcc9d17244c5cc41373d5787f62cd58eab10249302c9')
 validpgpkeys=(23CAB59E3332F94D26BEF0378D86E7FAE5EB0C10) # Elliott Sales de 
Andrade 
 
@@ -56,10 +56,9 @@
   # Install tests for check()
   sed -i 's|#tests = False|tests = True|' mplsetup.cfg
   # Use appropriate baseline images for tests
-  rm 
../mpl-images-3.5.0-with-freetype-${_ftver}/matplotlib/test_streamplot/streamplot_startpoints.*
   for _module in matplotlib mpl_toolkits
   do
-cp -r ../mpl-images-3.5.0-with-freetype-${_ftver}/${_module}/* 
lib/${_module}/tests/baseline_images/
+cp -r ../mpl-images-${pkgver}-with-freetype-${_ftver}/${_module}/* 
lib/${_module}/tests/baseline_images/
   done
 }
 
@@ -72,10 +71,9 @@
   cd matplotlib
   python -m venv --system-site-packages test-env
   test-env/bin/python setup.py install --skip-build
-  # test_ipynb: https://github.com/matplotlib/matplotlib/issues/21654
-  # test_pcolornearestunits: 
https://github.com/matplotlib/matplotlib/issues/21271
+  # test_ipynb: https://github.com/matplotlib/matplotlib/issues/21654 fixed 
but jupyter does not see matplotlib?
   xvfb-run -a -s "-screen 0 640x480x24" \
-test-env/bin/python -m pytest -ra -n auto -v --color=yes --pyargs 
matplotlib mpl_toolkits.tests -k 'not test_ipynb and not 
test_pcolornearestunits'
+test-env/bin/python -m pytest -ra -n auto -v --color=yes --pyargs 
matplotlib mpl_toolkits.tests -k 'not test_ipynb'
 }
 
 package() {



[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)

2021-12-12 Thread Antonio Rojas via arch-commits
Date: Sunday, December 12, 2021 @ 13:30:52
  Author: arojas
Revision: 1068910

Update to 3.5.1

Modified:
  python-matplotlib/trunk/PKGBUILD

--+
 PKGBUILD |   21 +
 1 file changed, 9 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-12 13:29:59 UTC (rev 1068909)
+++ PKGBUILD2021-12-12 13:30:52 UTC (rev 1068910)
@@ -6,8 +6,8 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=python-matplotlib
-pkgver=3.5.0
-pkgrel=3
+pkgver=3.5.1
+pkgrel=1
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";
@@ -35,14 +35,14 @@
   texlive-bin texlive-core texlive-latexextra texlive-pictures 
ghostscript inkscape ffmpeg imagemagick
   gtk4 python-cairo python-cairocffi python-gobject python-pyqt5 
pyside2 python-pyqt6 pyside6 python-tornado python-wxpython tk
   jupyter-nbconvert jupyter-nbformat python-ipykernel 
python-pandas python-pikepdf python-pytz)
-_tag=7a9ee717ecfa24ae4029abac0c7939076c2b0eb7 # git rev-parse v${pkgver}
+_tag=312c1fb08c5d46aaccaf8b62c8673e4202523e8a # git rev-parse v${pkgver}
 _ftver=2.11.0
 source=(git+https://github.com/matplotlib/matplotlib.git#tag=${_tag}?signed
-
https://github.com/QuLogic/mpl-images/archive/v${pkgver}rc1-with-freetype-${_ftver}/mpl-images-${pkgver}rc1-ft${_ftver}.tar.gz
+
https://github.com/QuLogic/mpl-images/archive/v3.5.0-with-freetype-${_ftver}/mpl-images-3.5.0-ft${_ftver}.tar.gz
 freetype.patch)
-b2sums=(SKIP
-
29e87a2dd2fc37c3d33e7e0463ca02b468953abe896ac658a6764e78f61a56bb486f5fec51403b2bda726031c5352b4270049256ac8f630eef56ffb3071b870a
-
514324b3e17e832d5199eaa6592c05ca662b1164ddc95f16ea076d6a1063b06e6a8fa4eac7740e5f73afbcc9d17244c5cc41373d5787f62cd58eab10249302c9)
+b2sums=('SKIP'
+
'fed606dcd4d338c6b1c7dd2add58b42b0e819598129618289036dda0499584287315819cce647c35999eb8375875e0488ca20311b03c79cf76dddb2bbdf366ba'
+
'514324b3e17e832d5199eaa6592c05ca662b1164ddc95f16ea076d6a1063b06e6a8fa4eac7740e5f73afbcc9d17244c5cc41373d5787f62cd58eab10249302c9')
 validpgpkeys=(23CAB59E3332F94D26BEF0378D86E7FAE5EB0C10) # Elliott Sales de 
Andrade 
 
 prepare() {
@@ -56,14 +56,11 @@
   # Install tests for check()
   sed -i 's|#tests = False|tests = True|' mplsetup.cfg
   # Use appropriate baseline images for tests
-  cp lib/matplotlib/tests/baseline_images/test_image/uint16.tif .
+  rm 
../mpl-images-3.5.0-with-freetype-${_ftver}/matplotlib/test_streamplot/streamplot_startpoints.*
   for _module in matplotlib mpl_toolkits
   do
-rm -r lib/${_module}/tests/baseline_images/test*
-mv ../mpl-images-${pkgver}rc1-with-freetype-${_ftver}/${_module}/* 
lib/${_module}/tests/baseline_images/
+cp -r ../mpl-images-3.5.0-with-freetype-${_ftver}/${_module}/* 
lib/${_module}/tests/baseline_images/
   done
-  # https://github.com/QuLogic/mpl-images/issues/1
-  cp uint16.tif lib/matplotlib/tests/baseline_images/test_image/
 }
 
 build() {



[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)

2021-12-07 Thread Felix Yan via arch-commits
Date: Wednesday, December 8, 2021 @ 04:20:12
  Author: felixonmars
Revision: 1065604

upgpkg: python-matplotlib 3.5.0-3: Python 3.10 rebuild

Modified:
  python-matplotlib/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 04:15:08 UTC (rev 1065603)
+++ PKGBUILD2021-12-08 04:20:12 UTC (rev 1065604)
@@ -7,7 +7,7 @@
 
 pkgname=python-matplotlib
 pkgver=3.5.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";



[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)

2021-12-07 Thread Evangelos Foutras via arch-commits
Date: Wednesday, December 8, 2021 @ 04:15:08
  Author: foutrelis
Revision: 1065603

Ignore test_pcolornearestunits failure

It needs the bundled freetype version to pass.

Modified:
  python-matplotlib/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-08 04:00:47 UTC (rev 1065602)
+++ PKGBUILD2021-12-08 04:15:08 UTC (rev 1065603)
@@ -75,9 +75,10 @@
   cd matplotlib
   python -m venv --system-site-packages test-env
   test-env/bin/python setup.py install --skip-build
-  # https://github.com/matplotlib/matplotlib/issues/21654
+  # test_ipynb: https://github.com/matplotlib/matplotlib/issues/21654
+  # test_pcolornearestunits: 
https://github.com/matplotlib/matplotlib/issues/21271
   xvfb-run -a -s "-screen 0 640x480x24" \
-test-env/bin/python -m pytest -ra -n auto -v --color=yes --pyargs 
matplotlib mpl_toolkits.tests -k 'not test_ipynb'
+test-env/bin/python -m pytest -ra -n auto -v --color=yes --pyargs 
matplotlib mpl_toolkits.tests -k 'not test_ipynb and not 
test_pcolornearestunits'
 }
 
 package() {



[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)

2021-11-30 Thread Felix Yan via arch-commits
Date: Tuesday, November 30, 2021 @ 22:32:31
  Author: felixonmars
Revision: 1059051

upgpkg: python-matplotlib 3.5.0-2: Python 3.10 rebuild

Modified:
  python-matplotlib/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-11-30 22:32:18 UTC (rev 1059050)
+++ PKGBUILD2021-11-30 22:32:31 UTC (rev 1059051)
@@ -7,7 +7,7 @@
 
 pkgname=python-matplotlib
 pkgver=3.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";



[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD freetype.patch)

2021-11-16 Thread Bruno Pagani via arch-commits
Date: Tuesday, November 16, 2021 @ 21:02:07
  Author: archange
Revision: 1048846

upgpkg: python-matplotlib 3.5.0-1

Update *depends, fix tests

Added:
  python-matplotlib/trunk/freetype.patch
Modified:
  python-matplotlib/trunk/PKGBUILD

+
 PKGBUILD   |   70 +++--
 freetype.patch |  129 +++
 2 files changed, 175 insertions(+), 24 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-11-16 20:48:33 UTC (rev 1048845)
+++ PKGBUILD2021-11-16 21:02:07 UTC (rev 1048846)
@@ -6,19 +6,22 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=python-matplotlib
-pkgver=3.4.3
+pkgver=3.5.0
 pkgrel=1
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";
 license=(custom)
-depends=(freetype2 python-cycler python-dateutil python-kiwisolver 
python-numpy python-pillow python-pyparsing qhull)
+depends=(freetype2 python-cycler python-dateutil python-fonttools 
python-kiwisolver python-numpy
+ python-packaging python-pillow python-pyparsing qhull)
 optdepends=('tk: Tk{Agg,Cairo} backends'
 'pyside2: alternative for Qt5{Agg,Cairo} backends'
+'pyside6: alternative for Qt6{Agg,Cairo} backends'
 'python-pyqt5: Qt5{Agg,Cairo} backends'
-'python-gobject: for GTK3{Agg,Cairo} backend'
-'python-wxpython: WX{,Agg,Cairo} backend'
-'python-cairo: {GTK3,Qt5,Tk,WX}Cairo backends'
+'python-pyqt6: Qt6{Agg,Cairo} backends'
+'python-gobject: for GTK{3,4}{Agg,Cairo} backend'
+'python-wxpython: WX{Agg,Cairo} backend'
+'python-cairo: {GTK{3,4},Qt{5,6},Tk,WX}Cairo backends'
 'python-cairocffi: alternative for Cairo backends'
 'python-tornado: WebAgg backend'
 'ffmpeg: for saving movies'
@@ -27,24 +30,40 @@
 'texlive-bin: usetex dependencies'
 'texlive-latexextra: usetex usage with pdflatex'
 'python-certifi: https support')
-makedepends=(git rsync python-setuptools
- tk python-pyqt5 python-gobject
- python-wxpython python-cairocffi
- python-certifi python-tornado
- ghostscript texlive-bin)
- # agg missing some non-upstreamed patches?
-checkdepends=(python-pytest python-pytest-xdist python-pytest-runner 
xorg-server-xvfb
-  texlive-core texlive-latexextra ghostscript inkscape mencoder
-  ffmpeg imagemagick python-pandas)
-_tag=42d40d388ef326b4dd913f17864cc8cf60c0fef8 # git rev-parse v${pkgver}
-source=(git+https://github.com/matplotlib/matplotlib.git#tag=${_tag}?signed)
-sha512sums=(SKIP)
+makedepends=(git python-setuptools-scm-git-archive python-certifi)
+checkdepends=(python-pytest python-pytest-xdist python-pytest-runner 
python-pytest-rerunfailures xorg-server-xvfb
+  texlive-bin texlive-core texlive-latexextra texlive-pictures 
ghostscript inkscape ffmpeg imagemagick
+  gtk4 python-cairo python-cairocffi python-gobject python-pyqt5 
pyside2 python-pyqt6 pyside6 python-tornado python-wxpython tk
+  jupyter-nbconvert jupyter-nbformat python-ipykernel 
python-pandas python-pikepdf python-pytz)
+_tag=7a9ee717ecfa24ae4029abac0c7939076c2b0eb7 # git rev-parse v${pkgver}
+_ftver=2.11.0
+source=(git+https://github.com/matplotlib/matplotlib.git#tag=${_tag}?signed
+
https://github.com/QuLogic/mpl-images/archive/v${pkgver}rc1-with-freetype-${_ftver}/mpl-images-${pkgver}rc1-ft${_ftver}.tar.gz
+freetype.patch)
+b2sums=(SKIP
+
29e87a2dd2fc37c3d33e7e0463ca02b468953abe896ac658a6764e78f61a56bb486f5fec51403b2bda726031c5352b4270049256ac8f630eef56ffb3071b870a
+
514324b3e17e832d5199eaa6592c05ca662b1164ddc95f16ea076d6a1063b06e6a8fa4eac7740e5f73afbcc9d17244c5cc41373d5787f62cd58eab10249302c9)
 validpgpkeys=(23CAB59E3332F94D26BEF0378D86E7FAE5EB0C10) # Elliott Sales de 
Andrade 
 
 prepare() {
   cd matplotlib
-# Use system freetype and qhull
-  sed -e 's|#system_freetype = False|system_freetype = True|' -e 
's|#system_qhull = False|system_qhull = True|' setup.cfg.template > setup.cfg
+  # Fix SCM detected version
+  rm -r .git
+  echo "Version: ${pkgver}" > PKG-INFO
+  # Use system freetype and qhull
+  sed -e 's|#system_freetype = False|system_freetype = True|' -e 
's|#system_qhull = False|system_qhull = True|' mplsetup.cfg.template > 
mplsetup.cfg
+  patch -p1 < ../freetype.patch # From Fedora/upstream
+  # Install tests for check()
+  sed -i 's|#tests = False|tests = True|' mplsetup.cfg
+  # Use appropriate baseline images for tests
+  cp lib/matplotlib/tests/baseline_images/test_image/uint16.tif .
+  for _module in matplotlib mpl_toolkits
+  do
+rm -r lib/${_module}/tests/baseline_images/test*
+mv ../mpl-images-${pkgver}rc1-with-freetype-${_ftver}/${_module}/* 
lib/${_module}/t

[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)

2021-09-02 Thread Antonio Rojas via arch-commits
Date: Thursday, September 2, 2021 @ 16:13:13
  Author: arojas
Revision: 1010589

Update to 3.4.3

Modified:
  python-matplotlib/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-09-02 15:42:17 UTC (rev 1010588)
+++ PKGBUILD2021-09-02 16:13:13 UTC (rev 1010589)
@@ -6,8 +6,8 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=python-matplotlib
-pkgver=3.4.2
-pkgrel=3
+pkgver=3.4.3
+pkgrel=1
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";
@@ -36,7 +36,7 @@
 checkdepends=(python-pytest python-pytest-xdist python-pytest-runner 
xorg-server-xvfb
   texlive-core texlive-latexextra ghostscript inkscape mencoder
   ffmpeg imagemagick python-pandas)
-_tag=71c0c77108b849d2c2702601269c3ea7d63a53d9 # git rev-parse v${pkgver}
+_tag=42d40d388ef326b4dd913f17864cc8cf60c0fef8 # git rev-parse v${pkgver}
 source=(git+https://github.com/matplotlib/matplotlib.git#tag=${_tag}?signed)
 sha512sums=(SKIP)
 validpgpkeys=(23CAB59E3332F94D26BEF0378D86E7FAE5EB0C10) # Elliott Sales de 
Andrade 



[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)

2021-07-28 Thread Bruno Pagani via arch-commits
Date: Wednesday, July 28, 2021 @ 16:06:52
  Author: archange
Revision: 989014

Reproducibility rebuild

Modified:
  python-matplotlib/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-07-28 15:44:51 UTC (rev 989013)
+++ PKGBUILD2021-07-28 16:06:52 UTC (rev 989014)
@@ -7,7 +7,7 @@
 
 pkgname=python-matplotlib
 pkgver=3.4.2
-pkgrel=2
+pkgrel=3
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";
@@ -60,6 +60,7 @@
 
 package_python-matplotlib() {
   cd matplotlib
+  export PYTHONHASHSEED=0
   python setup.py install --root "${pkgdir}" --prefix=/usr --optimize=1 
--skip-build
   install -Dm644 doc/users/license.rst -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
   # Needed since https://github.com/matplotlib/matplotlib/pull/14170



[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)

2021-07-21 Thread Bruno Pagani via arch-commits
Date: Wednesday, July 21, 2021 @ 17:05:35
  Author: archange
Revision: 982413

Rebuild using proper tag blob

Modified:
  python-matplotlib/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-07-21 17:05:14 UTC (rev 982412)
+++ PKGBUILD2021-07-21 17:05:35 UTC (rev 982413)
@@ -7,7 +7,7 @@
 
 pkgname=python-matplotlib
 pkgver=3.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";
@@ -36,8 +36,8 @@
 checkdepends=(python-pytest python-pytest-xdist python-pytest-runner 
xorg-server-xvfb
   texlive-core texlive-latexextra ghostscript inkscape mencoder
   ffmpeg imagemagick python-pandas)
-_tag=918149749ca2977d9ca43acda8eed4be811e81b4 # git rev-parse v${pkgver}
-source=(git+https://github.com/matplotlib/matplotlib.git#tag=v${pkgver}?signed)
+_tag=71c0c77108b849d2c2702601269c3ea7d63a53d9 # git rev-parse v${pkgver}
+source=(git+https://github.com/matplotlib/matplotlib.git#tag=${_tag}?signed)
 sha512sums=(SKIP)
 validpgpkeys=(23CAB59E3332F94D26BEF0378D86E7FAE5EB0C10) # Elliott Sales de 
Andrade 
 



[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)

2021-06-20 Thread Antonio Rojas via arch-commits
Date: Sunday, June 20, 2021 @ 16:29:53
  Author: arojas
Revision: 965955

Update to 3.4.2

Modified:
  python-matplotlib/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-06-20 16:25:23 UTC (rev 965954)
+++ PKGBUILD2021-06-20 16:29:53 UTC (rev 965955)
@@ -6,8 +6,8 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=python-matplotlib
-pkgver=3.4.1
-pkgrel=2
+pkgver=3.4.2
+pkgrel=1
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";
@@ -37,7 +37,7 @@
   texlive-core texlive-latexextra ghostscript inkscape mencoder
   ffmpeg imagemagick python-pandas)
 _tag=918149749ca2977d9ca43acda8eed4be811e81b4 # git rev-parse v${pkgver}
-source=(git+https://github.com/matplotlib/matplotlib.git#tag=${_tag}?signed)
+source=(git+https://github.com/matplotlib/matplotlib.git#tag=v${pkgver}?signed)
 sha512sums=(SKIP)
 validpgpkeys=(23CAB59E3332F94D26BEF0378D86E7FAE5EB0C10) # Elliott Sales de 
Andrade 
 


[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)

2021-04-01 Thread Bruno Pagani via arch-commits
Date: Thursday, April 1, 2021 @ 14:41:36
  Author: archange
Revision: 910831

Actually update to 3.4.1

Modified:
  python-matplotlib/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-04-01 14:41:32 UTC (rev 910830)
+++ PKGBUILD2021-04-01 14:41:36 UTC (rev 910831)
@@ -7,7 +7,7 @@
 
 pkgname=python-matplotlib
 pkgver=3.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";
@@ -36,9 +36,9 @@
 checkdepends=(python-pytest python-pytest-xdist python-pytest-runner 
xorg-server-xvfb
   texlive-core texlive-latexextra ghostscript inkscape mencoder
   ffmpeg imagemagick python-pandas)
-_tag=7c5e0d6acb797fb5d5202737d8b38fdc87b5a857 # git rev-parse v${pkgver}
+_tag=918149749ca2977d9ca43acda8eed4be811e81b4 # git rev-parse v${pkgver}
 source=(git+https://github.com/matplotlib/matplotlib.git#tag=${_tag}?signed)
-sha512sums=('SKIP')
+sha512sums=(SKIP)
 validpgpkeys=(23CAB59E3332F94D26BEF0378D86E7FAE5EB0C10) # Elliott Sales de 
Andrade 
 
 prepare() {


[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)

2021-03-31 Thread Felix Yan via arch-commits
Date: Wednesday, March 31, 2021 @ 13:47:27
  Author: felixonmars
Revision: 910619

upgpkg: python-matplotlib 3.4.1-1

Modified:
  python-matplotlib/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-31 13:47:05 UTC (rev 910618)
+++ PKGBUILD2021-03-31 13:47:27 UTC (rev 910619)
@@ -6,8 +6,8 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=python-matplotlib
-pkgver=3.4.0
-pkgrel=2
+pkgver=3.4.1
+pkgrel=1
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";
@@ -38,7 +38,7 @@
   ffmpeg imagemagick python-pandas)
 _tag=7c5e0d6acb797fb5d5202737d8b38fdc87b5a857 # git rev-parse v${pkgver}
 source=(git+https://github.com/matplotlib/matplotlib.git#tag=${_tag}?signed)
-sha512sums=(SKIP)
+sha512sums=('SKIP')
 validpgpkeys=(23CAB59E3332F94D26BEF0378D86E7FAE5EB0C10) # Elliott Sales de 
Andrade 
 
 prepare() {


[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)

2021-03-27 Thread Bruno Pagani via arch-commits
Date: Saturday, March 27, 2021 @ 15:02:23
  Author: archange
Revision: 905340

Switch to git signed sources

Modified:
  python-matplotlib/trunk/PKGBUILD

--+
 PKGBUILD |   16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-27 15:00:49 UTC (rev 905339)
+++ PKGBUILD2021-03-27 15:02:23 UTC (rev 905340)
@@ -7,7 +7,7 @@
 
 pkgname=python-matplotlib
 pkgver=3.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";
@@ -36,28 +36,30 @@
 checkdepends=(python-pytest python-pytest-xdist python-pytest-runner 
xorg-server-xvfb
   texlive-core texlive-latexextra ghostscript inkscape mencoder
   ffmpeg imagemagick python-pandas)
-source=("https://github.com/matplotlib/matplotlib/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz";)
-sha512sums=('4c08bfc545cef91386c3197bcf8d0d5c378212a18bc9b8b17212f24ebc8784a712cb5ae6aec86e09f6961c3d3fa53e8145d98f50e4770e7618733dcf40273a14')
+_tag=7c5e0d6acb797fb5d5202737d8b38fdc87b5a857 # git rev-parse v${pkgver}
+source=(git+https://github.com/matplotlib/matplotlib.git#tag=${_tag}?signed)
+sha512sums=(SKIP)
+validpgpkeys=(23CAB59E3332F94D26BEF0378D86E7FAE5EB0C10) # Elliott Sales de 
Andrade 
 
 prepare() {
-  cd matplotlib-${pkgver}
+  cd matplotlib
 # Use system freetype and qhull
   sed -e 's|#system_freetype = False|system_freetype = True|' -e 
's|#system_qhull = False|system_qhull = True|' setup.cfg.template > setup.cfg
 }
 
 build() {
-  cd matplotlib-${pkgver}
+  cd matplotlib
   python setup.py build
 }
 
 check() {
-  cd matplotlib-${pkgver}
+  cd matplotlib
   xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 
1280x1024x24" \
 python setup.py pytest --addopts="-n auto" || echo "Tests failed" # 
Different font rendering details
 }
 
 package_python-matplotlib() {
-  cd matplotlib-${pkgver}
+  cd matplotlib
   python setup.py install --root "${pkgdir}" --prefix=/usr --optimize=1 
--skip-build
   install -Dm644 doc/users/license.rst -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
   # Needed since https://github.com/matplotlib/matplotlib/pull/14170


[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)

2021-03-26 Thread Bruno Pagani via arch-commits
Date: Friday, March 26, 2021 @ 08:28:04
  Author: archange
Revision: 904465

upgpkg: python-matplotlib 3.4.0-1

Modified:
  python-matplotlib/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-03-26 08:20:49 UTC (rev 904464)
+++ PKGBUILD2021-03-26 08:28:04 UTC (rev 904465)
@@ -6,7 +6,7 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=python-matplotlib
-pkgver=3.3.4
+pkgver=3.4.0
 pkgrel=1
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
@@ -14,6 +14,7 @@
 license=(custom)
 depends=(freetype2 python-cycler python-dateutil python-kiwisolver 
python-numpy python-pillow python-pyparsing qhull)
 optdepends=('tk: Tk{Agg,Cairo} backends'
+'pyside2: alternative for Qt5{Agg,Cairo} backends'
 'python-pyqt5: Qt5{Agg,Cairo} backends'
 'python-gobject: for GTK3{Agg,Cairo} backend'
 'python-wxpython: WX{,Agg,Cairo} backend'
@@ -32,11 +33,11 @@
  python-certifi python-tornado
  ghostscript texlive-bin)
  # agg missing some non-upstreamed patches?
-checkdepends=(python-pytest-xdist python-pytest-runner xorg-server-xvfb
-  texlive-core texlive-latexextra inkscape mencoder
+checkdepends=(python-pytest python-pytest-xdist python-pytest-runner 
xorg-server-xvfb
+  texlive-core texlive-latexextra ghostscript inkscape mencoder
   ffmpeg imagemagick python-pandas)
 
source=("https://github.com/matplotlib/matplotlib/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz";)
-sha512sums=('e29bcd17ea2b65c26c75421a319d3f21c5b0148c9e61d55d719c191c07342ed19032f97cde269647bd545ed45b5e142483e50caf29ffd421acde5b0b3bfa238b')
+sha512sums=('4c08bfc545cef91386c3197bcf8d0d5c378212a18bc9b8b17212f24ebc8784a712cb5ae6aec86e09f6961c3d3fa53e8145d98f50e4770e7618733dcf40273a14')
 
 prepare() {
   cd matplotlib-${pkgver}


[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)

2021-01-28 Thread Bruno Pagani via arch-commits
Date: Thursday, January 28, 2021 @ 15:08:15
  Author: archange
Revision: 833303

upgpkg: python-matplotlib 3.3.4-1

Modified:
  python-matplotlib/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-28 15:03:45 UTC (rev 833302)
+++ PKGBUILD2021-01-28 15:08:15 UTC (rev 833303)
@@ -6,8 +6,8 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=python-matplotlib
-pkgver=3.3.3
-pkgrel=2
+pkgver=3.3.4
+pkgrel=1
 pkgdesc="A python plotting library, making publication quality plots"
 arch=(x86_64)
 url="https://matplotlib.org";
@@ -28,7 +28,8 @@
 'python-certifi: https support')
 makedepends=(git rsync python-setuptools
  tk python-pyqt5 python-gobject
- python-wxpython python-cairocffi python-tornado
+ python-wxpython python-cairocffi
+ python-certifi python-tornado
  ghostscript texlive-bin)
  # agg missing some non-upstreamed patches?
 checkdepends=(python-pytest-xdist python-pytest-runner xorg-server-xvfb
@@ -35,7 +36,7 @@
   texlive-core texlive-latexextra inkscape mencoder
   ffmpeg imagemagick python-pandas)
 
source=("https://github.com/matplotlib/matplotlib/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz";)
-sha512sums=('11477e9afe15b8c1e7eea3c889187d9ab704c727578c3a1c5dcfbc6bbabf89d964f03bc17e739ee76df4758931e33bd587b533f14d7a553c9ff7a5743960')
+sha512sums=('e29bcd17ea2b65c26c75421a319d3f21c5b0148c9e61d55d719c191c07342ed19032f97cde269647bd545ed45b5e142483e50caf29ffd421acde5b0b3bfa238b')
 
 prepare() {
   cd matplotlib-${pkgver}