diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-11-29 20:40:40 -0500 | 
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-12-13 16:04:15 -0500 | 
| commit | 4fe08aedce73669d3225c8bbe8dbecc108d91133 (patch) | |
| tree | 40c7605c472951fa0e3ef7aa910c7b8a4606c45d /linecache2 | |
| parent | d53f69876e2c1cccdd2a5b12da9096dd3bd8aa1c (diff) | |
| download | astroconda-contrib-4fe08aedce73669d3225c8bbe8dbecc108d91133.tar.gz | |
Improve recipe uniformity
Diffstat (limited to 'linecache2')
| -rw-r--r-- | linecache2/meta.yaml | 22 | 
1 files changed, 14 insertions, 8 deletions
| diff --git a/linecache2/meta.yaml b/linecache2/meta.yaml index cd8780b..c3876d6 100644 --- a/linecache2/meta.yaml +++ b/linecache2/meta.yaml @@ -1,12 +1,18 @@ +{% set name = 'linecache2' %} +{% set version = '1.0.0' %} +{% set number = '0' %}  about: -    home: https://pypi.python.org/packages/source/l/linecache2 +    home: https://pypi.python.org/packages/source/l/{{name}}      license: BSD -    summary: linecache2 +    summary: Backports of the linecache module +  build: -    number: '0' +    number: {{number}} +  package: -    name: linecache2 -    version: 1.0.0 +    name: {{name}} +    version: {{version}} +  requirements:      build:      - pbr @@ -15,11 +21,11 @@ requirements:      run:      - pbr      - python x.x +  source: -    fn: linecache2-1.0.0.tar.gz +    fn: {{name}}-{{version}}.tar.gz      md5: 7b25d0289ec36bff1f9e63c4329ce65c -    url: -    - https://pypi.python.org/packages/source/l/linecache2/linecache2-1.0.0.tar.gz +    url: https://pypi.python.org/packages/source/l/{{name}}/{{name}-{{version}}.tar.gz  test:      imports:      - linecache2 | 
