diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-12-16 14:06:45 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-12-16 14:06:45 -0500 | 
| commit | 902d71bb3243ebf96b16697f66a84909859f093b (patch) | |
| tree | b94aa8fec53c993cc90f225715fb0bd8f4acc6d0 /pyds9/meta.yaml | |
| parent | 869c017fb80250b757aa49d6cf32776454ef8ae5 (diff) | |
| download | astroconda-contrib-902d71bb3243ebf96b16697f66a84909859f093b.tar.gz | |
Ensure build string produces unique packages (#124)
Diffstat (limited to 'pyds9/meta.yaml')
| -rw-r--r-- | pyds9/meta.yaml | 24 | 
1 files changed, 15 insertions, 9 deletions
diff --git a/pyds9/meta.yaml b/pyds9/meta.yaml index e6b199e..e92714f 100644 --- a/pyds9/meta.yaml +++ b/pyds9/meta.yaml @@ -1,15 +1,21 @@ +{% set name = 'pyds9' %} +{% set version = '1.9.0.dev' %} +{% set number = '1' %} +{% set buildstr = GIT_BUILD_STR + '_py' + CONDA_PY + '_' + PKG_BUILDNUM %} +  about: -    home: https://github.com/ericmandel/pyds9 -    license: GPL +    home: https://github.com/ericmandel/{{ name }} +    license: BSD      summary: |          (Supervised master build)          Python connection to SAOimage DS9 via XPA  build: -    number: '0' -    string: {{ GIT_BUILD_STR }} +    number: {{ number }} +    string: {{ buildstr }} +  package: -    name: pyds9 -    version: 1.9.0.dev +    name: {{ name }} +    version: {{ version }}  requirements:      build:      - astropy @@ -17,17 +23,17 @@ requirements:      - ds9      - six      - setuptools -    - numpy x.x +    - numpy      - python x.x      run:      - astropy      - ds9      - six -    - numpy x.x +    - numpy      - python x.x  source:      git_rev: 3761d7ac151f8c8729d0fb6cdba017cadf278283 -    git_url: https://github.com/ericmandel/pyds9 +    git_url: https://github.com/ericmandel/{{ name }}  test:      imports:      - pyds9  | 
