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 /python-daemon/meta.yaml | |
parent | 4b8dfd8d91499caf0df1182fd010c946f4a01773 (diff) | |
download | astroconda-dev-2ff7bbe733c9837a13a0762bb8a48e04de9e296d.tar.gz |
Incorporate jinja2 usage
Diffstat (limited to 'python-daemon/meta.yaml')
-rw-r--r-- | python-daemon/meta.yaml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/python-daemon/meta.yaml b/python-daemon/meta.yaml index a508a74..9bb7e61 100644 --- a/python-daemon/meta.yaml +++ b/python-daemon/meta.yaml @@ -1,12 +1,16 @@ +{% set name = 'python-daemon' %} +{% set version = '2.0.5' %} +{% set number = '0' %} + about: home: http://bitbucket.org/jhunkeler/python-daemon license: Apache-2 summary: Library to implement a well-behaved Unix daemon process. build: - number: '0' + number: {{ number }} package: - name: python-daemon - version: 2.0.5 + name: {{ name }} + version: {{ version }} requirements: build: - docutils @@ -16,7 +20,7 @@ requirements: - lockfile - python x.x source: - fn: python-daemon-2.0.5.tar.gz + fn: {{ name }}-{{ version }}.tar.gz md5: 73e7f49f525c51fa4a995aea4d80de41 url: - - https://pypi.python.org/packages/source/p/python-daemon/python-daemon-2.0.5.tar.gz + - https://pypi.python.org/packages/source/p/python-daemon/{{ name }}-{{ version }}.tar.gz |