diff options
| author | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-02 19:25:09 -0400 | 
|---|---|---|
| committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-19 11:17:27 -0400 | 
| commit | 2ff7bbe733c9837a13a0762bb8a48e04de9e296d (patch) | |
| tree | 1b8be48d6c3b71fd7c0d679d3301ab10d20e6d47 /ginga/meta.yaml | |
| parent | 4b8dfd8d91499caf0df1182fd010c946f4a01773 (diff) | |
| download | astroconda-dev-2ff7bbe733c9837a13a0762bb8a48e04de9e296d.tar.gz | |
Incorporate jinja2 usage
Diffstat (limited to 'ginga/meta.yaml')
| -rw-r--r-- | ginga/meta.yaml | 14 | 
1 files changed, 9 insertions, 5 deletions
diff --git a/ginga/meta.yaml b/ginga/meta.yaml index 7a74291..4ab10fe 100644 --- a/ginga/meta.yaml +++ b/ginga/meta.yaml @@ -1,12 +1,16 @@ +{% set name = 'ginga' %} +{% set version = '2.5.20151215011852' %} +{% set number = '0' %} +  about:      home: https://github.com/ejeschke/ginga      license: BSD      summary: ginga  build: -    number: '0' +    number: {{ number }}  package: -    name: ginga -    version: 2.5.20151215011852 +    name: {{ name }} +    version: {{ version }}  requirements:      build:      - numpy x.x @@ -16,10 +20,10 @@ requirements:      - numpy x.x      - python x.x  source: -    fn: ginga-2.5.20151215011852.tar.gz +    fn: {{ name }}-{{ version }}.tar.gz      md5: 11cd8b9ed459c4438cc827e0a1ca4538      url: -    - https://pypi.python.org/packages/source/g/ginga/ginga-2.5.20151215011852.tar.gz +    - https://pypi.python.org/packages/source/g/ginga/{{ name }}-{{ version }}.tar.gz  test:      imports:      - ginga  | 
