-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from CDAT/build_with_nompi_libnetcdf
Build with nompi libnetcdf
- Loading branch information
Showing
2 changed files
with
62 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{% set name = "cdtime" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: @VERSION@ | ||
|
||
source: | ||
git_rev: master | ||
git_url: https://www.github.com/CDAT/cdtime.git | ||
|
||
build: | ||
number: @BUILD_NUMBER@ | ||
skip: True # [win] | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('c') }} | ||
- {{ compiler('fortran') }} | ||
host: | ||
- python | ||
- setuptools | ||
- cython | ||
- libcdms | ||
- numpy | ||
- libnetcdf * nompi_* | ||
- cdat_info | ||
- libdrs_f | ||
|
||
run: | ||
- python | ||
- setuptools | ||
- libcdms | ||
- libnetcdf | ||
- cdat_info | ||
- libdrs_f | ||
- {{ pin_compatible('numpy') }} | ||
|
||
test: | ||
imports: | ||
- cdtime | ||
|
||
about: | ||
home: http://gitub.com/CDAT/cdtime | ||
license: BSD-3-Clause | ||
license_file: bsd-3-clause.txt | ||
summary: Climate calendar manipulation tools | ||
description: | | ||
The cdtime module contains functions for converting between | ||
these forms, based on the common calendars used in climate | ||
simulation. Basic arithmetic and comparison operators are also available. | ||
extra: | ||
recipe-maintainers: | ||
- dnadeau4 | ||
- doutriaux1 | ||
- downiec | ||
- muryanto1 | ||
- jasonb5 | ||
- xylar | ||
|