Skip to content
Snippets Groups Projects
Commit 07cc2f4b authored by Nick Bearson's avatar Nick Bearson
Browse files

adds everything we need for grb

parent 430de3a8
No related branches found
No related tags found
No related merge requests found
......@@ -2,3 +2,4 @@
*.pkg filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
......@@ -943,6 +943,12 @@ export BZIP2VER=1.0.6
export ARCHIVEVER=3.3.2
export DB48VER=4.8.30
# GRB bits
export CONTEXTLIB2VER=0.5.5
export BEAUTIFULSOUP4VER=4.6.0
export CONCURRENTLOGHANDLERVER=0.9.1
export GLYMURVER=0.8.15
# used by pygrib builder
export GRIBAPI_DIR=$BASE
export JASPER_DIR=$BASE
......@@ -6557,6 +6563,30 @@ mk_pandas() {
_setup_build_install pandas src/optional/pandas-${PANDASVER}.tar.* pandas-${PANDASVER}
}
mk_contextlib2() {
resume_tracker && return 0
pip install src/optional/contextlib2-${CONTEXTLIB2VER}-py2.py3-none-any.whl
}
mk_beautifulsoup4() {
resume_tracker && return 0
pip install src/optional/beautifulsoup4-${BEAUTIFULSOUP4VER}-py2-none-any.whl
}
mk_concurrentloghandler() {
resume_tracker && return 0
_setup_build_install concurrentloghandler src/optional/ConcurrentLogHandler-${CONCURRENTLOGHANDLERVER}.tar.gz ConcurrentLogHandler-${CONCURRENTLOGHANDLERVER}
}
mk_glymur() {
resume_tracker && return 0
_setup_build_install glymur src/optional/glymur-${GLYMURVER}.tar.* glymur-${GLYMURVER}
}
mk_pyopencl() {
resume_tracker && return 0
......@@ -8352,6 +8382,25 @@ mk_core() {
echo core >>trim
}
mk_grb() {
# used by CSPP Geo GRB, includes batch graphics support for quicklooks. Builds Python3
resume_tracker && return 0
TRIM_PYTHON_VERSION=3
echo "MAKEFLAGS: ${MAKEFLAGS}"
echo "PYTHON_VERSION: ${PYTHON_VERSION}"
mk_core \
&& mk_graphics \
&& mk_hdf4 && mk_pyhdf \
&& mk_netcdf4 && mk_pycdf && mk_netcdf4py \
&& mk_astropy \
&& mk_pyyaml \
&& mk_contextlib2 \
&& mk_beautifulsoup4 \
&& mk_concurrentloghandler \
&& mk_glymur \
echo grb >>trim
}
# new 20151111
mk_astro() {
# astro trim
......
File added
File added
File added
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment