diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-09-12 20:10:03 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-09-13 09:49:07 +0200 |
commit | d21374997e4386a8d185c704304cfae0e95957be (patch) | |
tree | 1a36eff1bcdc7e63ad9f198638dbb38eb3a65dbf /dev-python/pyamg | |
parent | dev-python/wcsaxes: remove unused patches (diff) | |
download | gentoo-d21374997e4386a8d185c704304cfae0e95957be.tar.gz gentoo-d21374997e4386a8d185c704304cfae0e95957be.tar.bz2 gentoo-d21374997e4386a8d185c704304cfae0e95957be.zip |
dev-python/pyamg: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/2313
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/pyamg')
-rw-r--r-- | dev-python/pyamg/files/2.0.0-stencil.patch | 11 | ||||
-rw-r--r-- | dev-python/pyamg/files/pyamg-2.0.4-gcc-4.7.patch | 16 |
2 files changed, 0 insertions, 27 deletions
diff --git a/dev-python/pyamg/files/2.0.0-stencil.patch b/dev-python/pyamg/files/2.0.0-stencil.patch deleted file mode 100644 index f000b93709ac..000000000000 --- a/dev-python/pyamg/files/2.0.0-stencil.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- pyamg/gallery/stencil.py.orig 2011-08-06 20:26:36.000000000 +0100 -+++ pyamg/gallery/stencil.py 2011-08-06 20:27:12.000000000 +0100 -@@ -85,7 +85,7 @@ - - # compute index offset of each dof within the stencil - strides = numpy.cumprod( [1] + list(reversed(grid)) )[:-1] -- indices = S.nonzero() -+ indices = tuple(i.copy() for i in S.nonzero()) - for i,s in zip(indices,S.shape): - i -= s // 2 - for stride,coords in zip(strides, reversed(indices)): diff --git a/dev-python/pyamg/files/pyamg-2.0.4-gcc-4.7.patch b/dev-python/pyamg/files/pyamg-2.0.4-gcc-4.7.patch deleted file mode 100644 index 0ed5402b7e48..000000000000 --- a/dev-python/pyamg/files/pyamg-2.0.4-gcc-4.7.patch +++ /dev/null @@ -1,16 +0,0 @@ - pyamg/amg_core/ruge_stuben.h | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) - -diff --git a/pyamg/amg_core/ruge_stuben.h b/pyamg/amg_core/ruge_stuben.h -index 51cec80..d0ff9a9 100644 ---- a/pyamg/amg_core/ruge_stuben.h -+++ b/pyamg/amg_core/ruge_stuben.h -@@ -7,6 +7,8 @@ - #include <cassert> - #include <limits> - #include <algorithm> -+#include "graph.h" -+#include "linalg.h" - - /* - * Compute a strength of connection matrix using the classical strength |