Changeset 16708
- Timestamp:
- 11/11/13 21:47:06 (11 years ago)
- Location:
- issm/trunk-jpl/externalpackages
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/nose/install-linux64-python3.sh
r16707 r16708 2 2 #Install Python nose module 3 3 4 rm -rf src 4 rm -rf src install 5 5 6 6 svn checkout http://python-nose.googlecode.com/svn/branches/py3k -
issm/trunk-jpl/externalpackages/nose/install-macosx64-python2.sh
r16707 r16708 2 2 #Install Python nose module 3 3 4 rm -rf src 4 rm -rf src install 5 5 6 6 #Download from ISSM server -
issm/trunk-jpl/externalpackages/nose/install-macosx64-python3.sh
r16707 r16708 2 2 #Install Python nose module 3 3 4 rm -rf src 4 rm -rf src install 5 5 6 6 svn checkout http://python-nose.googlecode.com/svn/branches/py3k -
issm/trunk-jpl/externalpackages/numpy/install-linux64.sh
r13570 r16708 1 1 #!/bin/bash 2 2 set -eu 3 4 rm -rf install 3 5 4 6 export CC="gcc -fPIC" … … 25 27 python -c "import numpy; print 'Installed NumPy', numpy.__version__" 26 28 python -c "import numpy; numpy.test()" 29 30 #to be flagged by jenkins, we create an empty install dir: 31 mkdir install 32 touch install/emptyfile 33 -
issm/trunk-jpl/externalpackages/numpy/install-macosx-lion.sh
r13693 r16708 1 1 #!/bin/bash 2 2 set -eu 3 4 rm -rf install 3 5 4 6 export CC=gcc … … 23 25 python -c "import numpy; print 'Installed NumPy', numpy.__version__" 24 26 python -c "import numpy; numpy.test()" 27 28 #to be flagged by jenkins, we create an empty install dir: 29 mkdir install 30 touch install/emptyfile 31 -
issm/trunk-jpl/externalpackages/numpy/install-macosx-mlion.sh
r13820 r16708 1 1 #!/bin/bash 2 2 set -eu 3 4 rm -rf install 3 5 4 6 export CC=gcc … … 23 25 python -c "import numpy; print 'Installed NumPy', numpy.__version__" 24 26 python -c "import numpy; numpy.test()" 27 28 #to be flagged by jenkins, we create an empty install dir: 29 mkdir install 30 touch install/emptyfile 31 -
issm/trunk-jpl/externalpackages/numpy/install-macosx-snowleopard.sh
r13371 r16708 1 1 #!/bin/bash 2 2 set -eu 3 4 rm -rf install 3 5 4 6 # On OSX 10.6, gfortran gets installed in /usr/local/gfortran … … 16 18 python -c "import numpy; print 'Installed NumPy', numpy.__version__" 17 19 python -c "import numpy; numpy.test()" 20 21 #to be flagged by jenkins, we create an empty install dir: 22 mkdir install 23 touch install/emptyfile 24
Note:
See TracChangeset
for help on using the changeset viewer.