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 /shunit2/meta.yaml | |
parent | 4b8dfd8d91499caf0df1182fd010c946f4a01773 (diff) | |
download | astroconda-dev-2ff7bbe733c9837a13a0762bb8a48e04de9e296d.tar.gz |
Incorporate jinja2 usage
Diffstat (limited to 'shunit2/meta.yaml')
-rw-r--r-- | shunit2/meta.yaml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/shunit2/meta.yaml b/shunit2/meta.yaml index 8688806..46b05cd 100644 --- a/shunit2/meta.yaml +++ b/shunit2/meta.yaml @@ -1,16 +1,20 @@ +{% set name = 'shunit2' %} +{% set version = '2.0.3' %} +{% set number = '0' %} + about: home: http://sourceforge.net/projects/shunit2 license: LGPL summary: shunit2 build: - number: '0' + number: {{ number }} package: - name: shunit2 - version: 2.0.3 + name: {{ name }} + version: {{ version }} source: - fn: shunit2-2.0.3.tgz + fn: {{ name }}-{{ version }}.tgz url: - - https://downloads.sourceforge.net/shunit2/shunit2-2.0.3.tgz + - https://downloads.sourceforge.net/shunit2/{{ name }}-{{ version }}.tgz test: commands: - shunit2 --help |