Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Florian Franzmann (fd40bfbec76c9c6843b27f2290a4fc8cf85638b9)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Florian Franzmann <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (fd40bfbec76c9c6843b27f2290a4fc8cf85638b9)
  • Date: Tue, 28 Dec 2010 09:21:16 -0600

GIT changes to master grimoire by Florian Franzmann
<siflfran AT hawo.stw.uni-erlangen.de>:

python-pypi/numpy/BUILD | 5 +++++
python-pypi/numpy/DEPENDS | 3 ++-
python-pypi/numpy/HISTORY | 4 ++++
python-pypi/numpy/PRE_SUB_DEPENDS | 5 +++++
python-pypi/numpy/SUB_DEPENDS | 5 +++++
5 files changed, 21 insertions(+), 1 deletion(-)

New commits:
commit cdc34c306f1b74764bbae4b3df09140fed050953
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

python-pypi/numpy: made the dependency on atlas optional

diff --git a/python-pypi/numpy/BUILD b/python-pypi/numpy/BUILD
new file mode 100755
index 0000000..efd518c
--- /dev/null
+++ b/python-pypi/numpy/BUILD
@@ -0,0 +1,5 @@
+if is_depends_enabled numpy atlas; then
+ default_build || return 1
+else
+ ATLAS=None PTATLAS=None BLAS=None LAPACK=None MKL=None default_build ||
return 1
+fi
diff --git a/python-pypi/numpy/DEPENDS b/python-pypi/numpy/DEPENDS
index 972c272..dbcf7d1 100755
--- a/python-pypi/numpy/DEPENDS
+++ b/python-pypi/numpy/DEPENDS
@@ -1,2 +1,3 @@
depends python &&
-depends atlas
+optional_depends atlas \
+ "" "" "use the atlas numerics library"
diff --git a/python-pypi/numpy/HISTORY b/python-pypi/numpy/HISTORY
index 978a054..77004fe 100644
--- a/python-pypi/numpy/HISTORY
+++ b/python-pypi/numpy/HISTORY
@@ -1,3 +1,7 @@
+2010-12-28 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DEPENDS, BUILD, SUB_DEPENDS, PRE_SUB_DEPENDS: made the
+ dependency on atlas optional
+
2010-12-27 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DEPENDS: added missing dependency on atlas

diff --git a/python-pypi/numpy/PRE_SUB_DEPENDS
b/python-pypi/numpy/PRE_SUB_DEPENDS
new file mode 100755
index 0000000..9d3e71c
--- /dev/null
+++ b/python-pypi/numpy/PRE_SUB_DEPENDS
@@ -0,0 +1,5 @@
+case $THIS_SUB_DEPENDS in
+ ATLAS) is_depends_enabled $SPELL atlas;;
+ *) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL
$THIS_SUB_DEPENDS${DEFAULT_COLOR}"
+ return 1;;
+esac
diff --git a/python-pypi/numpy/SUB_DEPENDS b/python-pypi/numpy/SUB_DEPENDS
new file mode 100755
index 0000000..df0d3bd
--- /dev/null
+++ b/python-pypi/numpy/SUB_DEPENDS
@@ -0,0 +1,5 @@
+case $THIS_SUB_DEPENDS in
+ ATLAS) depends atlas;;
+ *) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL
$THIS_SUB_DEPENDS${DEFAULT_COLOR}"
+ return 1;;
+esac



  • [SM-Commit] GIT changes to master grimoire by Florian Franzmann (fd40bfbec76c9c6843b27f2290a4fc8cf85638b9), Florian Franzmann, 12/28/2010

Archive powered by MHonArc 2.6.24.

Top of Page