-
-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libcf #2334
Merged
Merged
libcf #2334
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
d991d9f
build libcf
dnadeau4 3f20dcb
fix skip windows and py3k section
dnadeau4 b11987c
retrigger
dnadeau4 7c7a79d
add gcc
dnadeau4 ff3ea0d
delete space
dnadeau4 578494d
Merge branch 'master' into libcf
dnadeau4 e25a640
Fix Build and pinning libnetcdf [skip appveyor]
dnadeau4 3e23342
add libgfortran
dnadeau4 baca045
reset number to 0 and remove libgfortran
dnadeau4 4883676
cat config.log to see what is going on
dnadeau4 84664dc
Deploy for MAC OSX
6b58dc9
Try more env variables
8279229
try again
7766d46
Change python library Path to rpath
dnadeau4 0e2ff2f
change SP_DIR/libcf
34ec668
change wrong directory libcf to pycf
dnadeau4 9b6b3c8
Add activate/deactivate like in toolchain example
dnadeau4 aedaa32
let toolchain do its own magick in meta.yaml [skip appveyor]
dnadeau4 9851167
add space before #[]
dnadeau4 b48bbdd
change number to 1 and replace libgcc for libgfortran
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
export CFLAGS="-Wall -g -m64 -pipe -O2 -fPIC ${CFLAGS}" | ||
export CXXLAGS="${CFLAGS} ${CXXLAGS}" | ||
export CPPFLAGS="-I${PREFIX}/include ${CPPFLAGS}" | ||
export LDFLAGS="-L${PREFIX}/lib ${LDFLAGS}" | ||
export LFLAGS="-fPIC ${LFLAGS}" | ||
|
||
|
||
./configure --prefix=${PREFIX} | ||
${PYTHON} setup.py install | ||
if [ `uname` == Darwin ]; then install_name_tool -change /System/Library/Frameworks/Python.framework/Versions/2.7/Python @rpath/libpython2.7.dylib ${SP_DIR}/pycf/*.so ; fi | ||
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,58 @@ | ||
{% set name = "libcf" %} | ||
{% set version = "1.0" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
fn: {{ name }}-{{ version }}-beta11.tar.gz | ||
url: http://uvcdat.llnl.gov/cdat/resources/{{ name }}-{{ version }}-beta11.tar.gz | ||
sha256: e40d3826ca2b47538b075f69f716798e255fe396fd3ae68e8b051be57a951bb4 | ||
|
||
build: | ||
number: 0 | ||
skip: True # [win or py3k] | ||
|
||
requirements: | ||
build: | ||
- toochain # [osx] | ||
- python | ||
- hdf5 1.8.17|1.8.17.* | ||
- libnetcdf 4.4.* | ||
- lapack >=3.4.2 | ||
- clapack >=3.2.1 | ||
- curl | ||
- ossuuid | ||
- gcc | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you need There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I need Fortran in this package. |
||
run: | ||
- python | ||
- hdf5 1.8.17|1.8.17.* | ||
- libnetcdf 4.4.* | ||
- lapack >=3.4.2 | ||
- clapack >=3.2.1 | ||
- curl | ||
- ossuuid | ||
- libgfortran | ||
|
||
test: | ||
imports: | ||
- pycf | ||
|
||
about: | ||
home: http://www.unidata.ucar.edu/software/libcf/ | ||
license: 'UCAR/UNIDATA' | ||
license_file: 'COPYRIGHT' | ||
summary: 'LibCF library access data files in accordance with the CF Conventions.' | ||
description: | | ||
By using libcf, a data producer can produce files that conform to the CF | ||
standards, without having to write netCDF code to create and decode all | ||
the attributes that the CF convention uses to store meta-data. A data consumer | ||
can use libcf to read any file which conforms to the CF conventions; the | ||
file does not need to be created with libcf to be read by libcf | ||
dev_url: https://sourceforge.net/projects/libcf/ | ||
|
||
extra: | ||
recipe-maintainers: | ||
- dnadeau4 | ||
- doutriaux1 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this is a Python 2 only package we need a skip statement below.