summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTiago de Paula Peixoto2018-10-16 20:27:30 +0200
committerTiago de Paula Peixoto2018-10-16 20:27:30 +0200
commit7466bc7d0bd6a69e784e3ebe6fb739b7a66a8bc6 (patch)
tree2d72794e082e9903f403c54f4180041e041bef3a
parentf591adb12640c163408c731119fdeb8f0a61ed64 (diff)
downloadaur-7466bc7d0bd6a69e784e3ebe6fb739b7a66a8bc6.tar.gz
Fix compilation with newer CGAL
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD7
2 files changed, 8 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 8e948ad7f610..f3ec5dca8286 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,5 +1,5 @@
# Generated by mksrcinfo v8
-# Thu Jun 28 15:23:16 UTC 2018
+# Tue Oct 16 18:27:18 UTC 2018
pkgbase = python2-graph-tool
pkgdesc = A Python module for manipulation and statistical analysis of graphs
pkgver = 2.27
@@ -21,7 +21,9 @@ pkgbase = python2-graph-tool
optdepends = python2-matplotlib: graph drawing
options = !libtool
source = http://downloads.skewed.de/graph-tool/graph-tool-2.27.tar.bz2
+ source = https://git.skewed.de/count0/graph-tool/commit/aa39e4a6b42d43fac30c841d176c75aff92cc01a.diff
sha256sums = 4740c69720dfbebf8fb3e77057b3e6a257ccf0432cdaf7345f873247390e4313
+ sha256sums = 5a4ea386342c2de9422da5b07dd4272d47d2cdbba99d9b258bff65a69da562c1
pkgname = python2-graph-tool
diff --git a/PKGBUILD b/PKGBUILD
index db9dee05fb30..a2ec2f8a1a2e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,11 +14,14 @@ makedepends=(sparsehash)
optdepends=('graphviz: graph layout'
'python2-matplotlib: graph drawing')
options=(!libtool)
-source=("http://downloads.skewed.de/graph-tool/graph-tool-$pkgver.tar.bz2")
-sha256sums=('4740c69720dfbebf8fb3e77057b3e6a257ccf0432cdaf7345f873247390e4313')
+source=("http://downloads.skewed.de/graph-tool/graph-tool-$pkgver.tar.bz2"
+ "https://git.skewed.de/count0/graph-tool/commit/aa39e4a6b42d43fac30c841d176c75aff92cc01a.diff")
+sha256sums=('4740c69720dfbebf8fb3e77057b3e6a257ccf0432cdaf7345f873247390e4313'
+ '5a4ea386342c2de9422da5b07dd4272d47d2cdbba99d9b258bff65a69da562c1')
prepare() {
cd "$srcdir/graph-tool-$pkgver"
+ patch -Np1 -i "${srcdir}/aa39e4a6b42d43fac30c841d176c75aff92cc01a.diff"
./configure --enable-openmp --prefix=/usr --docdir="/usr/share/doc/$pkgname" PYTHON=python2
}