diff options
author | Justin Ely <ely@stsci.edu> | 2017-01-05 12:48:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-05 12:48:57 -0500 |
commit | 629f1d1d14cabed639dd2908195ef06ed02c34fa (patch) | |
tree | 82487c93fbafab6fc41716b8b727684f59b96da7 /threading2 | |
parent | a96a1285ba6cc7b077ba62e2a73d4592dd78003f (diff) | |
parent | ae39975e0ebd1c31d15c47f396a0ae4521715ab3 (diff) | |
download | astroconda-contrib-629f1d1d14cabed639dd2908195ef06ed02c34fa.tar.gz |
Merge pull request #119 from jhunkeler/overhaul
Overhaul package recipes
Diffstat (limited to 'threading2')
-rw-r--r-- | threading2/meta.yaml | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/threading2/meta.yaml b/threading2/meta.yaml index fc855ea..989d4bb 100644 --- a/threading2/meta.yaml +++ b/threading2/meta.yaml @@ -1,23 +1,31 @@ +{% set name = 'threading2' %} +{% set version = '0.2.1' %} +{% set number = '0' %} + about: - home: https://pypi.python.org/packages/source/t/threading2 + home: https://pypi.python.org/packages/source/t/{{ name }} license: BSD - summary: threading2 + summary: like the standard threading module, but awesomer + build: - number: '0' + number: {{ number }} + package: - name: threading2 - version: 0.2.1 + name: {{ name }} + version: {{ version }} + requirements: build: - setuptools - python x.x run: - python x.x + source: - fn: threading2-0.2.1.tar.gz + fn: {{ name }}-{{ version }}.tar.gz md5: 4ffb227b9a0e1f3e2a42f69f92a47bae - url: - - https://pypi.python.org/packages/source/t/threading2/threading2-0.2.1.tar.gz + url: https://pypi.python.org/packages/source/t/{{ name }}/{{ name }}-{{ version }}.tar.gz + test: imports: - threading2 |