summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdoardo Pasca <edo.paskino@gmail.com>2018-04-04 14:35:44 +0100
committerGitHub <noreply@github.com>2018-04-04 14:35:44 +0100
commit816f803197e324f37dd713ce40a87dc8df2ca20d (patch)
tree4f5c938131f9db85a7390a6f0ac30f143feea8d5
parentdfef329e5dd8580fcc874929a06f2f540cc6590f (diff)
downloadframework-816f803197e324f37dd713ce40a87dc8df2ca20d.tar.gz
framework-816f803197e324f37dd713ce40a87dc8df2ca20d.tar.bz2
framework-816f803197e324f37dd713ce40a87dc8df2ca20d.tar.xz
framework-816f803197e324f37dd713ce40a87dc8df2ca20d.zip
removed unused recipe (#89)
-rw-r--r--recipes/python/bld.bat11
-rw-r--r--recipes/python/build.sh9
-rw-r--r--recipes/python/meta.yaml26
3 files changed, 0 insertions, 46 deletions
diff --git a/recipes/python/bld.bat b/recipes/python/bld.bat
deleted file mode 100644
index 80abb05..0000000
--- a/recipes/python/bld.bat
+++ /dev/null
@@ -1,11 +0,0 @@
-IF NOT DEFINED CIL_VERSION (
-ECHO CIL_VERSION Not Defined.
-exit 1
-)
-
-mkdir "%SRC_DIR%\ccpi"
-ROBOCOPY /E "%RECIPE_DIR%\..\Wrappers\Python" "%SRC_DIR%\ccpi"
-cd ccpi\Wrappers\python
-
-%PYTHON% setup.py install
-if errorlevel 1 exit 1
diff --git a/recipes/python/build.sh b/recipes/python/build.sh
deleted file mode 100644
index 0c6ad30..0000000
--- a/recipes/python/build.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-if [ -z "$CIL_VERSION" ]; then
- echo "Need to set CIL_VERSION"
- exit 1
-fi
-mkdir ${SRC_DIR}/ccpi
-cp -r "${RECIPE_DIR}/../../../" ${SRC_DIR}/ccpi
-
-cd ${SRC_DIR}/ccpi/Wrappers/python
-$PYTHON setup.py install
diff --git a/recipes/python/meta.yaml b/recipes/python/meta.yaml
deleted file mode 100644
index fc5f09d..0000000
--- a/recipes/python/meta.yaml
+++ /dev/null
@@ -1,26 +0,0 @@
-package:
- name: ccpi-common
- version: {{ environ['CIL_VERSION'] }}
-
-
-build:
- preserve_egg_dir: False
- script_env:
- - CIL_VERSION
-# number: 0
-
-requirements:
- build:
- - python
- - numpy
- - setuptools
-
- run:
- - python
- - numpy
- - scipy
-
-about:
- home: http://www.ccpi.ac.uk
- license: BSD license
- summary: 'CCPi Toolbox'