diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-30 19:06:49 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-30 19:06:49 -0400 |
commit | 9377b7a9d941050e9843fbd02e087e2b45f28ad6 (patch) | |
tree | 26c9f1750930a8a58563cc66ce55cb519c5749c7 /decorator | |
parent | 21d169fa527d5b3849055cdd01f590a1c1820920 (diff) | |
download | astroconda-contrib-9377b7a9d941050e9843fbd02e087e2b45f28ad6.tar.gz |
Redo completely broken decorator recipe
Diffstat (limited to 'decorator')
-rw-r--r-- | decorator/bld.bat | 3 | ||||
-rw-r--r-- | decorator/build.sh | 2 | ||||
-rw-r--r-- | decorator/meta.yaml | 24 |
3 files changed, 29 insertions, 0 deletions
diff --git a/decorator/bld.bat b/decorator/bld.bat new file mode 100644 index 0000000..b290566 --- /dev/null +++ b/decorator/bld.bat @@ -0,0 +1,3 @@ + +python setup.py install +if errorlevel 1 exit 1
\ No newline at end of file diff --git a/decorator/build.sh b/decorator/build.sh new file mode 100644 index 0000000..4b71885 --- /dev/null +++ b/decorator/build.sh @@ -0,0 +1,2 @@ + +python setup.py install || exit 1
\ No newline at end of file diff --git a/decorator/meta.yaml b/decorator/meta.yaml new file mode 100644 index 0000000..c5082d5 --- /dev/null +++ b/decorator/meta.yaml @@ -0,0 +1,24 @@ +{% set name = 'decorator' %} +{% set version = '4.0.9' %} +{% set number = '0' %} + +about: + home: https://github.com/micheles/decorator + license: BSD + summary: Better living through Python with decorators +build: + number: {{ number }} +package: + name: {{ name }} + version: {{ version }} +requirements: + build: + - setuptools + - python x.x + run: + - python x.x +source: + fn: {{ name }}-{{ version }}.tar.gz + md5: f12c5651ccd707e12a0abaa4f76cd69a + url: + - https://pypi.python.org/packages/source/d/decorator/{{ name }}-{{ version }}.tar.gz |