From 84a45219da8f1ea488c06acddebb5c119b3cc354 Mon Sep 17 00:00:00 2001 From: Nick Vandewiele Date: Wed, 9 Sep 2015 14:59:12 -0400 Subject: [PATCH] add build.sh, bld.bat, meta.yaml for scoop 0.7 --- scoop/bld.bat | 8 ++++++++ scoop/build.sh | 9 +++++++++ scoop/meta.yaml | 36 ++++++++++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 scoop/bld.bat create mode 100644 scoop/build.sh create mode 100644 scoop/meta.yaml diff --git a/scoop/bld.bat b/scoop/bld.bat new file mode 100644 index 0000000..87b1481 --- /dev/null +++ b/scoop/bld.bat @@ -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. diff --git a/scoop/build.sh b/scoop/build.sh new file mode 100644 index 0000000..4d7fc03 --- /dev/null +++ b/scoop/build.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +$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. diff --git a/scoop/meta.yaml b/scoop/meta.yaml new file mode 100644 index 0000000..80cdc3d --- /dev/null +++ b/scoop/meta.yaml @@ -0,0 +1,36 @@ +package: + name: scoop + version: "0.7" + +source: + git_url: https://github.com/soravux/scoop.git + +requirements: + build: + - greenlet + - pyzmq + - python + - setuptools + + run: + - greenlet + - pyzmq + - python + +test: + imports: + - scoop + + commands: + - cd $SRC_DIR/test ; python -m scoop tests_parser.py + - cd $SRC_DIR/test ; python -m scoop tests_stat.py + - cd $SRC_DIR/test ; python -m scoop tests_stopwatch.py + +about: + home: https://github.com/soravux/scoop.git + license: GNU LESSER GENERAL PUBLIC LICENSE + summary: 'Scalable COncurrent Operations in Python' + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml