-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
386 additions
and
58 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
opt | ||
recipes/50_chemreac/chemreac/chemreac-0.6.0.git/ |
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
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,5 @@ | ||
#!/bin/bash -x | ||
echo "show_channel_urls: true" >>~/.condarc | ||
cd $(dirname $0) | ||
./_build_all.sh $@ | ||
|
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,3 @@ | ||
#!/bin/bash | ||
conda install -c chemreac chemreac pytest | ||
py.test --pyargs chemreac |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ requirements: | |
- lapack | ||
|
||
run: | ||
# - libgcc | ||
- libgcc | ||
- lapack | ||
|
||
about: | ||
|
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ requirements: | |
- lapack | ||
|
||
run: | ||
# - libgcc | ||
- libgcc | ||
- lapack | ||
|
||
test: | ||
|
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
import io | ||
import os | ||
from block_diag_ilu import get_include | ||
assert os.listdir(get_include())[0] == 'block_diag_ilu.hpp' | ||
path = os.path.join(get_include(), 'block_diag_ilu.hpp') | ||
assert open(path, 'rt').readline().startswith('#pragma once') | ||
assert io.open(path, 'rt', encoding='utf-8').readline().startswith('#pragma once') |
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,3 @@ | ||
#!/bin/bash | ||
CPLUS_INCLUDE_PATH=${PREFIX}/include ${PYTHON} setup.py build | ||
${PYTHON} setup.py install |
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,31 @@ | ||
package: | ||
name: pygslodeiv2 | ||
version: 0.5.2 | ||
|
||
source: | ||
fn: pygslodeiv2-0.5.2.tar.gz | ||
url: https://pypi.python.org/packages/source/p/pygslodeiv2/pygslodeiv2-0.5.2.tar.gz#md5=6a141b1993396372063c54262c5a3a73 | ||
md5: 6a141b1993396372063c54262c5a3a73 | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- python | ||
- numpy | ||
- gsl | ||
run: | ||
- numpy | ||
- python | ||
- gsl | ||
|
||
test: | ||
imports: | ||
- pygslodeiv2 | ||
requires: | ||
- pytest | ||
|
||
about: | ||
home: https://github.com/bjodah/pygslodeiv2 | ||
license: GNU GPL v3 |
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,2 @@ | ||
import pytest | ||
pytest.main(['--pyargs', 'pygslodeiv2']) |
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,5 @@ | ||
#!/bin/bash | ||
export CPLUS_INCLUDE_PATH=$PREFIX/include:$CPLUS_INCLUDE_PATH | ||
|
||
${PYTHON} setup.py build | ||
${PYTHON} setup.py install |
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,32 @@ | ||
package: | ||
name: pyodeint | ||
version: 0.6.1 | ||
|
||
source: | ||
fn: pyodeint-0.6.1.tar.gz | ||
url: https://pypi.python.org/packages/source/p/pyodeint/pyodeint-0.6.1.tar.gz#md5=0e6f000ea7b434de01f8bf502bb8f684 | ||
md5: 0e6f000ea7b434de01f8bf502bb8f684 | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- python | ||
- numpy | ||
- boost ==1.57.0 | ||
run: | ||
- numpy | ||
- python | ||
|
||
test: | ||
imports: | ||
- pyodeint | ||
requires: | ||
- pytest | ||
commands: | ||
- python -m pytest --pyargs pyodeint | ||
|
||
about: | ||
home: https://github.com/bjodah/pyodeint | ||
license: Simplified BSD license |
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,2 @@ | ||
import pytest | ||
pytest.main(['--pyargs', 'pyodeint']) |
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,9 @@ | ||
xcopy /e "%RECIPE_DIR%\.." "%SRC_DIR%" | ||
"%PYTHON%" setup.py install | ||
if errorlevel 1 exit 1 | ||
|
||
:: Add more build steps here, if they are necessary. | ||
|
||
:: See | ||
:: http://docs.continuum.io/conda/build.html | ||
:: for a list of environment variables that are set during the build process. |
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 @@ | ||
#!/bin/bash | ||
|
||
cp -r $RECIPE_DIR/.. $SRC_DIR | ||
$PYTHON setup.py install | ||
|
||
# Add more build steps here, if they are necessary. | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html | ||
# for a list of environment variables that are set during the build process. |
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,39 @@ | ||
package: | ||
name: pycompilation | ||
version: "0.4.2" | ||
|
||
source: | ||
fn: pycompilation-0.4.2.tar.gz | ||
url: https://pypi.python.org/packages/source/p/pycompilation/pycompilation-0.4.2.tar.gz#md5=aa3a6466687111302ec415de815e2c44 | ||
md5: aa3a6466687111302ec415de815e2c44 | ||
|
||
# build: | ||
#preserve_egg_dir: True | ||
#entry_points: | ||
# Put any entry points (scripts to be generated automatically) here. The | ||
# syntax is module:function. For example | ||
# | ||
# - pycompilation = pycompilation:main | ||
# | ||
# Would create an entry point called pycompilation that calls pycompilation.main() | ||
|
||
|
||
# If this is a new build for the same version, increment the build | ||
# number. If you do not include this key, it defaults to 0. | ||
# number: 1 | ||
|
||
requirements: | ||
build: | ||
- python | ||
|
||
run: | ||
- python | ||
|
||
about: | ||
home: https://github.com/bjodah/pycompilation | ||
license: BSD License | ||
summary: 'Package for compilation (meta programming).' | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html for | ||
# more information about meta.yaml |
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,3 @@ | ||
#!/bin/bash | ||
${PYTHON} setup.py build | ||
${PYTHON} setup.py install |
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,34 @@ | ||
package: | ||
name: pyodesys | ||
version: 0.5.1 | ||
|
||
source: | ||
fn: pyodesys-0.5.1.tar.gz | ||
url: https://pypi.python.org/packages/source/p/pyodesys/pyodesys-0.5.1.tar.gz#md5=00c30f5e507c3b514055ee86087152dc | ||
md5: 00c30f5e507c3b514055ee86087152dc | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- python | ||
run: | ||
- python | ||
- numpy | ||
- sympy | ||
- scipy | ||
|
||
test: | ||
imports: | ||
- pyodesys | ||
requires: | ||
- pytest | ||
- scipy | ||
- pyodeint | ||
- pygslodeiv2 | ||
- pycvodes | ||
|
||
about: | ||
home: https://github.com/bjodah/pyodesys | ||
license: BSD |
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,2 @@ | ||
import pytest | ||
pytest.main(['--pyargs', 'pyodesys']) |
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,8 @@ | ||
"%PYTHON%" setup.py install | ||
if errorlevel 1 exit 1 | ||
|
||
:: Add more build steps here, if they are necessary. | ||
|
||
:: See | ||
:: http://docs.continuum.io/conda/build.html | ||
:: for a list of environment variables that are set during the build process. |
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,11 @@ | ||
#!/bin/bash | ||
|
||
export LIBRARY_PATH="$PREFIX/lib" | ||
export INCLUDE_PATH="$PREFIX/include" | ||
$PYTHON setup.py install | ||
|
||
# Add more build steps here, if they are necessary. | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html | ||
# for a list of environment variables that are set during the build process. |
Oops, something went wrong.