aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2015-12-21 11:38:05 +0100
committerJustin Lecher <jlec@gentoo.org>2015-12-21 11:38:05 +0100
commit82ab93d397b18e284a7c52ae4457dc22d137ec3e (patch)
tree83c2b99bb61f6eeb46e42309169e0e5a239295bd /sci-libs/iml/files
parentapp-admin/eselect: Update patch to latest changes (diff)
downloadsci-82ab93d397b18e284a7c52ae4457dc22d137ec3e.tar.gz
sci-82ab93d397b18e284a7c52ae4457dc22d137ec3e.tar.bz2
sci-82ab93d397b18e284a7c52ae4457dc22d137ec3e.zip
sci-libs/iml: Version Bump, drop old
Package-Manager: portage-2.2.26 Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'sci-libs/iml/files')
-rw-r--r--sci-libs/iml/files/iml-1.0.3-fix-undefined-symbol.patch11
-rw-r--r--sci-libs/iml/files/iml-1.0.3-repl_removal.patch27
-rw-r--r--sci-libs/iml/files/iml-1.0.3-use-any-cblas-implementation.patch14
3 files changed, 0 insertions, 52 deletions
diff --git a/sci-libs/iml/files/iml-1.0.3-fix-undefined-symbol.patch b/sci-libs/iml/files/iml-1.0.3-fix-undefined-symbol.patch
deleted file mode 100644
index 53b14250b..000000000
--- a/sci-libs/iml/files/iml-1.0.3-fix-undefined-symbol.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/nullspace.c.orig 2009-11-23 15:01:49.200283384 +0000
-+++ src/nullspace.c 2009-11-23 15:03:00.862295995 +0000
-@@ -253,7 +253,7 @@
- for (i = 0; i < m; i++) {
- for (j = 0; j < m; j++)
- mpz_init_set_ui(mp_N[i * m + j], 0);
-- mpz_init_ui(mp_N[i * m + i], 1);
-+ mpz_set_ui(mp_N[i * m + i], 1);
- }
- *mp_N_pass = mp_N;
- } else { /* r>0 and s>0 */
diff --git a/sci-libs/iml/files/iml-1.0.3-repl_removal.patch b/sci-libs/iml/files/iml-1.0.3-repl_removal.patch
deleted file mode 100644
index 0be719b87..000000000
--- a/sci-libs/iml/files/iml-1.0.3-repl_removal.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- configure.ac.orig 2011-01-13 22:39:44.640530988 +1300
-+++ configure.ac 2011-01-13 22:40:15.462530988 +1300
-@@ -63,7 +63,6 @@
- AC_OUTPUT([
- Makefile
- config/Makefile
-- repl/Makefile
- src/Makefile
- doc/Makefile
- examples/Makefile
---- Makefile.am.orig 2011-01-13 22:40:32.171530988 +1300
-+++ Makefile.am 2011-01-13 22:41:39.874530988 +1300
-@@ -1,3 +1,3 @@
- EXTRA_DIST = bootstrap
-
--SUBDIRS = repl config src doc tests examples
-+SUBDIRS = config src doc tests examples
---- src/Makefile.am.orig 2011-01-13 22:41:53.012530988 +1300
-+++ src/Makefile.am 2011-01-13 22:42:12.585530988 +1300
-@@ -30,6 +30,5 @@
- nullspace.c
-
- libiml_la_CFLAGS = $(AM_CFLAGS)
--libiml_la_LIBADD = $(EXTERNLIB) \
-- $(top_builddir)/repl/librepl.la
-+libiml_la_LIBADD = $(EXTERNLIB)
- libiml_la_LDFLAGS = -version-info 1:0:1
diff --git a/sci-libs/iml/files/iml-1.0.3-use-any-cblas-implementation.patch b/sci-libs/iml/files/iml-1.0.3-use-any-cblas-implementation.patch
deleted file mode 100644
index c1dd09c88..000000000
--- a/sci-libs/iml/files/iml-1.0.3-use-any-cblas-implementation.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- configure.ac.orig 2008-06-15 23:51:30.000000000 +0000
-+++ configure.ac 2010-08-07 08:38:44.689081000 +0000
-@@ -55,10 +55,7 @@
- respectively when running configure.
- )])
-
--IML_CHECK_ATLAS(,,[AC_MSG_ERROR(
--ATLAS not found!
--ATLAS version 3.0 or greater is required for this library to compile. Please make sure ATLAS is installed and specify the header and libraries location with the options --with-atlas-include=<path> and --with-atlas-lib=<path> respectively when running configure.
--)])
-+PKG_CHECK_MODULES([ATLAS], [cblas])
-
- AC_SUBST(LDFLAGS)
- AC_SUBST(ac_aux_dir)