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 | |
parent | 21d169fa527d5b3849055cdd01f590a1c1820920 (diff) | |
download | astroconda-contrib-9377b7a9d941050e9843fbd02e087e2b45f28ad6.tar.gz |
Redo completely broken decorator recipe
-rw-r--r-- | decorator/bld.bat (renamed from decorators/bld.bat) | 0 | ||||
-rw-r--r-- | decorator/build.sh (renamed from decorators/build.sh) | 0 | ||||
-rw-r--r-- | decorator/meta.yaml (renamed from decorators/meta.yaml) | 14 |
3 files changed, 9 insertions, 5 deletions
diff --git a/decorators/bld.bat b/decorator/bld.bat index b290566..b290566 100644 --- a/decorators/bld.bat +++ b/decorator/bld.bat diff --git a/decorators/build.sh b/decorator/build.sh index 4b71885..4b71885 100644 --- a/decorators/build.sh +++ b/decorator/build.sh diff --git a/decorators/meta.yaml b/decorator/meta.yaml index 917aa4b..c5082d5 100644 --- a/decorators/meta.yaml +++ b/decorator/meta.yaml @@ -1,12 +1,16 @@ +{% 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: '0' + number: {{ number }} package: - name: decorators - version: 4.0.9 + name: {{ name }} + version: {{ version }} requirements: build: - setuptools @@ -14,7 +18,7 @@ requirements: run: - python x.x source: - fn: decorators-4.0.9.tar.gz + fn: {{ name }}-{{ version }}.tar.gz md5: f12c5651ccd707e12a0abaa4f76cd69a url: - - https://pypi.python.org/packages/source/d/decorators/decorators-4.0.9.tar.gz + - https://pypi.python.org/packages/source/d/decorator/{{ name }}-{{ version }}.tar.gz |