├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── Dockerfile ├── README.md ├── appveyor.yml ├── circle.yml ├── environment.yml ├── index.ipynb ├── notebooks ├── test_iris.ipynb ├── test_iris_advanced_cartopy.ipynb └── test_owslib_cartopy.ipynb ├── recipes ├── autoconf │ ├── build.sh │ └── meta.yaml ├── automake │ ├── build.sh │ └── meta.yaml ├── biggus │ └── meta.yaml ├── bison │ ├── build.sh │ └── meta.yaml ├── cartopy │ ├── bld.bat │ ├── build.sh │ ├── cartopy.win.patch │ ├── meta.yaml │ └── run_test.py ├── cf_units │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── check │ ├── build.sh │ └── meta.yaml ├── conda-build-all │ └── meta.yaml ├── descartes │ └── meta.yaml ├── ecmwf_grib │ ├── build.sh │ └── meta.yaml ├── expat │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── fiona │ ├── bld.bat │ ├── build.sh │ ├── gdal_version.patch │ ├── meta.yaml │ ├── run_test.py │ └── test_data │ │ ├── test.cpg │ │ ├── test.dbf │ │ ├── test.shp │ │ └── test.shx ├── flex │ ├── 0001-bison-test-fixes-Do-not-use-obsolete-bison-construct.patch │ ├── Makefile.am.patch │ ├── build.sh │ └── meta.yaml ├── folium │ └── meta.yaml ├── freexl │ ├── bld.bat │ ├── build.sh │ ├── freexl.c.patch │ ├── makefile.vc.patch │ ├── meta.yaml │ ├── nmake.opt.patch │ └── run_test.py ├── gdal │ ├── bld.bat │ ├── build.sh │ ├── clang.patch │ ├── disable_jpeg12.patch │ ├── extra_tests.py │ ├── install_scripts.patch │ ├── meta.yaml │ ├── prepend-dll.patch │ ├── run_test.bat │ ├── run_test.py │ ├── run_test.sh │ ├── scripts │ │ ├── activate.bat │ │ ├── activate.sh │ │ ├── deactivate.bat │ │ └── deactivate.sh │ ├── test_data │ │ ├── cropped.cub │ │ ├── grid.asc │ │ ├── grid.hdr │ │ ├── sites.dbf │ │ ├── sites.sbn │ │ ├── sites.sbx │ │ ├── sites.shp │ │ ├── sites.shx │ │ └── stere.zip │ └── windowshdf5.patch ├── geojson │ └── meta.yaml ├── geopandas │ ├── meta.yaml │ ├── run_test.py │ └── test_data │ │ ├── test.cpg │ │ ├── test.dbf │ │ ├── test.shp │ │ └── test.shx ├── geopy │ └── meta.yaml ├── geos │ ├── bld.bat │ ├── bufferopp.patch │ ├── build.sh │ ├── cmake.win.patch │ ├── lineintersector.patch │ ├── meta.yaml │ ├── offsetcurvebuilder.patch │ ├── offsetcurvesetbuilder.patch │ └── wktwriter.patch ├── giflib │ ├── build.sh │ └── meta.yaml ├── gitdb │ └── meta.yaml ├── gitpython │ └── meta.yaml ├── hdf4 │ ├── bld.bat │ ├── build.sh │ ├── max_files.patch │ └── meta.yaml ├── hdf5 │ ├── README.md │ ├── TEST_FILES_LICENSE.md │ ├── bld.bat │ ├── build.sh │ ├── compound_fortran2003.f90 │ ├── h5_cmprss.c │ ├── h5_cmprss.f90 │ ├── h5tutr_cmprss.cpp │ ├── meta.yaml │ ├── run_test.sh │ └── test_Makefile.in.patch ├── iris-grib │ └── meta.yaml ├── iris-sample-data │ └── meta.yaml ├── iris │ ├── bld.bat │ ├── build.sh │ ├── meta.yaml │ └── no_compile_setup.patch ├── jasper │ ├── build.sh │ └── meta.yaml ├── jpeg │ ├── CMakeLists.txt.patch │ ├── bld.bat │ ├── build.sh │ ├── licence.txt │ ├── meta.yaml │ └── testorig.jpg ├── json-c │ ├── build.sh │ └── meta.yaml ├── kealib │ ├── bld.bat │ ├── build.sh │ ├── meta.yaml │ └── run_test.py ├── libdap4 │ ├── build.sh │ └── meta.yaml ├── libgfortran │ └── meta.yaml ├── libiconv │ ├── CMakeLists.txt.patch │ ├── bld.bat │ ├── build.sh │ ├── config.h.patch │ ├── configure.cmake.patch │ ├── glibc.patch │ └── meta.yaml ├── libmo_unpack │ ├── build.sh │ └── meta.yaml ├── libnetcdf │ ├── bld.bat │ ├── build.sh │ ├── dfile.c.patch │ ├── dim.c.patch │ ├── meta.yaml │ ├── run_test.sh │ └── semantics.c.patch ├── libpng │ ├── bld.bat │ ├── build.sh │ ├── libpng-LICENSE.txt │ └── meta.yaml ├── libspatialindex │ ├── bld.bat │ ├── build.sh │ ├── cmakelists.patch │ ├── meta.yaml │ └── tool.h.patch ├── libspatialite │ ├── bld.bat │ ├── build.sh │ ├── config-msvc.patch │ ├── gg_extras.patch │ ├── makefile.vc.patch │ ├── meta.yaml │ ├── run_test.py │ └── skip_failing_test.patch ├── libtiff │ ├── bld.bat │ ├── build.sh │ ├── def_snprintf.patch │ └── meta.yaml ├── libxml2 │ ├── bld.bat │ ├── build.sh │ ├── meta.yaml │ ├── pre-c99.patch │ └── test.xml ├── libxslt │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── lxml │ └── meta.yaml ├── m4 │ ├── build.sh │ └── meta.yaml ├── mo_pack │ ├── build.sh │ └── meta.yaml ├── mplleaflet │ └── meta.yaml ├── msinttypes │ ├── bld.bat │ ├── meta.yaml │ └── run_test.py ├── nc_time_axis │ └── meta.yaml ├── netcdf4 │ ├── COPYING │ ├── bld.bat │ ├── build.sh │ ├── meta.yaml │ └── run_test.py ├── obvious-ci │ └── meta.yaml ├── openjpeg │ ├── bld.bat │ ├── build.sh │ ├── meta.yaml │ └── p0_01.j2k ├── owslib │ └── meta.yaml ├── proj4 │ ├── bld.bat │ ├── build.sh │ └── meta.yaml ├── pyepsg │ └── meta.yaml ├── pyke │ └── meta.yaml ├── pysal │ └── meta.yaml ├── pyshp │ └── meta.yaml ├── python-ecmwf_grib │ ├── build.sh │ ├── gribapi_py3k.patch │ ├── meta.yaml │ └── right_python.patch ├── rasterio │ ├── bld.bat │ ├── build.sh │ ├── meta.yaml │ └── run_test.py ├── rtree │ ├── bld.bat │ ├── find_libray-win32.patch │ ├── find_libray.patch │ ├── meta.yaml │ ├── run_test.py │ └── setup-win.path ├── shapely │ ├── bld.bat │ ├── build.sh │ ├── geos_c.patch │ ├── meta.yaml │ └── run_test.py ├── smmap │ └── meta.yaml ├── sqlite │ ├── bld.bat │ ├── build.sh │ ├── expose_symbols.patch │ └── meta.yaml ├── texinfo │ ├── build.sh │ └── meta.yaml ├── udunits2 │ ├── bld.bat │ ├── build.sh │ ├── meta.yaml │ ├── patchbinary.py │ ├── post-link.sh │ └── unistd.h ├── xerces-c │ ├── bld.bat │ ├── build.sh │ ├── meta.yaml │ └── run_test.py └── zlib │ ├── bld.bat │ ├── build.sh │ ├── license.txt │ └── meta.yaml └── scripts └── run_docker_build.sh /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/appveyor.yml -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/circle.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/environment.yml -------------------------------------------------------------------------------- /index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/index.ipynb -------------------------------------------------------------------------------- /notebooks/test_iris.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/notebooks/test_iris.ipynb -------------------------------------------------------------------------------- /notebooks/test_iris_advanced_cartopy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/notebooks/test_iris_advanced_cartopy.ipynb -------------------------------------------------------------------------------- /notebooks/test_owslib_cartopy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/notebooks/test_owslib_cartopy.ipynb -------------------------------------------------------------------------------- /recipes/autoconf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/autoconf/build.sh -------------------------------------------------------------------------------- /recipes/autoconf/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/autoconf/meta.yaml -------------------------------------------------------------------------------- /recipes/automake/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/automake/build.sh -------------------------------------------------------------------------------- /recipes/automake/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/automake/meta.yaml -------------------------------------------------------------------------------- /recipes/biggus/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/biggus/meta.yaml -------------------------------------------------------------------------------- /recipes/bison/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/bison/build.sh -------------------------------------------------------------------------------- /recipes/bison/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/bison/meta.yaml -------------------------------------------------------------------------------- /recipes/cartopy/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/cartopy/bld.bat -------------------------------------------------------------------------------- /recipes/cartopy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/cartopy/build.sh -------------------------------------------------------------------------------- /recipes/cartopy/cartopy.win.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/cartopy/cartopy.win.patch -------------------------------------------------------------------------------- /recipes/cartopy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/cartopy/meta.yaml -------------------------------------------------------------------------------- /recipes/cartopy/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/cartopy/run_test.py -------------------------------------------------------------------------------- /recipes/cf_units/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/cf_units/bld.bat -------------------------------------------------------------------------------- /recipes/cf_units/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/cf_units/build.sh -------------------------------------------------------------------------------- /recipes/cf_units/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/cf_units/meta.yaml -------------------------------------------------------------------------------- /recipes/check/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/check/build.sh -------------------------------------------------------------------------------- /recipes/check/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/check/meta.yaml -------------------------------------------------------------------------------- /recipes/conda-build-all/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/conda-build-all/meta.yaml -------------------------------------------------------------------------------- /recipes/descartes/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/descartes/meta.yaml -------------------------------------------------------------------------------- /recipes/ecmwf_grib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/ecmwf_grib/build.sh -------------------------------------------------------------------------------- /recipes/ecmwf_grib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/ecmwf_grib/meta.yaml -------------------------------------------------------------------------------- /recipes/expat/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/expat/bld.bat -------------------------------------------------------------------------------- /recipes/expat/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/expat/build.sh -------------------------------------------------------------------------------- /recipes/expat/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/expat/meta.yaml -------------------------------------------------------------------------------- /recipes/fiona/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/fiona/bld.bat -------------------------------------------------------------------------------- /recipes/fiona/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/fiona/build.sh -------------------------------------------------------------------------------- /recipes/fiona/gdal_version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/fiona/gdal_version.patch -------------------------------------------------------------------------------- /recipes/fiona/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/fiona/meta.yaml -------------------------------------------------------------------------------- /recipes/fiona/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/fiona/run_test.py -------------------------------------------------------------------------------- /recipes/fiona/test_data/test.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /recipes/fiona/test_data/test.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/fiona/test_data/test.dbf -------------------------------------------------------------------------------- /recipes/fiona/test_data/test.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/fiona/test_data/test.shp -------------------------------------------------------------------------------- /recipes/fiona/test_data/test.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/fiona/test_data/test.shx -------------------------------------------------------------------------------- /recipes/flex/0001-bison-test-fixes-Do-not-use-obsolete-bison-construct.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/flex/0001-bison-test-fixes-Do-not-use-obsolete-bison-construct.patch -------------------------------------------------------------------------------- /recipes/flex/Makefile.am.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/flex/Makefile.am.patch -------------------------------------------------------------------------------- /recipes/flex/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/flex/build.sh -------------------------------------------------------------------------------- /recipes/flex/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/flex/meta.yaml -------------------------------------------------------------------------------- /recipes/folium/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/folium/meta.yaml -------------------------------------------------------------------------------- /recipes/freexl/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/freexl/bld.bat -------------------------------------------------------------------------------- /recipes/freexl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/freexl/build.sh -------------------------------------------------------------------------------- /recipes/freexl/freexl.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/freexl/freexl.c.patch -------------------------------------------------------------------------------- /recipes/freexl/makefile.vc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/freexl/makefile.vc.patch -------------------------------------------------------------------------------- /recipes/freexl/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/freexl/meta.yaml -------------------------------------------------------------------------------- /recipes/freexl/nmake.opt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/freexl/nmake.opt.patch -------------------------------------------------------------------------------- /recipes/freexl/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/freexl/run_test.py -------------------------------------------------------------------------------- /recipes/gdal/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/bld.bat -------------------------------------------------------------------------------- /recipes/gdal/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/build.sh -------------------------------------------------------------------------------- /recipes/gdal/clang.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/clang.patch -------------------------------------------------------------------------------- /recipes/gdal/disable_jpeg12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/disable_jpeg12.patch -------------------------------------------------------------------------------- /recipes/gdal/extra_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/extra_tests.py -------------------------------------------------------------------------------- /recipes/gdal/install_scripts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/install_scripts.patch -------------------------------------------------------------------------------- /recipes/gdal/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/meta.yaml -------------------------------------------------------------------------------- /recipes/gdal/prepend-dll.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/prepend-dll.patch -------------------------------------------------------------------------------- /recipes/gdal/run_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/run_test.bat -------------------------------------------------------------------------------- /recipes/gdal/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/run_test.py -------------------------------------------------------------------------------- /recipes/gdal/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/run_test.sh -------------------------------------------------------------------------------- /recipes/gdal/scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/scripts/activate.bat -------------------------------------------------------------------------------- /recipes/gdal/scripts/activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/scripts/activate.sh -------------------------------------------------------------------------------- /recipes/gdal/scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/scripts/deactivate.bat -------------------------------------------------------------------------------- /recipes/gdal/scripts/deactivate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/scripts/deactivate.sh -------------------------------------------------------------------------------- /recipes/gdal/test_data/cropped.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/test_data/cropped.cub -------------------------------------------------------------------------------- /recipes/gdal/test_data/grid.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/test_data/grid.asc -------------------------------------------------------------------------------- /recipes/gdal/test_data/grid.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/test_data/grid.hdr -------------------------------------------------------------------------------- /recipes/gdal/test_data/sites.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/test_data/sites.dbf -------------------------------------------------------------------------------- /recipes/gdal/test_data/sites.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/test_data/sites.sbn -------------------------------------------------------------------------------- /recipes/gdal/test_data/sites.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/test_data/sites.sbx -------------------------------------------------------------------------------- /recipes/gdal/test_data/sites.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/test_data/sites.shp -------------------------------------------------------------------------------- /recipes/gdal/test_data/sites.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/test_data/sites.shx -------------------------------------------------------------------------------- /recipes/gdal/test_data/stere.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/test_data/stere.zip -------------------------------------------------------------------------------- /recipes/gdal/windowshdf5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gdal/windowshdf5.patch -------------------------------------------------------------------------------- /recipes/geojson/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geojson/meta.yaml -------------------------------------------------------------------------------- /recipes/geopandas/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geopandas/meta.yaml -------------------------------------------------------------------------------- /recipes/geopandas/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geopandas/run_test.py -------------------------------------------------------------------------------- /recipes/geopandas/test_data/test.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /recipes/geopandas/test_data/test.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geopandas/test_data/test.dbf -------------------------------------------------------------------------------- /recipes/geopandas/test_data/test.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geopandas/test_data/test.shp -------------------------------------------------------------------------------- /recipes/geopandas/test_data/test.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geopandas/test_data/test.shx -------------------------------------------------------------------------------- /recipes/geopy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geopy/meta.yaml -------------------------------------------------------------------------------- /recipes/geos/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geos/bld.bat -------------------------------------------------------------------------------- /recipes/geos/bufferopp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geos/bufferopp.patch -------------------------------------------------------------------------------- /recipes/geos/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geos/build.sh -------------------------------------------------------------------------------- /recipes/geos/cmake.win.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geos/cmake.win.patch -------------------------------------------------------------------------------- /recipes/geos/lineintersector.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geos/lineintersector.patch -------------------------------------------------------------------------------- /recipes/geos/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geos/meta.yaml -------------------------------------------------------------------------------- /recipes/geos/offsetcurvebuilder.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geos/offsetcurvebuilder.patch -------------------------------------------------------------------------------- /recipes/geos/offsetcurvesetbuilder.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geos/offsetcurvesetbuilder.patch -------------------------------------------------------------------------------- /recipes/geos/wktwriter.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/geos/wktwriter.patch -------------------------------------------------------------------------------- /recipes/giflib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/giflib/build.sh -------------------------------------------------------------------------------- /recipes/giflib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/giflib/meta.yaml -------------------------------------------------------------------------------- /recipes/gitdb/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gitdb/meta.yaml -------------------------------------------------------------------------------- /recipes/gitpython/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/gitpython/meta.yaml -------------------------------------------------------------------------------- /recipes/hdf4/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf4/bld.bat -------------------------------------------------------------------------------- /recipes/hdf4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf4/build.sh -------------------------------------------------------------------------------- /recipes/hdf4/max_files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf4/max_files.patch -------------------------------------------------------------------------------- /recipes/hdf4/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf4/meta.yaml -------------------------------------------------------------------------------- /recipes/hdf5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf5/README.md -------------------------------------------------------------------------------- /recipes/hdf5/TEST_FILES_LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf5/TEST_FILES_LICENSE.md -------------------------------------------------------------------------------- /recipes/hdf5/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf5/bld.bat -------------------------------------------------------------------------------- /recipes/hdf5/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf5/build.sh -------------------------------------------------------------------------------- /recipes/hdf5/compound_fortran2003.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf5/compound_fortran2003.f90 -------------------------------------------------------------------------------- /recipes/hdf5/h5_cmprss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf5/h5_cmprss.c -------------------------------------------------------------------------------- /recipes/hdf5/h5_cmprss.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf5/h5_cmprss.f90 -------------------------------------------------------------------------------- /recipes/hdf5/h5tutr_cmprss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf5/h5tutr_cmprss.cpp -------------------------------------------------------------------------------- /recipes/hdf5/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf5/meta.yaml -------------------------------------------------------------------------------- /recipes/hdf5/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf5/run_test.sh -------------------------------------------------------------------------------- /recipes/hdf5/test_Makefile.in.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/hdf5/test_Makefile.in.patch -------------------------------------------------------------------------------- /recipes/iris-grib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/iris-grib/meta.yaml -------------------------------------------------------------------------------- /recipes/iris-sample-data/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/iris-sample-data/meta.yaml -------------------------------------------------------------------------------- /recipes/iris/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/iris/bld.bat -------------------------------------------------------------------------------- /recipes/iris/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/iris/build.sh -------------------------------------------------------------------------------- /recipes/iris/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/iris/meta.yaml -------------------------------------------------------------------------------- /recipes/iris/no_compile_setup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/iris/no_compile_setup.patch -------------------------------------------------------------------------------- /recipes/jasper/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/jasper/build.sh -------------------------------------------------------------------------------- /recipes/jasper/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/jasper/meta.yaml -------------------------------------------------------------------------------- /recipes/jpeg/CMakeLists.txt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/jpeg/CMakeLists.txt.patch -------------------------------------------------------------------------------- /recipes/jpeg/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/jpeg/bld.bat -------------------------------------------------------------------------------- /recipes/jpeg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/jpeg/build.sh -------------------------------------------------------------------------------- /recipes/jpeg/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/jpeg/licence.txt -------------------------------------------------------------------------------- /recipes/jpeg/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/jpeg/meta.yaml -------------------------------------------------------------------------------- /recipes/jpeg/testorig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/jpeg/testorig.jpg -------------------------------------------------------------------------------- /recipes/json-c/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/json-c/build.sh -------------------------------------------------------------------------------- /recipes/json-c/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/json-c/meta.yaml -------------------------------------------------------------------------------- /recipes/kealib/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/kealib/bld.bat -------------------------------------------------------------------------------- /recipes/kealib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/kealib/build.sh -------------------------------------------------------------------------------- /recipes/kealib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/kealib/meta.yaml -------------------------------------------------------------------------------- /recipes/kealib/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/kealib/run_test.py -------------------------------------------------------------------------------- /recipes/libdap4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libdap4/build.sh -------------------------------------------------------------------------------- /recipes/libdap4/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libdap4/meta.yaml -------------------------------------------------------------------------------- /recipes/libgfortran/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libgfortran/meta.yaml -------------------------------------------------------------------------------- /recipes/libiconv/CMakeLists.txt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libiconv/CMakeLists.txt.patch -------------------------------------------------------------------------------- /recipes/libiconv/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libiconv/bld.bat -------------------------------------------------------------------------------- /recipes/libiconv/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libiconv/build.sh -------------------------------------------------------------------------------- /recipes/libiconv/config.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libiconv/config.h.patch -------------------------------------------------------------------------------- /recipes/libiconv/configure.cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libiconv/configure.cmake.patch -------------------------------------------------------------------------------- /recipes/libiconv/glibc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libiconv/glibc.patch -------------------------------------------------------------------------------- /recipes/libiconv/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libiconv/meta.yaml -------------------------------------------------------------------------------- /recipes/libmo_unpack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libmo_unpack/build.sh -------------------------------------------------------------------------------- /recipes/libmo_unpack/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libmo_unpack/meta.yaml -------------------------------------------------------------------------------- /recipes/libnetcdf/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libnetcdf/bld.bat -------------------------------------------------------------------------------- /recipes/libnetcdf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libnetcdf/build.sh -------------------------------------------------------------------------------- /recipes/libnetcdf/dfile.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libnetcdf/dfile.c.patch -------------------------------------------------------------------------------- /recipes/libnetcdf/dim.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libnetcdf/dim.c.patch -------------------------------------------------------------------------------- /recipes/libnetcdf/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libnetcdf/meta.yaml -------------------------------------------------------------------------------- /recipes/libnetcdf/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libnetcdf/run_test.sh -------------------------------------------------------------------------------- /recipes/libnetcdf/semantics.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libnetcdf/semantics.c.patch -------------------------------------------------------------------------------- /recipes/libpng/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libpng/bld.bat -------------------------------------------------------------------------------- /recipes/libpng/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libpng/build.sh -------------------------------------------------------------------------------- /recipes/libpng/libpng-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libpng/libpng-LICENSE.txt -------------------------------------------------------------------------------- /recipes/libpng/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libpng/meta.yaml -------------------------------------------------------------------------------- /recipes/libspatialindex/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libspatialindex/bld.bat -------------------------------------------------------------------------------- /recipes/libspatialindex/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libspatialindex/build.sh -------------------------------------------------------------------------------- /recipes/libspatialindex/cmakelists.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libspatialindex/cmakelists.patch -------------------------------------------------------------------------------- /recipes/libspatialindex/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libspatialindex/meta.yaml -------------------------------------------------------------------------------- /recipes/libspatialindex/tool.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libspatialindex/tool.h.patch -------------------------------------------------------------------------------- /recipes/libspatialite/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libspatialite/bld.bat -------------------------------------------------------------------------------- /recipes/libspatialite/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libspatialite/build.sh -------------------------------------------------------------------------------- /recipes/libspatialite/config-msvc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libspatialite/config-msvc.patch -------------------------------------------------------------------------------- /recipes/libspatialite/gg_extras.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libspatialite/gg_extras.patch -------------------------------------------------------------------------------- /recipes/libspatialite/makefile.vc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libspatialite/makefile.vc.patch -------------------------------------------------------------------------------- /recipes/libspatialite/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libspatialite/meta.yaml -------------------------------------------------------------------------------- /recipes/libspatialite/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libspatialite/run_test.py -------------------------------------------------------------------------------- /recipes/libspatialite/skip_failing_test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libspatialite/skip_failing_test.patch -------------------------------------------------------------------------------- /recipes/libtiff/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libtiff/bld.bat -------------------------------------------------------------------------------- /recipes/libtiff/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libtiff/build.sh -------------------------------------------------------------------------------- /recipes/libtiff/def_snprintf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libtiff/def_snprintf.patch -------------------------------------------------------------------------------- /recipes/libtiff/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libtiff/meta.yaml -------------------------------------------------------------------------------- /recipes/libxml2/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libxml2/bld.bat -------------------------------------------------------------------------------- /recipes/libxml2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libxml2/build.sh -------------------------------------------------------------------------------- /recipes/libxml2/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libxml2/meta.yaml -------------------------------------------------------------------------------- /recipes/libxml2/pre-c99.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libxml2/pre-c99.patch -------------------------------------------------------------------------------- /recipes/libxml2/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libxml2/test.xml -------------------------------------------------------------------------------- /recipes/libxslt/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libxslt/bld.bat -------------------------------------------------------------------------------- /recipes/libxslt/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libxslt/build.sh -------------------------------------------------------------------------------- /recipes/libxslt/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/libxslt/meta.yaml -------------------------------------------------------------------------------- /recipes/lxml/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/lxml/meta.yaml -------------------------------------------------------------------------------- /recipes/m4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/m4/build.sh -------------------------------------------------------------------------------- /recipes/m4/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/m4/meta.yaml -------------------------------------------------------------------------------- /recipes/mo_pack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/mo_pack/build.sh -------------------------------------------------------------------------------- /recipes/mo_pack/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/mo_pack/meta.yaml -------------------------------------------------------------------------------- /recipes/mplleaflet/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/mplleaflet/meta.yaml -------------------------------------------------------------------------------- /recipes/msinttypes/bld.bat: -------------------------------------------------------------------------------- 1 | mkdir %PREFIX%\include 2 | copy *.h %LIBRARY_INC%\ 3 | 4 | -------------------------------------------------------------------------------- /recipes/msinttypes/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/msinttypes/meta.yaml -------------------------------------------------------------------------------- /recipes/msinttypes/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/msinttypes/run_test.py -------------------------------------------------------------------------------- /recipes/nc_time_axis/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/nc_time_axis/meta.yaml -------------------------------------------------------------------------------- /recipes/netcdf4/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/netcdf4/COPYING -------------------------------------------------------------------------------- /recipes/netcdf4/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/netcdf4/bld.bat -------------------------------------------------------------------------------- /recipes/netcdf4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/netcdf4/build.sh -------------------------------------------------------------------------------- /recipes/netcdf4/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/netcdf4/meta.yaml -------------------------------------------------------------------------------- /recipes/netcdf4/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/netcdf4/run_test.py -------------------------------------------------------------------------------- /recipes/obvious-ci/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/obvious-ci/meta.yaml -------------------------------------------------------------------------------- /recipes/openjpeg/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/openjpeg/bld.bat -------------------------------------------------------------------------------- /recipes/openjpeg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/openjpeg/build.sh -------------------------------------------------------------------------------- /recipes/openjpeg/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/openjpeg/meta.yaml -------------------------------------------------------------------------------- /recipes/openjpeg/p0_01.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/openjpeg/p0_01.j2k -------------------------------------------------------------------------------- /recipes/owslib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/owslib/meta.yaml -------------------------------------------------------------------------------- /recipes/proj4/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/proj4/bld.bat -------------------------------------------------------------------------------- /recipes/proj4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/proj4/build.sh -------------------------------------------------------------------------------- /recipes/proj4/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/proj4/meta.yaml -------------------------------------------------------------------------------- /recipes/pyepsg/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/pyepsg/meta.yaml -------------------------------------------------------------------------------- /recipes/pyke/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/pyke/meta.yaml -------------------------------------------------------------------------------- /recipes/pysal/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/pysal/meta.yaml -------------------------------------------------------------------------------- /recipes/pyshp/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/pyshp/meta.yaml -------------------------------------------------------------------------------- /recipes/python-ecmwf_grib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/python-ecmwf_grib/build.sh -------------------------------------------------------------------------------- /recipes/python-ecmwf_grib/gribapi_py3k.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/python-ecmwf_grib/gribapi_py3k.patch -------------------------------------------------------------------------------- /recipes/python-ecmwf_grib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/python-ecmwf_grib/meta.yaml -------------------------------------------------------------------------------- /recipes/python-ecmwf_grib/right_python.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/python-ecmwf_grib/right_python.patch -------------------------------------------------------------------------------- /recipes/rasterio/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/rasterio/bld.bat -------------------------------------------------------------------------------- /recipes/rasterio/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/rasterio/build.sh -------------------------------------------------------------------------------- /recipes/rasterio/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/rasterio/meta.yaml -------------------------------------------------------------------------------- /recipes/rasterio/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/rasterio/run_test.py -------------------------------------------------------------------------------- /recipes/rtree/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/rtree/bld.bat -------------------------------------------------------------------------------- /recipes/rtree/find_libray-win32.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/rtree/find_libray-win32.patch -------------------------------------------------------------------------------- /recipes/rtree/find_libray.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/rtree/find_libray.patch -------------------------------------------------------------------------------- /recipes/rtree/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/rtree/meta.yaml -------------------------------------------------------------------------------- /recipes/rtree/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/rtree/run_test.py -------------------------------------------------------------------------------- /recipes/rtree/setup-win.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/rtree/setup-win.path -------------------------------------------------------------------------------- /recipes/shapely/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/shapely/bld.bat -------------------------------------------------------------------------------- /recipes/shapely/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/shapely/build.sh -------------------------------------------------------------------------------- /recipes/shapely/geos_c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/shapely/geos_c.patch -------------------------------------------------------------------------------- /recipes/shapely/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/shapely/meta.yaml -------------------------------------------------------------------------------- /recipes/shapely/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/shapely/run_test.py -------------------------------------------------------------------------------- /recipes/smmap/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/smmap/meta.yaml -------------------------------------------------------------------------------- /recipes/sqlite/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/sqlite/bld.bat -------------------------------------------------------------------------------- /recipes/sqlite/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/sqlite/build.sh -------------------------------------------------------------------------------- /recipes/sqlite/expose_symbols.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/sqlite/expose_symbols.patch -------------------------------------------------------------------------------- /recipes/sqlite/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/sqlite/meta.yaml -------------------------------------------------------------------------------- /recipes/texinfo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/texinfo/build.sh -------------------------------------------------------------------------------- /recipes/texinfo/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/texinfo/meta.yaml -------------------------------------------------------------------------------- /recipes/udunits2/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/udunits2/bld.bat -------------------------------------------------------------------------------- /recipes/udunits2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/udunits2/build.sh -------------------------------------------------------------------------------- /recipes/udunits2/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/udunits2/meta.yaml -------------------------------------------------------------------------------- /recipes/udunits2/patchbinary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/udunits2/patchbinary.py -------------------------------------------------------------------------------- /recipes/udunits2/post-link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/udunits2/post-link.sh -------------------------------------------------------------------------------- /recipes/udunits2/unistd.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/xerces-c/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/xerces-c/bld.bat -------------------------------------------------------------------------------- /recipes/xerces-c/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/xerces-c/build.sh -------------------------------------------------------------------------------- /recipes/xerces-c/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/xerces-c/meta.yaml -------------------------------------------------------------------------------- /recipes/xerces-c/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/xerces-c/run_test.py -------------------------------------------------------------------------------- /recipes/zlib/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/zlib/bld.bat -------------------------------------------------------------------------------- /recipes/zlib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/zlib/build.sh -------------------------------------------------------------------------------- /recipes/zlib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/zlib/license.txt -------------------------------------------------------------------------------- /recipes/zlib/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/recipes/zlib/meta.yaml -------------------------------------------------------------------------------- /scripts/run_docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ioos/conda-recipes/HEAD/scripts/run_docker_build.sh --------------------------------------------------------------------------------