From 7ecaaaeabeebb69ef3f94758347e5173e64486c7 Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Thu, 21 Jan 2016 11:52:21 +0100 Subject: [PATCH] python-matplotlib: set default backend back to agg --- srcpkgs/python-matplotlib/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python-matplotlib/template b/srcpkgs/python-matplotlib/template index 1db35c2c550..34c69c35eb0 100644 --- a/srcpkgs/python-matplotlib/template +++ b/srcpkgs/python-matplotlib/template @@ -1,7 +1,7 @@ # Template file for 'python-matplotlib' pkgname=python-matplotlib version=1.5.1 -revision=1 +revision=2 wrksrc="matplotlib-${version}" build_style=python-module python_versions="2.7 3.4" @@ -28,12 +28,12 @@ checksum=3ab8d968eac602145642d0db63dd8d67c85e9a5444ce0e2ecb2a8fedc7224d40 export XDG_RUNTIME_DIR=/tmp pre_build() { - # set TkAgg as default backend + # set Agg as default backend cat > setup.cfg <<-EOF [packages] tests = False [rc_options] - backend = TkAgg + backend = Agg EOF # remove shebangs find . -type f -name '*.py' -exec sed -i "s,^#!.*python$,," {} +