summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Bachmann2018-02-08 17:33:56 +0100
committerTobias Bachmann2018-02-08 17:33:56 +0100
commitcb773124c40ee377d69ca46ccc9f6a01950a43d4 (patch)
treefa1ebc65cccbddef212015e9bbb7873eac6caef7
parent3cfdae92ca2cffcc486b180145008041fe21d43d (diff)
downloadaur-cb773124c40ee377d69ca46ccc9f6a01950a43d4.tar.gz
Fixed Pillow>=5.0 support
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 1897aa46c9f5..635838ab0d06 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = fsleyes
pkgdesc = FSLeyes is the FSL image viewer
pkgver = 0.21.1
- pkgrel = 1
+ pkgrel = 2
url = https://fsl.fmrib.ox.ac.uk/fsl/fslwiki/FSLeyes
arch = any
license = Apache
diff --git a/PKGBUILD b/PKGBUILD
index a05fe5fdcd62..1c3378d13db7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Tobias Bachmann <tobachmann@gmx.de>
pkgname=fsleyes
pkgver=0.21.1
-pkgrel=1
+pkgrel=2
pkgdesc="FSLeyes is the FSL image viewer"
arch=('any')
url="https://fsl.fmrib.ox.ac.uk/fsl/fslwiki/FSLeyes"
@@ -21,8 +21,8 @@ sha256sums=('0759c5c1a46260eb6f78fc22484088307a7b5f0692c092d8b2d59e57cad7c3f5'
package() {
cd "$srcdir/$pkgname-$pkgver-"*
- # "Patching" for scipy 1.0 support
- sed -i 's/scipy==0\.\*/scipy/g' requirements.txt
+ # "Patching" for Pillow>=5.0 support
+ sed -i 's/Pillow>=3\.2\.0,<5\.0/Pillow>=3\.2\.0/g' requirements.txt
python setup.py install --root="$pkgdir/" --optimize=1