diff options
104 files changed, 903 insertions, 429 deletions
diff --git a/acstools/meta.yaml b/acstools/meta.yaml index c45a523..e87be19 100644 --- a/acstools/meta.yaml +++ b/acstools/meta.yaml @@ -2,28 +2,34 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/acstools +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: For analyzing ACS data +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - astropy >=1.1 -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy >=1.1 -    - numpy x.x +    - numpy      - python x.x +  source:      git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      commands:      - acs_destripe --help diff --git a/appdirs/meta.yaml b/appdirs/meta.yaml index 9dcec36..4bfaad9 100644 --- a/appdirs/meta.yaml +++ b/appdirs/meta.yaml @@ -3,23 +3,27 @@  {% set number = '0' %}  about: -    home: http://github.com/ActiveState/appdirs +    home: http://github.com/ActiveState/{{ name }}      license: MIT      summary: A small Python module for determining appropriate platform-specific dirs,          e.g. a "user data dir". +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x +      run:      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: 1d17b4c9694ab84794e228f28dc3275b -    url: -    - https://pypi.python.org/packages/source/a/appdirs/{{ name }}-{{ version }}.tar.gz +    url: https://pypi.python.org/packages/source/a/appdirs/{{ name }}-{{ version }}.tar.gz diff --git a/aprio/meta.yaml b/aprio/meta.yaml index 29e41f9..9a7f230 100644 --- a/aprio/meta.yaml +++ b/aprio/meta.yaml @@ -5,27 +5,31 @@  {% set number = '0' %}  about: -    home: http://bitbucket.org/jhunkeler/aprio +    home: http://bitbucket.org/jhunkeler/{{ name }}      license: GPL -    readme: README.md      summary: aprio is an automatic renice daemon. +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build: -    - python x.x      - argparse >=1.1 [py26]      - docutils -    - setuptools      - psutil      - python-daemon +    - setuptools +    - python x.x +      run:      - docutils      - psutil      - python-daemon      - python x.x +  source: -    git_url: https://bitbucket.org/jhunkeler/aprio +    git_url: https://bitbucket.org/jhunkeler/{{ name }}.git diff --git a/asdf-standard/meta.yaml b/asdf-standard/meta.yaml index 4628cb7..36d640a 100644 --- a/asdf-standard/meta.yaml +++ b/asdf-standard/meta.yaml @@ -5,14 +5,17 @@  {% set number = '0' %}  about: -    home: https://github.com/spacetelescope/asdf-standard +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: asdf-standard +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - sphinx @@ -22,10 +25,12 @@ requirements:      - six [py27|py3k]      - setuptools      - python x.x +          run:      - nose      - astropy      - setuptools      - python x.x +  source: -    git_url: https://github.com/spacetelescope/asdf-standard +    git_url: https://github.com/spacetelescope/{{ name }}.git diff --git a/asdf/meta.yaml b/asdf/meta.yaml index b69d505..78dd98f 100644 --- a/asdf/meta.yaml +++ b/asdf/meta.yaml @@ -2,17 +2,20 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/pyasdf +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: asdf +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - astropy @@ -21,8 +24,9 @@ requirements:      - pytest      - six      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - pyyaml @@ -30,10 +34,12 @@ requirements:      - pytest      - six      - setuptools -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/pyasdf +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      commands:      - asdftool --help diff --git a/astroimtools/meta.yaml b/astroimtools/meta.yaml index 9880966..7e0cf80 100644 --- a/astroimtools/meta.yaml +++ b/astroimtools/meta.yaml @@ -2,34 +2,39 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/astroimtools +    home: https://github.com/spacetelescope/{{ name }}      license: BSD -    readme: README.rst      summary: astroimtools +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - astropy      - cython      - matplotlib      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - cython      - matplotlib -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/astroimtools +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      commands:      - imarith --help diff --git a/astrolib.coords/meta.yaml b/astrolib.coords/meta.yaml index b4b0f76..e489d5e 100644 --- a/astrolib.coords/meta.yaml +++ b/astrolib.coords/meta.yaml @@ -2,29 +2,35 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/astrolib.coords.git +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: astrolib.coords +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1      - stsci.distutils      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run: -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/astrolib.coords.git/ +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - astrolib.coords diff --git a/astropy/meta.yaml b/astropy/meta.yaml index 86c8e89..56f6c94 100644 --- a/astropy/meta.yaml +++ b/astropy/meta.yaml @@ -1,16 +1,19 @@  {% set name = 'astropy' %}  {% set version = '2.0.dev' + environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: https://github.com/astropy/{{ name }}      license: BSD      summary: Astropy is a package intended to contain much of the core functionality and some common tools needed for performing astronomy and astrophysics with Python. +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - cython @@ -18,6 +21,7 @@ requirements:      - setuptools      - numpy x.x      - python x.x +      run:      - beautiful-soup [py27 or py34]      - beautifulsoup4 [py>=35] @@ -34,8 +38,10 @@ requirements:      - scipy      - numpy x.x      - python x.x +  source: -    git_url: https://github.com/astropy/{{ name }} +    git_url: https://github.com/astropy/{{ name }}.git +  test:      commands:      - fits2bitmap --help diff --git a/asv/meta.yaml b/asv/meta.yaml index 50f9dcf..ec0fbcb 100644 --- a/asv/meta.yaml +++ b/asv/meta.yaml @@ -2,28 +2,33 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/asv +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: asv +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - six      - sphinx      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - six      - sphinx -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/asv +    git_url: https://github.com/spacetelescope/{{ name }}.git diff --git a/calcos/meta.yaml b/calcos/meta.yaml index 0858f25..cf105e7 100644 --- a/calcos/meta.yaml +++ b/calcos/meta.yaml @@ -2,16 +2,19 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '1' %} +{% set number = '2' %}  about: -    home: https://github.com/spacetelescope/calcos +    home: https://github.com/spacetelescope/{{ name }}      summary: calcos +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -20,16 +23,19 @@ requirements:      - scipy      - stsci.tools      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - scipy      - stsci.tools -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/calcos +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      commands:      - calcos -r diff --git a/cfitsio/meta.yaml b/cfitsio/meta.yaml index 6d1c4d2..27979cb 100644 --- a/cfitsio/meta.yaml +++ b/cfitsio/meta.yaml @@ -1,17 +1,20 @@  {% set name = 'cfitsio' %}  {% set version = '3.370' %} +{% set version_short = '3370' %}  {% set number = '1' %}  about:      home: http://heasarc.gsfc.nasa.gov/fitsio/fitsio.html      license: BSD-like      summary: cfitsio +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  source: -    fn: cfitsio3370.tar.gz -    url: -    - ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/cfitsio3370.tar.gz +    fn: {{ name }}{{ version_short }}.tar.gz +    url: ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/{{ name }}{{ version_short }}.tar.gz diff --git a/costools/meta.yaml b/costools/meta.yaml index ab012f6..5fd6295 100644 --- a/costools/meta.yaml +++ b/costools/meta.yaml @@ -2,17 +2,20 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: http://www.stsci.edu/institute/software_hardware      license: BSD      summary: costools +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -21,18 +24,21 @@ requirements:      - calcos      - stsci.tools      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - d2to1      - astropy      - calcos      - stsci.tools      - setuptools -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/costools +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      commands:      - timefilter --help diff --git a/crds/meta.yaml b/crds/meta.yaml index 9e12689..ef52cb4 100644 --- a/crds/meta.yaml +++ b/crds/meta.yaml @@ -2,18 +2,21 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: http://www.stsci.edu/hst/observatory/crds/      license: AURA      summary: crds +  build:      number: {{ number }}      preserve_egg_dir: 'no' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -22,16 +25,19 @@ requirements:      - requests      - lxml      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - requests      - lxml -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/crds +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - crds diff --git a/cube-tools/meta.yaml b/cube-tools/meta.yaml index d31154d..86a67d7 100644 --- a/cube-tools/meta.yaml +++ b/cube-tools/meta.yaml @@ -2,33 +2,39 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/cube-tools +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: cube-tools +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - glueviz      - specview      - pyqtgraph      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - glueviz      - specview      - pyqtgraph -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/cube-tools +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - cube_tools diff --git a/d2to1/meta.yaml b/d2to1/meta.yaml index 2a2b250..8ea7776 100644 --- a/d2to1/meta.yaml +++ b/d2to1/meta.yaml @@ -5,20 +5,25 @@  {% set number = '0' %}  about: -    home: https://github.com/embray/d2to1 -    license: GPL +    home: https://github.com/embray/{{ name }} +    license: BSD      summary: d2to1 +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x +      run:      - setuptools      - python x.x +  source: -    git_url: https://github.com/embray/d2to1 +    git_url: https://github.com/embray/{{ name }}.git diff --git a/decorators/meta.yaml b/decorators/meta.yaml index 863309b..11e7987 100644 --- a/decorators/meta.yaml +++ b/decorators/meta.yaml @@ -6,19 +6,23 @@ about:      home: https://github.com/micheles/decorator      license: BSD      summary: Better living through Python with decorators +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x +      run:      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: 755857960408500848d1adc9d6495e98 -    url: -    - https://pypi.python.org/packages/source/d/decorators/{{ name }}-{{ version }}.tar.gz +    url: https://pypi.python.org/packages/source/d/decorators/{{ name }}-{{ version }}.tar.gz diff --git a/drizzle/meta.yaml b/drizzle/meta.yaml index 99eaae9..9bce9e2 100644 --- a/drizzle/meta.yaml +++ b/drizzle/meta.yaml @@ -2,7 +2,7 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: https://github.com/spacetelescope/{{ name }} @@ -16,24 +16,23 @@ package:  build:      number: {{ number }} -source: -    git_url: https://github.com/spacetelescope/{{ name }}.git -  requirements:      build:      - astropy      - setuptools -    - numpy x.x +    - numpy      - python x.x      run:      - astropy -    - numpy x.x +    - numpy      - python x.x +source: +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - drizzle      - drizzle.drizzle      - drizzle.cdrizzle - diff --git a/drizzlepac/meta.yaml b/drizzlepac/meta.yaml index a1a4e46..a137651 100644 --- a/drizzlepac/meta.yaml +++ b/drizzlepac/meta.yaml @@ -2,17 +2,20 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: http://www.stsci.edu/institute/software_hardware/pyraf/stsci_python +    home: https://github.com/spacetelescope/drizzlepac.git      license: BSD      summary: drizzlepac +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -32,8 +35,9 @@ requirements:      - stwcs      - pyregion      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - fitsblender @@ -50,10 +54,12 @@ requirements:      - stwcs      - pyregion      - setuptools -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/drizzlepac +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - drizzlepac diff --git a/ds9/meta.yaml b/ds9/meta.yaml index b3aea55..9f708af 100644 --- a/ds9/meta.yaml +++ b/ds9/meta.yaml @@ -6,15 +6,20 @@ about:      home: http://ds9.si.edu/download/source/      license: GPL,LGPL,BSD      summary: ds9 +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - gcc >=4.6 [osx] +  source: -    fn: ds9.7.4.tar.gz +    fn: {{ name }}.{{ version }}.tar.gz      url: -    - http://ds9.si.edu/download/source//ds9.7.4.tar.gz +    - http://ds9.si.edu/download/source/{{ name }}.{{ version }}.tar.gz + diff --git a/ext_shmht/meta.yaml b/ext_shmht/meta.yaml index 552c1d2..c0b264c 100644 --- a/ext_shmht/meta.yaml +++ b/ext_shmht/meta.yaml @@ -5,23 +5,29 @@  {% set number = '0' %}  about: -    home: https://github.com/stsci-ssb/ext_shmht +    home: https://github.com/stsci-ssb/{{ name }}      license: BSD      summary: ext_shmht +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x +      run:      - six      - python x.x +  source: -    git_url: https://github.com/stsci-ssb/ext_shmht +    git_url: https://github.com/stsci-ssb/{{ name }}.git +  test:      imports:      - ext_shmht diff --git a/fftw/meta.yaml b/fftw/meta.yaml index 4fd50d4..ce33a57 100644 --- a/fftw/meta.yaml +++ b/fftw/meta.yaml @@ -6,17 +6,21 @@ about:      home: http://www.fftw.org      license: GPL      summary: fftw +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - pkgconfig +      run:      - pkgconfig +  source:      fn: {{ name }}-{{ version }}.tar.gz -    url: -    - http://www.fftw.org/{{ name }}-{{ version }}.tar.gz +    url: http://www.fftw.org/{{ name }}-{{ version }}.tar.gz diff --git a/fitsblender/meta.yaml b/fitsblender/meta.yaml index 7b276cd..04ee992 100644 --- a/fitsblender/meta.yaml +++ b/fitsblender/meta.yaml @@ -2,17 +2,20 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: http://github.com/spacetelescope/fitsblender +    home: http://github.com/spacetelescope/{{ name }}      license: BSD      summary: fitsblender +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -20,15 +23,18 @@ requirements:      - astropy      - stsci.tools      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - stsci.tools -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/fitsblender +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - fitsblender diff --git a/freetds/meta.yaml b/freetds/meta.yaml index 56be856..7f3afd0 100644 --- a/freetds/meta.yaml +++ b/freetds/meta.yaml @@ -1,20 +1,32 @@ -package: -  name: freetds -  version: 1.00.9 +{% set name = 'freetds' %} +{% set version = '1.00.9' %} +{% set number = '0' %} -source: -  url: ftp://ftp.freetds.org/pub/freetds/stable/freetds-1.00.9.tar.bz2 -  md5: 51e8941fbb537092e29c944e39c92f68 -  patches: -    - 0001-CMake-install-targets.patch -    - 0002-CMake-install-headers.patch +about: +  home: http://www.freetds.org/index.html +  license: GNU Library or Lesser General Public License (LGPL) +  license_family: LGPL +  summary: 'Natively talk to Microsoft SQL Server and Sybase databases' +  description: | +    FreeTDS is an open source implementation of the TDS (Tabular Data Stream) +    protocol used by these databases for their own clients. It supports many +    different flavors of the protocol and three APIs to access it. +    Additionally FreeTDS works with other software such as Perl and PHP, +    providing access from those languages as well. +  doc_url: http://www.freetds.org/docs.html +  dev_url: https://github.com/FreeTDS/freetds/  build: +  number: {{ number }}    features:      - vc9               [win and py27]      - vc10              [win and py34]      - vc14              [win and py35] +package: +  name: {{ name }} +  version: {{ version }} +  requirements:    build:      - openssl 1.0.* @@ -25,6 +37,7 @@ requirements:      - vc   9            [win and py27]      - vc  10            [win and py34]      - vc  14            [win and py>34] +    run:      - openssl 1.0.*      - readline          [not win] @@ -33,16 +46,10 @@ requirements:      - vc  10            [win and py34]      - vc  14            [win and py>34] -about: -  home: http://www.freetds.org/index.html -  license: GNU Library or Lesser General Public License (LGPL) -  license_family: LGPL -  summary: 'Natively talk to Microsoft SQL Server and Sybase databases' -  description: | -    FreeTDS is an open source implementation of the TDS (Tabular Data Stream) -    protocol used by these databases for their own clients. It supports many -    different flavors of the protocol and three APIs to access it. -    Additionally FreeTDS works with other software such as Perl and PHP, -    providing access from those languages as well. -  doc_url: http://www.freetds.org/docs.html -  dev_url: https://github.com/FreeTDS/freetds/ +source: +  url: ftp://ftp.freetds.org/pub/freetds/stable/{{ name }}-{{ version }}.tar.bz2 +  md5: 51e8941fbb537092e29c944e39c92f68 +  patches: +    - 0001-CMake-install-targets.patch +    - 0002-CMake-install-headers.patch + diff --git a/ginga/meta.yaml b/ginga/meta.yaml index 4ab10fe..470f6bc 100644 --- a/ginga/meta.yaml +++ b/ginga/meta.yaml @@ -1,29 +1,33 @@  {% set name = 'ginga' %}  {% set version = '2.5.20151215011852' %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: https://github.com/ejeschke/ginga      license: BSD      summary: ginga +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build: -    - numpy x.x +    - numpy      - setuptools      - python x.x      run: -    - numpy x.x +    - numpy      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: 11cd8b9ed459c4438cc827e0a1ca4538 -    url: -    - https://pypi.python.org/packages/source/g/ginga/{{ name }}-{{ version }}.tar.gz +    url: https://pypi.python.org/packages/source/g/ginga/{{ name }}-{{ version }}.tar.gz +  test:      imports:      - ginga diff --git a/glue-vispy-viewers/meta.yaml b/glue-vispy-viewers/meta.yaml index 321bdd8..ebb5183 100644 --- a/glue-vispy-viewers/meta.yaml +++ b/glue-vispy-viewers/meta.yaml @@ -1,20 +1,26 @@ -{% set version = "0.4" %} +{% set name = 'glue-vispy-viewers' %} +{% set version = '0.4' %} +{% set number = '1' %} + +about: +  home: https://github.com/glue-viz/glue-vispy-viewers +  license: BSD 3-Clause +  summary: 3D viewers for Glue  package: -  name: glue-vispy-viewers -  version: {{version}} +  name: {{ name }} +  version: {{ version }}  source: -  fn: glue-vispy-viewers-{{version}}.tar.gz -  url: https://pypi.io/packages/source/g/glue-vispy-viewers/glue-vispy-viewers-{{version}}.tar.gz +  fn: {{ name }}-{{version}}.tar.gz +  url: https://pypi.io/packages/source/g/glue-vispy-viewers/{{ name }}-{{ version }}.tar.gz    md5: ded543ba93070a71f322da650b792b16  build: -  number: 0 +  number: {{ number }}    script: python setup.py install --single-version-externally-managed --record record.txt  requirements: -    build:      - python      - setuptools @@ -34,10 +40,6 @@ test:    imports:      - glue_vispy_viewers -about: -  home: https://github.com/glue-viz/glue-vispy-viewers -  license: BSD 3-Clause -  summary: 3D viewers for Glue  extra:    recipe-maintainers: diff --git a/glueviz/meta.yaml b/glueviz/meta.yaml index 3eccf06..29e2b67 100644 --- a/glueviz/meta.yaml +++ b/glueviz/meta.yaml @@ -1,21 +1,22 @@ -{% set version = "0.8.2" %} +{% set name = 'glueviz' %} +{% set version = '0.8.2' %} +{% set number = '1' %}  package: -  name: glueviz -  version: {{version}} +  name: {{ name }} +  version: {{ version }}  source: -  fn: glueviz-{{version}}.tar.gz -  url: https://pypi.io/packages/source/g/glueviz/glueviz-{{version}}.tar.gz +  fn: {{ name }}-{{ version }}.tar.gz +  url: https://pypi.io/packages/source/g/glueviz/{{ name }}-{{ version }}.tar.gz    md5: 92dd7de2621a6ab6861cc9b689e86c3e  build: -  number: 0 +  number: {{ number }}    script: python setup.py install --single-version-externally-managed --record record.txt    osx_is_app: True  requirements: -    build:      - python diff --git a/gwcs/meta.yaml b/gwcs/meta.yaml index 19bbb99..8417966 100644 --- a/gwcs/meta.yaml +++ b/gwcs/meta.yaml @@ -2,31 +2,37 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/gwcs +    home: https://github.com/spacetelescope/{{ name }}      license: GPL      summary: gwcs +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - asdf      - astropy      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - asdf      - astropy -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/gwcs +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - gwcs diff --git a/hstcal/meta.yaml b/hstcal/meta.yaml index 5e62b50..1830b40 100644 --- a/hstcal/meta.yaml +++ b/hstcal/meta.yaml @@ -5,18 +5,23 @@  {% set number = '2' %}  about: -    home: https://github.com/spacetelescope/hstcal +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: hstcal +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - gcc >=4.7 [osx] +      run:      - libgcc >=4.7 [osx] +  source: -    git_url: https://github.com/spacetelescope/hstcal +    git_url: https://github.com/spacetelescope/{{ name }}.git diff --git a/htc_utils/meta.yaml b/htc_utils/meta.yaml index dec1a8d..dd67fcc 100644 --- a/htc_utils/meta.yaml +++ b/htc_utils/meta.yaml @@ -5,25 +5,30 @@  {% set number = '0' %}  about: -    home: http://bitbucket.org/jhunkeler/htc_utils +    home: http://bitbucket.org/jhunkeler/{{ name }}      license: GPL -    readme: README.md      summary: htc_utils is a homebrew set of HTCondor wrappers +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - argparse [py26]      - setuptools      - python x.x +      run:      - argparse [py26]      - python x.x +  source: -    git_url: https://bitbucket.org/jhunkeler/htc_utils +    git_url: https://bitbucket.org/jhunkeler/{{ name }}.git +  test:      imports:      - htc_utils diff --git a/imexam/meta.yaml b/imexam/meta.yaml index 66b9ec3..4a35a8a 100644 --- a/imexam/meta.yaml +++ b/imexam/meta.yaml @@ -2,25 +2,27 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/imexam +    home: https://github.com/spacetelescope/{{ name }}      license: BSD -    readme: README.rst      summary: imexam +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1      - stsci.distutils      - nose      - astropy -    - numpy x.x +    - numpy      - scipy      - cython      - matplotlib @@ -28,18 +30,21 @@ requirements:      - setuptools      - mock [py27]      - python x.x +      run:      - nose      - astropy -    - numpy x.x +    - numpy      - scipy      - cython      - matplotlib      - ipython      - mock [py27]      - python x.x +  source: -    git_url: https://github.com/spacetelescope/imexam +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - imexam diff --git a/imgeom/meta.yaml b/imgeom/meta.yaml index f75b9a4..0ad76fd 100644 --- a/imgeom/meta.yaml +++ b/imgeom/meta.yaml @@ -2,7 +2,7 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: https://github.com/spacetelescope/{{ name }} @@ -26,11 +26,12 @@ requirements:      - gwcs      - setuptools      - python x.x +      run:      - astropy      - drizzle      - gwcs -    - numpy x.x +    - numpy      - python x.x  test: @@ -39,6 +40,3 @@ test:      - imgeom.drizmask      - imgeom.fitting      - imgeom.reproject -# -#   commands: -#   # - (e.g. program --help) diff --git a/iraf/meta.yaml b/iraf/meta.yaml index d6de107..f2e08fd 100644 --- a/iraf/meta.yaml +++ b/iraf/meta.yaml @@ -6,13 +6,16 @@ about:      home: http://iraf.noao.edu      license: MIT      summary: NOAO Image Reduction and Analysis Facility +  build:      binary_relocation: False [osx]      detect_binary_files_with_prefix: False [osx]      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  source:      fn: iraf.tar.gz      url: diff --git a/jplephem/meta.yaml b/jplephem/meta.yaml index 76f32ad..50d2b9f 100644 --- a/jplephem/meta.yaml +++ b/jplephem/meta.yaml @@ -2,10 +2,10 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/brandon-rhodes/python-{{name}} +    home: https://github.com/brandon-rhodes/python-{{ name }}      license: MIT      summary: "Python version of NASA DE4xx ephemerides, the basis for the Astronomical Alamanac" @@ -19,15 +19,15 @@ package:  requirements:      build:      - setuptools -    - numpy x.x +    - numpy      - python x.x      run: -    - numpy x.x +    - numpy      - python x.x  source: -    git_url: https://github.com/brandon-rhodes/python-{{name}}.git +    git_url: https://github.com/brandon-rhodes/python-{{ name }}.git      patches:      - 0001_use-setuptools.patch diff --git a/jwst/meta.yaml b/jwst/meta.yaml index 66a8aad..97e38d8 100644 --- a/jwst/meta.yaml +++ b/jwst/meta.yaml @@ -2,23 +2,27 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/stsci-jwst/jwst.git +    home: https://github.com/stsci-jwst/{{ name }}      license: BSD      summary: JWST Pipeline code +  build:      number: {{ number }}      preserve_egg_dir: 'True' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools -    - numpy x.x +    - numpy >=1.7*      - python x.x +      run:      - asdf      - astropy @@ -36,10 +40,12 @@ requirements:      - scipy      - six      - verhawk -    - numpy x.x +    - numpy >=1.7*      - python x.x +  source: -    git_url: https://github.com/stsci-jwst/jwst.git +    git_url: https://github.com/stsci-jwst/{{ name }}.git +  test:      imports:      - jwst diff --git a/jwst_lib/meta.yaml b/jwst_lib/meta.yaml index 18d9473..58a83c4 100644 --- a/jwst_lib/meta.yaml +++ b/jwst_lib/meta.yaml @@ -2,18 +2,21 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: ssh://git@bitbucket.org/stsci_ssb/jwst.git      license: BSD      summary: jwst_lib +  build:      number: {{ number }}      preserve_egg_dir: 'True' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -25,9 +28,10 @@ requirements:      - nose      - six      - stsci.distutils -    - numpy x.x +    - numpy      - setuptools      - python x.x +      run:      - asdf      - astropy @@ -36,10 +40,12 @@ requirements:      - nose      - jsonschema      - six -    - numpy x.x +    - numpy      - python x.x +  source:      git_url: ssh://git@bitbucket.org/stsci_ssb/jwst.git +  test:      imports:      - jwst_lib diff --git a/jwst_pipeline/meta.yaml b/jwst_pipeline/meta.yaml index 8c09d67..5dbfc4d 100644 --- a/jwst_pipeline/meta.yaml +++ b/jwst_pipeline/meta.yaml @@ -2,18 +2,21 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '1' %} +{% set number = '2' %}  about:      home: ssh://git@bitbucket.org/stsci_ssb/jwst.git      license: BSD      summary: jwst_pipeline +  build:      number: {{ number }}      preserve_egg_dir: 'True' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -31,8 +34,9 @@ requirements:      - scipy      - stsci.distutils      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - asdf @@ -46,10 +50,12 @@ requirements:      - matplotlib      - photutils      - scipy -    - numpy x.x +    - numpy      - python x.x +  source:      git_url: ssh://git@bitbucket.org/stsci_ssb/jwst.git +  test:      imports:      - jwst_pipeline diff --git a/jwst_tools/meta.yaml b/jwst_tools/meta.yaml index 5c02030..1fa0160 100644 --- a/jwst_tools/meta.yaml +++ b/jwst_tools/meta.yaml @@ -2,18 +2,21 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: ssh://git@bitbucket.org/stsci_ssb/jwst.git      license: BSD      summary: jwst_tools +  build:      number: {{ number }}      preserve_egg_dir: 'True' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -26,8 +29,9 @@ requirements:      - stsci.distutils      - stsci.tools      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - jwst_lib @@ -36,10 +40,12 @@ requirements:      - scipy      - six      - stsci.tools -    - numpy x.x +    - numpy      - python x.x +  source:      git_url: ssh://git@bitbucket.org/stsci_ssb/jwst.git +  test:      imports:      - jwst_tools diff --git a/jwxml/meta.yaml b/jwxml/meta.yaml index 595d337..4c1399e 100644 --- a/jwxml/meta.yaml +++ b/jwxml/meta.yaml @@ -2,7 +2,7 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '1' %} +{% set number = '2' %}  about:      home: https://github.com/mperrin/{{ name }} diff --git a/lapack/meta.yaml b/lapack/meta.yaml index 3ec4136..a54e090 100644 --- a/lapack/meta.yaml +++ b/lapack/meta.yaml @@ -8,15 +8,18 @@ about:      home: http://www.netlib.org      license: BSD      summary: lapack +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - cmake +  source:      fn: {{ name }}-{{ version }}.tgz -    url: -    - http://www.netlib.org/lapack/{{ name }}-{{ version }}.tgz +    url: http://www.netlib.org/lapack/{{ name }}-{{ version }}.tgz diff --git a/linecache2/meta.yaml b/linecache2/meta.yaml index f1bee6e..17b01bb 100644 --- a/linecache2/meta.yaml +++ b/linecache2/meta.yaml @@ -6,24 +6,29 @@ about:      home: https://pypi.python.org/packages/source/l/linecache2      license: BSD      summary: linecache2 +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - pbr      - setuptools      - python x.x +      run:      - pbr      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: 7b25d0289ec36bff1f9e63c4329ce65c -    url: -    - https://pypi.python.org/packages/source/l/linecache2/{{ name }}-{{ version }}.tar.gz +    url: https://pypi.python.org/packages/source/l/linecache2/{{ name }}-{{ version }}.tar.gz +  test:      imports:      - linecache2 diff --git a/mechanize/meta.yaml b/mechanize/meta.yaml index 30a24d4..9a6cb71 100644 --- a/mechanize/meta.yaml +++ b/mechanize/meta.yaml @@ -3,25 +3,30 @@  {% set number = '0' %}  about: -    home: https://pypi.python.org/packages/source/m/mechanize +    home: https://pypi.python.org/packages/source/m/{{ name }}      license: BSD      summary: mechanize +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x +      run:      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: 32657f139fc2fb75bcf193b63b8c60b2 -    url: -    - https://pypi.python.org/packages/source/m/mechanize/{{ name }}-{{ version }}.tar.gz +    url: https://pypi.python.org/packages/source/m/mechanize/{{ name }}-{{ version }}.tar.gz +  test:      imports:      - mechanize diff --git a/nictools/meta.yaml b/nictools/meta.yaml index 188738d..8d7028a 100644 --- a/nictools/meta.yaml +++ b/nictools/meta.yaml @@ -2,16 +2,19 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/nictools +    home: https://github.com/spacetelescope/{{ name }}      summary: nictools +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -20,16 +23,19 @@ requirements:      - scipy      - stsci.tools      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - scipy      - stsci.tools -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/nictools +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - nictools diff --git a/opuscoords/meta.yaml b/opuscoords/meta.yaml index 17a2375..4ca6de9 100644 --- a/opuscoords/meta.yaml +++ b/opuscoords/meta.yaml @@ -2,29 +2,35 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/opuscoords +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: opuscoords +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1      - stsci.distutils      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run: -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/opuscoords.git +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - opuscoords diff --git a/pandeia-thirdparty/meta.yaml b/pandeia-thirdparty/meta.yaml index cd035e4..424950d 100644 --- a/pandeia-thirdparty/meta.yaml +++ b/pandeia-thirdparty/meta.yaml @@ -8,11 +8,14 @@ about:      home: http://stsci.edu      license: BSD      summary: pandeia-thirdparty meta-package +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      run:      - astropy diff --git a/pandeia_data/meta.yaml b/pandeia_data/meta.yaml index bf2026e..2d5a34a 100644 --- a/pandeia_data/meta.yaml +++ b/pandeia_data/meta.yaml @@ -8,18 +8,23 @@ about:      home: https://github.com:stsci-ssb/pandeia_data      license: BSD      summary: pandeia_data +  build:      number: {{ number }}      preserve_egg_dir: 'yes' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x +      run:      - pandeia      - python x.x +  source:      git_url: git@github.com:STScI-SSB/pandeia_data diff --git a/pandokia/meta.yaml b/pandokia/meta.yaml index e4de989..54ad4f3 100644 --- a/pandokia/meta.yaml +++ b/pandokia/meta.yaml @@ -5,14 +5,17 @@  {% set number = '0' %}  about: -    home: http://ssb.stsci.edu/testing/pandokia +    home: http://ssb.stsci.edu/testing/{{ name }}      license: BSD      summary: pandokia +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -22,13 +25,16 @@ requirements:      - shunit2      - setuptools      - python x.x +      run:      - nose      - shunit2      - pytest      - python x.x +  source: -    git_url: https://github.com/spacetelescope/pandokia +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      commands:      - pdk --help diff --git a/parsley/meta.yaml b/parsley/meta.yaml index e754818..5c49fcc 100644 --- a/parsley/meta.yaml +++ b/parsley/meta.yaml @@ -6,22 +6,26 @@ about:      home: https://pypi.python.org/packages/source/P/Parsley      license: BSD      summary: parsley +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x      run:      - python x.x +  source:      fn: Parsley-1.3.tar.gz      md5: 92bc256e5f73810a609dc7874637ad31 -    url: -    - https://pypi.python.org/packages/source/P/Parsley/Parsley-1.3.tar.gz +    url: https://pypi.python.org/packages/source/P/Parsley/Parsley-1.3.tar.gz +  test:      imports:      - parsley diff --git a/photutils/meta.yaml b/photutils/meta.yaml index 005eb8b..ad12632 100644 --- a/photutils/meta.yaml +++ b/photutils/meta.yaml @@ -2,17 +2,20 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '2' %} +{% set number = '3' %}  about: -    home: https://github.com/astropy/photutils +    home: https://github.com/astropy/{{ name }}      license: BSD      summary: photutils +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -21,22 +24,25 @@ requirements:      - astropy      - cython      - matplotlib -    - numpy x.x +    - numpy      - scikit-image      - scipy      - setuptools      - python x.x +      run:      - astropy      - cython      - matplotlib -    - numpy x.x +    - numpy      - scikit-image      - scipy      - setuptools      - python x.x +  source: -    git_url: https://github.com/astropy/photutils +    git_url: https://github.com/astropy/{{ name }}.git +  test:      imports:      - photutils diff --git a/poppy/meta.yaml b/poppy/meta.yaml index 169ec17..cb9eaca 100644 --- a/poppy/meta.yaml +++ b/poppy/meta.yaml @@ -2,22 +2,25 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/mperrin/poppy +    home: https://github.com/mperrin/{{ name }}      license: BSD      summary: poppy +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - nose      - astropy -    - numpy x.x +    - numpy      - scipy      - matplotlib      - six [py27] @@ -25,10 +28,11 @@ requirements:      - enum34 [py27]      - setuptools      - python x.x +      run:      - nose      - astropy -    - numpy x.x +    - numpy      - scipy      - matplotlib      - six [py27] @@ -36,5 +40,6 @@ requirements:      - enum34 [py27]      - setuptools      - python x.x +  source: -    git_url: https://github.com/mperrin/poppy +    git_url: https://github.com/mperrin/{{ name }}.git diff --git a/purge_path/meta.yaml b/purge_path/meta.yaml index a0b9713..84f4ddb 100644 --- a/purge_path/meta.yaml +++ b/purge_path/meta.yaml @@ -5,19 +5,24 @@  {% set number = '0' %}  about: -    home: http://bitbucket.org/jhunkeler/purge_path +    home: http://bitbucket.org/jhunkeler/{{ name }}      license: GPL      summary: purge_path a small PATH manipulator +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - python x.x      - setuptools +      run:      - python x.x +  source: -    git_url: https://bitbucket.org/jhunkeler/purge_path +    git_url: https://bitbucket.org/jhunkeler/{{ name }}.git diff --git a/pyds9/meta.yaml b/pyds9/meta.yaml index e3222a4..1ad3fd5 100644 --- a/pyds9/meta.yaml +++ b/pyds9/meta.yaml @@ -2,17 +2,20 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/ericmandel/pyds9 +    home: https://github.com/ericmandel/{{ name }}      license: GPL      summary: Python connection to SAOimage DS9 via XPA +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - astropy @@ -20,18 +23,21 @@ requirements:      - ds9      - six      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - xpa      - ds9      - six -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/ericmandel/pyds9 +    git_url: https://github.com/ericmandel/{{ name }}.git +  test:      imports:      #- pyds9 -    # ^ Disabled, because it leaves behind an xpans daemon +    #  ^ Disabled, because it leaves behind the xpans daemon diff --git a/pyfftw/meta.yaml b/pyfftw/meta.yaml index ffea2cd..05d571e 100644 --- a/pyfftw/meta.yaml +++ b/pyfftw/meta.yaml @@ -1,16 +1,19 @@  {% set name = 'pyfftw' %}  {% set version = '0.9.2' %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: http://hgomersall.github.com/pyFFTW      license: GPL      summary: pyfftw +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - numpy >=1.9 @@ -18,18 +21,20 @@ requirements:      - cython      - pkg-config [osx]      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - numpy >=1.9      - cython      - fftw -    - numpy x.x +    - numpy      - python x.x +  source:      fn: pyFFTW-0.9.2.tar.gz -    url: -    - https://pypi.python.org/packages/source/p/pyFFTW/pyFFTW-0.9.2.tar.gz +    url: https://pypi.python.org/packages/source/p/pyFFTW/pyFFTW-0.9.2.tar.gz +  test:      imports:      - pyfftw diff --git a/pyneb/meta.yaml b/pyneb/meta.yaml index 212e0bb..32ac748 100644 --- a/pyneb/meta.yaml +++ b/pyneb/meta.yaml @@ -1,35 +1,40 @@  {% set badname = 'PyNeb' %}  {% set name = 'pyneb' %}  {% set version = '1.0.14' %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: http://www.iac.es/proyecto/PyNeb/      license: Unknown      summary: A modern python tool to compute emission line emissivities +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - astropy      - matplotlib -    - numpy x.x +    - numpy      - scipy      - setuptools      - python x.x +      run:      - astropy      - matplotlib -    - numpy x.x +    - numpy      - scipy      - python x.x +  source:      fn: {{ badname }}-{{ version }}.tar.gz -    url: -    - https://pypi.python.org/packages/source/P/{{ badname }}/{{ badname }}-{{ version }}.tar.gz +    url: https://pypi.python.org/packages/source/P/{{ badname }}/{{ badname }}-{{ version }}.tar.gz +  test:      imports:      - pyneb diff --git a/pyobjc-core/meta.yaml b/pyobjc-core/meta.yaml index c64ebac..112223b 100644 --- a/pyobjc-core/meta.yaml +++ b/pyobjc-core/meta.yaml @@ -6,22 +6,27 @@ about:      home: http://pyobjc.sourceforge.net/      license: MIT      summary: Python<->ObjC Interoperability Module +  build:      number: {{ number }}      preserve_egg_dir: 'true' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x +            run:      - python x.x +  source:      fn: pyobjc-{{ version }}.tar.gz -    url: -    - https://bitbucket.org/ronaldoussoren/pyobjc/get/pyobjc-{{ version }}.tar.bz2 +    url: https://bitbucket.org/ronaldoussoren/pyobjc/get/pyobjc-{{ version }}.tar.bz2 +  test:      imports:      - PyObjCTools diff --git a/pyobjc-framework-cocoa/meta.yaml b/pyobjc-framework-cocoa/meta.yaml index 785c0b1..c71d511 100644 --- a/pyobjc-framework-cocoa/meta.yaml +++ b/pyobjc-framework-cocoa/meta.yaml @@ -10,21 +10,25 @@ about:  build:      number: {{ number }}      preserve_egg_dir: 'true' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - pyobjc-core      - setuptools      - python x.x +      run:      - pyobjc-core      - python x.x +  source:      fn: pyobjc-{{ version }}.tar.gz -    url: -    - https://bitbucket.org/ronaldoussoren/pyobjc/get/pyobjc-{{ version }}.tar.bz2 +    url: https://bitbucket.org/ronaldoussoren/pyobjc/get/pyobjc-{{ version }}.tar.bz2 +  test:      imports:      - Cocoa diff --git a/pyobjc-framework-quartz/meta.yaml b/pyobjc-framework-quartz/meta.yaml index 5749918..ce467cc 100644 --- a/pyobjc-framework-quartz/meta.yaml +++ b/pyobjc-framework-quartz/meta.yaml @@ -6,25 +6,30 @@ about:      home: http://pyobjc.sourceforge.net/      license: MIT      summary: Wrappers for the Quartz frameworks on Mac OS X +  build:      number: {{ number }}      preserve_egg_dir: 'true' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - pyobjc-core      - pyobjc-framework-cocoa      - setuptools      - python x.x +      run:      - pyobjc-core      - pyobjc-framework-cocoa      - python x.x +        source:      fn: pyobjc-{{ version }}.tar.gz -    url: -    - https://bitbucket.org/ronaldoussoren/pyobjc/get/pyobjc-{{ version }}.tar.bz2 +    url: https://bitbucket.org/ronaldoussoren/pyobjc/get/pyobjc-{{ version }}.tar.bz2 +  #test:      # - see runtest.py diff --git a/pyqtgraph/meta.yaml b/pyqtgraph/meta.yaml index ad80dba..b9233f8 100644 --- a/pyqtgraph/meta.yaml +++ b/pyqtgraph/meta.yaml @@ -1,29 +1,35 @@  {% set name = 'pyqtgraph' %}  {% set version = '0.10.0' %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: http://www.pyqtgraph.org/      license: MIT      summary: pyqtgraph +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x +      run:      - pyqt      - pyopengl -    - numpy x.x +    - numpy      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: 371533725828e51658c98379b8f9abb3      url: https://pypi.python.org/packages/cd/ad/307e0280df5c19986c4206d138ec3a8954afc722cea991f4adb4a16337d9/{{ name }}-{{ version }}.tar.gz +  test:      imports:      - pyqtgraph diff --git a/pyraf/meta.yaml b/pyraf/meta.yaml index 2c37cb6..b3ce826 100644 --- a/pyraf/meta.yaml +++ b/pyraf/meta.yaml @@ -2,17 +2,20 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/pyraf +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: pyraf +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -25,8 +28,9 @@ requirements:      - stsci.distutils      - stsci.tools      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - d2to1      - astropy @@ -36,10 +40,12 @@ requirements:      - pyobjc-framework-cocoa [osx]      - pyobjc-framework-quartz [osx]      - stsci.tools -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/pyraf +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      commands:      - pyraf --help diff --git a/pyregion/meta.yaml b/pyregion/meta.yaml index 468a8ca..0110351 100644 --- a/pyregion/meta.yaml +++ b/pyregion/meta.yaml @@ -2,32 +2,38 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: http://www.stsci.edu/institute/software_hardware/pyraf/stsci_python +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: pyregion +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1      - stsci.distutils      - pyparsing      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - pyparsing -    - numpy x.x +    - numpy      - python x.x      - setuptools +  source: -    git_url: https://github.com/spacetelescope/pyregion +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - pyregion diff --git a/pysynphot/meta.yaml b/pysynphot/meta.yaml index 351d5f0..3a114ab 100644 --- a/pysynphot/meta.yaml +++ b/pysynphot/meta.yaml @@ -2,18 +2,21 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/pysynphot +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: pysynphot +  build:      number: {{ number }}      preserve_egg_dir: 'yes' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -23,17 +26,20 @@ requirements:      - cython      - matplotlib      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - nose      - astropy      - cython      - matplotlib -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/pysynphot +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - pysynphot diff --git a/python-daemon/meta.yaml b/python-daemon/meta.yaml index 9bb7e61..5605faa 100644 --- a/python-daemon/meta.yaml +++ b/python-daemon/meta.yaml @@ -6,21 +6,25 @@ about:      home: http://bitbucket.org/jhunkeler/python-daemon      license: Apache-2      summary: Library to implement a well-behaved Unix daemon process. +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - docutils      - lockfile      - python x.x +      run:      - lockfile      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: 73e7f49f525c51fa4a995aea4d80de41 -    url: -    - https://pypi.python.org/packages/source/p/python-daemon/{{ name }}-{{ version }}.tar.gz +    url: https://pypi.python.org/packages/source/p/python-daemon/{{ name }}-{{ version }}.tar.gz diff --git a/pytools/meta.yaml b/pytools/meta.yaml index cc854d0..9cbe9ab 100644 --- a/pytools/meta.yaml +++ b/pytools/meta.yaml @@ -1,16 +1,19 @@  {% set name = 'pytools' %}  {% set version = '2016.1' %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: https://pypi.python.org/pytools      license: MIT      summary: A collection of tools for Python +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - decorator >=3.2.0 @@ -19,17 +22,19 @@ requirements:      - numpy >=1.6.0      - setuptools      - python x.x +      run:      - decorator >=3.2.0      - appdirs >=1.4.0      - six >=1.8.0      - numpy >=1.6.0      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: d8af5c5bea24aa4a21881684dcf03b06 -    url: -    - https://pypi.python.org/packages/source/p/pytools/{{ name }}-{{ version }}.tar.gz +    url: https://pypi.python.org/packages/source/p/pytools/{{ name }}-{{ version }}.tar.gz +  test:      imports:      - pytools diff --git a/pywcs/meta.yaml b/pywcs/meta.yaml index d354a57..965c899 100644 --- a/pywcs/meta.yaml +++ b/pywcs/meta.yaml @@ -2,31 +2,37 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '1' %} +{% set number = '2' %}  about: -    home: https://github.com/spacetelescope/pywcs +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: pywcs +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1      - stsci.distutils      - stsci.tools -    - numpy x.x +    - numpy      - setuptools      - python x.x +      run:      - stsci.tools -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/pywcs +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - pywcs diff --git a/reftools/meta.yaml b/reftools/meta.yaml index 4e91298..1d071de 100644 --- a/reftools/meta.yaml +++ b/reftools/meta.yaml @@ -2,18 +2,21 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: http://www.stsci.edu/institute/software_hardware/pyraf/stsci_python +    home: http://github.com/spacetelescope/{{ name }}      license: BSD      summary: reftools +  build:      number: {{ number }}      preserve_egg_dir: 'yes' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -26,8 +29,9 @@ requirements:      - calcos      - scipy      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - stsci.imagestats      - stsci.tools @@ -36,10 +40,12 @@ requirements:      - stwcs      - calcos      - scipy -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/reftools +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - reftools diff --git a/relic/meta.yaml b/relic/meta.yaml index 70dcdd0..dcd41c0 100644 --- a/relic/meta.yaml +++ b/relic/meta.yaml @@ -5,22 +5,28 @@  {% set number = '0' %}  about: -    home: http://github.com/jhunkeler/relic +    home: http://github.com/jhunkeler/{{ name }}      license: BSD      summary: Release I Control, for git +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x +      run:      - python x.x +  source: -    git_url: https://github.com/jhunkeler/relic.git +    git_url: https://github.com/jhunkeler/{{ name }}.git +  test:      imports:      - relic diff --git a/selenium/meta.yaml b/selenium/meta.yaml index 6e0026d..88eb542 100644 --- a/selenium/meta.yaml +++ b/selenium/meta.yaml @@ -3,25 +3,30 @@  {% set number = '0' %}  about: -    home: https://pypi.python.org/packages/source/s/selenium +    home: https://pypi.python.org/packages/source/s/{{ name }}      license: BSD      summary: selenium +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x +      run:      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: 17cfe7c6adb2cad1f64a61cf753f0738 -    url: -    - https://pypi.python.org/packages/source/s/selenium/{{ name }}-{{ version }}.tar.gz +    url: https://pypi.python.org/packages/source/s/selenium/{{ name }}-{{ version }}.tar.gz +  test:      imports:      - selenium diff --git a/shunit2/meta.yaml b/shunit2/meta.yaml index ef4022c..08e86a5 100644 --- a/shunit2/meta.yaml +++ b/shunit2/meta.yaml @@ -6,15 +6,18 @@ about:      home: http://sourceforge.net/projects/shunit2      license: LGPL      summary: shunit2 +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  source:      fn: {{ name }}-{{ version }}.tgz -    url: -    - https://downloads.sourceforge.net/shunit2/{{ name }}-{{ version }}.tgz +    url: https://downloads.sourceforge.net/shunit2/{{ name }}-{{ version }}.tgz +  test:      commands:      - shunit2 --help diff --git a/specutils/meta.yaml b/specutils/meta.yaml index f5ab336..ee7ddfc 100644 --- a/specutils/meta.yaml +++ b/specutils/meta.yaml @@ -1,7 +1,7 @@  {% set name = 'specutils' %}  {% set version = '0.2.1' %}  {% set tag = 'v' + version %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: https://github.com/astropy/specutils @@ -13,7 +13,6 @@ package:      version: {{ version }}  build: -    # Define this value above      number: {{ number }}  source: @@ -26,12 +25,13 @@ requirements:      - cython      - scipy      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - scipy -    - numpy x.x +    - numpy      - python x.x  test: diff --git a/specview/meta.yaml b/specview/meta.yaml index 5d3df6f..283a485 100644 --- a/specview/meta.yaml +++ b/specview/meta.yaml @@ -2,34 +2,39 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/specview +    home: https://github.com/spacetelescope/{{ name }}      license: BSD -    readme: README.rst      summary: specview +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - astropy -    - numpy x.x +    - numpy      - scipy      - pyqtgraph      - setuptools      - python x.x +      run:      - astropy -    - numpy x.x +    - numpy      - scipy      - pyqtgraph      - python x.x +  source: -    git_url: https://github.com/spacetelescope/specview +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - specview diff --git a/specviz/meta.yaml b/specviz/meta.yaml index ccb7fed..89a1f32 100644 --- a/specviz/meta.yaml +++ b/specviz/meta.yaml @@ -1,7 +1,11 @@  {% set name = 'specviz' %}  {% set version = '0.2.1rc5' %} -{% set tag = 'v0.2.1rc5' %} -{% set number = '0' %} +{% set tag = 'v' + version %} +{% set number = '1' %} + +about: +  home: https://github.com/spacetelescope/specviz +  license: BSD  package:    name: {{ name }} @@ -22,7 +26,7 @@ requirements:      - scipy      - yaml      - setuptools -    - numpy x.x +    - numpy      - python x.x    run: @@ -34,7 +38,7 @@ requirements:      - pyqt      - scipy      - yaml -    - numpy x.x +    - numpy      - python x.x  test: @@ -44,6 +48,3 @@ test:    imports:      - specviz -about: -  home: https://github.com/spacetelescope/specviz -  license: BSD diff --git a/sphere/meta.yaml b/sphere/meta.yaml index 46d5b22..73773eb 100644 --- a/sphere/meta.yaml +++ b/sphere/meta.yaml @@ -2,31 +2,37 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/sphere +    home: https://github.com/spacetelescope/{{ name }}      license: BSD -    summary: For handling spherical polygons that represent arbitrary regions of the sky  +    summary: For handling spherical polygons that represent arbitrary regions of the sky +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - astropy      - matplotlib      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - matplotlib -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/sphere +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - spherical_geometry diff --git a/sphinx_rtd_theme/meta.yaml b/sphinx_rtd_theme/meta.yaml index ac60977..cb9d135 100644 --- a/sphinx_rtd_theme/meta.yaml +++ b/sphinx_rtd_theme/meta.yaml @@ -6,24 +6,29 @@ about:      home: https://pypi.python.org/packages/source/s/sphinx_rtd_theme      license: BSD      summary: sphinx_rtd_theme +      build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - sphinx      - setuptools      - python x.x +      run:      - sphinx      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: 86a25c8d47147c872e42dc84cc66f97b -    url: -    - https://pypi.python.org/packages/source/s/sphinx_rtd_theme/{{ name }}-{{ version }}.tar.gz +    url: https://pypi.python.org/packages/source/s/sphinx_rtd_theme/{{ name }}-{{ version }}.tar.gz +  test:      imports:      - sphinx_rtd_theme diff --git a/sphinxcontrib-programoutput/meta.yaml b/sphinxcontrib-programoutput/meta.yaml index 741eddc..665d19a 100644 --- a/sphinxcontrib-programoutput/meta.yaml +++ b/sphinxcontrib-programoutput/meta.yaml @@ -3,22 +3,27 @@  {% set number = '0' %}  about: -    home: https://pypi.python.org/packages/source/s/sphinxcontrib-programoutput +    home: https://pypi.python.org/packages/source/s/{{ name }}      license: BSD      summary: sphinxcontrib-programoutput +      build:      number: {{ number }} +      package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - sphinx      - setuptools      - python x.x +          run:      - sphinx      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: bb0be17ef13f268378b2af51ff413c58 diff --git a/stginga/meta.yaml b/stginga/meta.yaml index d8de315..f80694e 100644 --- a/stginga/meta.yaml +++ b/stginga/meta.yaml @@ -2,33 +2,39 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/stginga +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: stginga +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - ginga      - astropy -    - numpy x.x +    - numpy      - scipy      - setuptools      - python x.x +      run:      - ginga      - astropy -    - numpy x.x +    - numpy      - scipy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/stginga +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - stginga diff --git a/stistools/meta.yaml b/stistools/meta.yaml index f1245b7..4b7fc57 100644 --- a/stistools/meta.yaml +++ b/stistools/meta.yaml @@ -2,17 +2,20 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: http://www.stsci.edu/institute/software_hardware/pyraf/stsci_python +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: stistools +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -21,16 +24,19 @@ requirements:      - scipy      - stsci.tools      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - scipy      - stsci.tools -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/stistools +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - stistools diff --git a/stsci-data-analysis/meta.yaml b/stsci-data-analysis/meta.yaml index c9bd2ba..80fe7ed 100644 --- a/stsci-data-analysis/meta.yaml +++ b/stsci-data-analysis/meta.yaml @@ -2,7 +2,7 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '1' %} +{% set number = '2' %}  about:      home: http://stsci.edu @@ -26,7 +26,7 @@ requirements:      - glueviz >=*0.0*      - imexam >=*0.0*      - asdf >=*0.0* -    - numpy x.x +    - numpy      - python x.x      run:      - astropy >=*0.0* @@ -37,6 +37,6 @@ requirements:      - glueviz >=*0.0*      - imexam >=*0.0*      - asdf >=*0.0* -    - numpy x.x +    - numpy      - python x.x diff --git a/stsci-hst/meta.yaml b/stsci-hst/meta.yaml index cde531f..3db9f37 100644 --- a/stsci-hst/meta.yaml +++ b/stsci-hst/meta.yaml @@ -2,17 +2,20 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: http://www.stsci.edu      license: BSD      summary: stsci-hst meta-package +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      run:      - purge_path >=*0.0* @@ -45,5 +48,5 @@ requirements:      - stwcs >=*0.0*      - wfpc2tools >=*0.0*      - wfc3tools >=*0.0* -    - numpy x.x +    - numpy      - python x.x diff --git a/stsci-jwst/meta.yaml b/stsci-jwst/meta.yaml index e59a9e4..0da0ca0 100644 --- a/stsci-jwst/meta.yaml +++ b/stsci-jwst/meta.yaml @@ -2,23 +2,26 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: http://www.stsci.edu      license: BSD      summary: stsci-jwst meta-package +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - jwst -    - numpy x.x +    - numpy      - python x.x      run:      - jwst -    - numpy x.x +    - numpy      - python x.x diff --git a/stsci.convolve/meta.yaml b/stsci.convolve/meta.yaml index 9d524f5..1988b6a 100644 --- a/stsci.convolve/meta.yaml +++ b/stsci.convolve/meta.yaml @@ -2,29 +2,35 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/embray/stsci.convolve +    home: https://github.com/spacetelescope/{{ name }}      license: GPL      summary: stsci.convolve +  build:      number: {{ number }}      preserve_egg_dir: 'yes' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1      - stsci.distutils -    - numpy x.x +    - numpy      - python x.x +      run: -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/stsci.convolve +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - stsci.convolve diff --git a/stsci.distutils/meta.yaml b/stsci.distutils/meta.yaml index f1dd3c3..1ed7129 100644 --- a/stsci.distutils/meta.yaml +++ b/stsci.distutils/meta.yaml @@ -2,29 +2,35 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/embray/stsci.distutils -    license: GPL +    home: https://github.com/spacetelescope/{{ name }} +    license: BSD      summary: stsci.distutils +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - nose -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/stsci.distutils +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - stsci.distutils diff --git a/stsci.image/meta.yaml b/stsci.image/meta.yaml index 93c5da6..7b818cc 100644 --- a/stsci.image/meta.yaml +++ b/stsci.image/meta.yaml @@ -2,18 +2,21 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/stsci.image -    license: GPL +    home: https://github.com/spacetelescope/{{ name }} +    license: BSD      summary: stsci.image +  build:      number: {{ number }}      preserve_egg_dir: 'yes' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -22,16 +25,19 @@ requirements:      - scipy      - stsci.tools      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - scipy      - stsci.tools -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/stsci.image.git +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - stsci.image diff --git a/stsci.imagemanip/meta.yaml b/stsci.imagemanip/meta.yaml index c8bf304..f966a72 100644 --- a/stsci.imagemanip/meta.yaml +++ b/stsci.imagemanip/meta.yaml @@ -2,32 +2,36 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/stsci.imagemanip -    license: GPL +    home: https://github.com/spacetelescope/{{ name }} +    license: BSD      summary: stsci.imagemanip  build:      number: {{ number }}      preserve_egg_dir: 'yes' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1      - stsci.distutils      - stsci.tools      - setuptools -    - numpy x.x +    - numpy      - python x.x      run:      - stsci.tools -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/stsci.imagemanip +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - stsci.imagemanip diff --git a/stsci.imagestats/meta.yaml b/stsci.imagestats/meta.yaml index b879e13..8ab9b02 100644 --- a/stsci.imagestats/meta.yaml +++ b/stsci.imagestats/meta.yaml @@ -2,30 +2,36 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/embray/stsci.imagestats -    license: GPL +    home: https://github.com/spacetelescope/{{ name }} +    license: BSD      summary: stsci.imagestats +  build:      number: {{ number }}      preserve_egg_dir: 'yes' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1      - stsci.distutils      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run: -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/stsci.imagestats +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - stsci.imagestats diff --git a/stsci.ndimage/meta.yaml b/stsci.ndimage/meta.yaml index a233d9c..64b8786 100644 --- a/stsci.ndimage/meta.yaml +++ b/stsci.ndimage/meta.yaml @@ -2,32 +2,38 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/embray/stsci.ndimage -    license: GPL +    home: https://github.com/spacetelescope/{{ name }} +    license: BSD      summary: stsci.ndimage +  build:      number: {{ number }}      preserve_egg_dir: 'yes' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1      - stsci.distutils      - astropy      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/stsci.ndimage +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - stsci.ndimage diff --git a/stsci.numdisplay/meta.yaml b/stsci.numdisplay/meta.yaml index b7dd468..1696a28 100644 --- a/stsci.numdisplay/meta.yaml +++ b/stsci.numdisplay/meta.yaml @@ -2,33 +2,38 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/embray/stsci.numdisplay -    license: GPL +    home: https://github.com/spacetelescope/{{ name }} +    license: BSD      summary: stsci.numdisplay +  build:      number: {{ number }}      preserve_egg_dir: 'yes' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1      - stsci.distutils      - stsci.tools      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - stsci.tools -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: 1.6.2 -    git_url: https://github.com/spacetelescope/stsci.numdisplay +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - stsci.numdisplay diff --git a/stsci.skypac/meta.yaml b/stsci.skypac/meta.yaml index 0b2ea9a..7c9800e 100644 --- a/stsci.skypac/meta.yaml +++ b/stsci.skypac/meta.yaml @@ -2,18 +2,21 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/stsci.skypac +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: stsci.skypac +  build:      number: {{ number }}      preserve_egg_dir: 'yes' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -24,8 +27,9 @@ requirements:      - stsci.tools      - stwcs      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - stsci.imagestats @@ -34,8 +38,10 @@ requirements:      - stwcs      - python x.x      - python x.x +  source: -    git_url: https://github.com/spacetelescope/stsci.skypac +    git_url: https://github.com/spacetelescope/{{ name }} +  test:      imports:      - stsci.skypac diff --git a/stsci.sphere/meta.yaml b/stsci.sphere/meta.yaml index c046385..47e1fe3 100644 --- a/stsci.sphere/meta.yaml +++ b/stsci.sphere/meta.yaml @@ -2,18 +2,21 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: http://www.stsci.edu/institute/software_hardware +    home: https://github.com/spacetelescope/{{ name }}      license: GPL      summary: stsci.sphere +  build:      number: {{ number }}      preserve_egg_dir: 'yes' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -21,15 +24,17 @@ requirements:      - astropy      - matplotlib      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - matplotlib -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: ssh://git@bitbucket.org/stsci_ssb/stsci.sphere +    git_url: ssh://git@bitbucket.org/stsci_ssb/{{ name }}.git  test:      imports:      - stsci.sphere diff --git a/stsci.sphinxext/meta.yaml b/stsci.sphinxext/meta.yaml index 4027bdd..8838182 100644 --- a/stsci.sphinxext/meta.yaml +++ b/stsci.sphinxext/meta.yaml @@ -2,18 +2,21 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/stsci.sphinxext -    license: GPL +    home: https://github.com/spacetelescope/{{ name }} +    license: BSD      summary: stsci.sphinxext +  build:      number: {{ number }}      preserve_egg_dir: 'yes' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -21,11 +24,14 @@ requirements:      - numpydoc      - setuptools      - python x.x +      run:      - numpydoc      - python x.x +  source: -    git_url: https://github.com/spacetelescope/stsci.sphinxext +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - stsci.sphinxext diff --git a/stsci.stimage/meta.yaml b/stsci.stimage/meta.yaml index 52f5565..46507c0 100644 --- a/stsci.stimage/meta.yaml +++ b/stsci.stimage/meta.yaml @@ -2,30 +2,35 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/embray/stsci.stimage -    license: GPL +    home: https://github.com/spacetelescope/{{ name }} +    license: BSD      summary: stsci.stimage +  build:      number: {{ number }}      preserve_egg_dir: 'yes' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1      - stsci.distutils      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run: -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/stsci.stimage +    git_url: https://github.com/spacetelescope/{{ name }}.git  test:      imports:      - stsci.stimage diff --git a/stsci.tools/meta.yaml b/stsci.tools/meta.yaml index a234ee5..bbb9e05 100644 --- a/stsci.tools/meta.yaml +++ b/stsci.tools/meta.yaml @@ -2,18 +2,21 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/embray/stsci.tools -    license: GPL +    home: https://github.com/spacetelescope/{{ name }} +    license: BSD      summary: stsci.tools +  build:      number: {{ number }}      preserve_egg_dir: 'yes' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -21,16 +24,19 @@ requirements:      - astropy      - pytools      - setuptools -    - numpy x.x +    - numpy      - python x.x +      run:      - astropy      - stsci.distutils      - pytools -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/stsci.tools +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - stsci.tools diff --git a/stsci/meta.yaml b/stsci/meta.yaml index 5d9bef9..e1a90e3 100644 --- a/stsci/meta.yaml +++ b/stsci/meta.yaml @@ -2,17 +2,20 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about:      home: http://stsci.edu      license: BSD      summary: stsci meta-package +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      run:      - stsci-hst >=*0.0* @@ -25,5 +28,5 @@ requirements:      - purge_path >=*0.0*      - pyds9 >=*0.0*      - pyfftw >=*0.0* -    - numpy x.x +    - numpy      - python x.x diff --git a/stwcs/meta.yaml b/stwcs/meta.yaml index e26589c..2a053c9 100644 --- a/stwcs/meta.yaml +++ b/stwcs/meta.yaml @@ -2,20 +2,19 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: https://github.com/spacetelescope/{{name}} +    home: https://github.com/spacetelescope/{{ name }}      license: BSD -    summary: | -        WCS based distortion models and coordinate transformation +    summary: WCS based distortion models and coordinate transformation  build: -    number: {{number}} +    number: {{ number }}  package: -    name: {{name}} -    version: {{version}} +    name: {{ name }} +    version: {{ version }}  requirements:      build: @@ -23,16 +22,16 @@ requirements:      - astropy >=1.1      - stsci.tools      - setuptools -    - numpy x.x +    - numpy      - python x.x      run:      - astropy >=1.1      - stsci.tools -    - numpy x.x +    - numpy      - python x.x  source: -    git_url: https://github.com/spacetelescope/{{name}}.git +    git_url: https://github.com/spacetelescope/{{ name }}.git  test:      imports: diff --git a/threading2/meta.yaml b/threading2/meta.yaml index 2616ecf..8a72e6f 100644 --- a/threading2/meta.yaml +++ b/threading2/meta.yaml @@ -3,25 +3,30 @@  {% set number = '0' %}  about: -    home: https://pypi.python.org/packages/source/t/threading2 +    home: https://pypi.python.org/packages/source/t/{{ name }}      license: BSD      summary: threading2 +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x +      run:      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: 4ffb227b9a0e1f3e2a42f69f92a47bae -    url: -    - https://pypi.python.org/packages/source/t/threading2/{{ name }}-{{ version }}.tar.gz +    url: https://pypi.python.org/packages/source/t/threading2/{{ name }}-{{ version }}.tar.gz +  test:      imports:      - threading2 diff --git a/traceback2/meta.yaml b/traceback2/meta.yaml index cf55072..0bce59a 100644 --- a/traceback2/meta.yaml +++ b/traceback2/meta.yaml @@ -3,14 +3,17 @@  {% set number = '0' %}  about: -    home: https://pypi.python.org/packages/source/t/traceback2 +    home: https://pypi.python.org/packages/source/t/{{ name }}      license: BSD      summary: traceback2 +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - pbr @@ -18,16 +21,18 @@ requirements:      - six      - setuptools      - python x.x +      run:      - pbr      - linecache2      - six      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: 9e9723f4d70bfc6308fa992dd193c400 -    url: -    - https://pypi.python.org/packages/source/t/traceback2/{{ name }}-{{ version }}.tar.gz +    url: https://pypi.python.org/packages/source/t/traceback2/{{ name }}-{{ version }}.tar.gz +  test:      imports:      - traceback2 diff --git a/unixodbc/meta.yaml b/unixodbc/meta.yaml index c9e0cb2..2066015 100644 --- a/unixodbc/meta.yaml +++ b/unixodbc/meta.yaml @@ -11,11 +11,11 @@ about:          a predictable API with which to access Data Sources  build: -    number: {{number}} +    number: {{ number }}  package: -    name: {{name}} -    version: {{version}} +    name: {{ name }} +    version: {{ version }}  requirements:      build: diff --git a/verhawk/meta.yaml b/verhawk/meta.yaml index 765f232..e631974 100644 --- a/verhawk/meta.yaml +++ b/verhawk/meta.yaml @@ -5,22 +5,28 @@  {% set number = '0' %}  about: -    home: http://github.com/spacetelescope/verhawk +    home: http://github.com/spacetelescope/{{ name }}      license: BSD      summary: A simple Python package version scanner. +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x +      run:      - python x.x +  source: -    git_url: https://github.com/spacetelescope/verhawk.git +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - verhawk diff --git a/wcstools/meta.yaml b/wcstools/meta.yaml index 65323a5..33d939b 100644 --- a/wcstools/meta.yaml +++ b/wcstools/meta.yaml @@ -3,18 +3,23 @@  {% set number = '0' %}  about: -    home: http://tdc-www.harvard.edu/wcstools +    home: http://tdc-www.harvard.edu/{{ name }}      license: GPL -    summary: 'For setting and using the world coordinate systems (WCS) in the headers of the most common astronomical image formats' +    summary: | +        For setting and using the world coordinate systems (WCS) in the +        headers of the most common astronomical image formats +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      run: +  source:      fn: {{ name }}-{{ version }}.tar.gz -    url: -    - http://tdc-www.harvard.edu/software/wcstools/{{ name }}-{{ version }}.tar.gz +    url: http://tdc-www.harvard.edu/software/wcstools/{{ name }}-{{ version }}.tar.gz diff --git a/webbpsf-data/meta.yaml b/webbpsf-data/meta.yaml index d324d9d..01e366f 100644 --- a/webbpsf-data/meta.yaml +++ b/webbpsf-data/meta.yaml @@ -6,12 +6,14 @@ about:      home: http://www.stsci.edu/~mperrin/software/webbpsf      license: BSD      summary: webbpsf-data data files +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  source:      fn: {{ name }}-{{ version }}.tar.gz -    url: -    - http://www.stsci.edu/~mperrin/software/webbpsf/{{ name }}-{{ version }}.tar.gz +    url: http://www.stsci.edu/~mperrin/software/webbpsf/{{ name }}-{{ version }}.tar.gz diff --git a/webbpsf/meta.yaml b/webbpsf/meta.yaml index 9756e2b..d797e79 100644 --- a/webbpsf/meta.yaml +++ b/webbpsf/meta.yaml @@ -2,7 +2,7 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  # Keep in mind:  #     webbpsf-data is version-locked to prevent older builds from picking @@ -10,20 +10,23 @@  #     need to be updated to reflect it. If there was a better way, I'd do it  about: -    home: https://github.com/mperrin/webbpsf +    home: https://github.com/mperrin/{{ name }}      license: BSD      summary: webbpsf +  build:      number: {{ number }}      preserve_egg_dir: 'True' +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - nose      - astropy -    - numpy x.x +    - numpy      - scipy      - matplotlib      - poppy @@ -32,10 +35,11 @@ requirements:      - webbpsf-data >=0.4.1      - setuptools      - python x.x +      run:      - nose      - astropy -    - numpy x.x +    - numpy      - scipy      - matplotlib      - jwxml @@ -44,8 +48,10 @@ requirements:      - webbpsf-data >=0.4.1      - setuptools      - python x.x +  source: -    git_url: https://github.com/mperrin/webbpsf +    git_url: https://github.com/mperrin/{{ name }}.git +  test:      commands:      - WEBBPSF_PATH=$PREFIX/share/webbpsf-data python -c 'import webbpsf' diff --git a/wfc3tools/meta.yaml b/wfc3tools/meta.yaml index b99563b..49aad6e 100644 --- a/wfc3tools/meta.yaml +++ b/wfc3tools/meta.yaml @@ -2,17 +2,20 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: http:// +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: wfc3tools +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -22,17 +25,19 @@ requirements:      - scipy      - stsci.tools      - setuptools -    - numpy x.x +    - numpy      - python x.x      run:      - stsci.tools      - astropy      - matplotlib -    - numpy x.x +    - numpy      - scipy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/wfc3tools +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - wfc3tools diff --git a/wfpc2tools/meta.yaml b/wfpc2tools/meta.yaml index d0f2033..56e66cf 100644 --- a/wfpc2tools/meta.yaml +++ b/wfpc2tools/meta.yaml @@ -2,17 +2,20 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '0' %} +{% set number = '1' %}  about: -    home: http:// +    home: https://github.com/spacetelescope/{{ name }}      license: BSD      summary: wfpc2tools +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - d2to1 @@ -22,17 +25,19 @@ requirements:      - stsci.imagestats      - stsci.tools      - setuptools -    - numpy x.x +    - numpy      - python x.x      run:      - astropy      - scipy      - stsci.imagestats      - stsci.tools -    - numpy x.x +    - numpy      - python x.x +  source: -    git_url: https://github.com/spacetelescope/wfpc2tools +    git_url: https://github.com/spacetelescope/{{ name }}.git +  test:      imports:      - wfpc2tools diff --git a/ws4py/meta.yaml b/ws4py/meta.yaml index d0d3033..5cec403 100644 --- a/ws4py/meta.yaml +++ b/ws4py/meta.yaml @@ -3,25 +3,30 @@  {% set number = '0' %}  about: -    home: https://pypi.python.org/packages/source/w/ws4py +    home: https://pypi.python.org/packages/source/w/{{ name }}      license: BSD      summary: ws4py +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x +      run:      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: 6b47e33cbd13f5c134b04f2a44a480ad -    url: -    - https://pypi.python.org/packages/source/w/ws4py/{{ name }}-{{ version }}.tar.gz +    url: https://pypi.python.org/packages/source/w/ws4py/{{ name }}-{{ version }}.tar.gz +  test:      imports:      - ws4py diff --git a/xpa/meta.yaml b/xpa/meta.yaml index 4b10d51..479a70c 100644 --- a/xpa/meta.yaml +++ b/xpa/meta.yaml @@ -5,7 +5,7 @@  {% set number = '0' %}  about: -    home: https://github.com/ericmandel/xpa +    home: https://github.com/ericmandel/{{ name }}      license: MIT      summary: Provides seamless communication between many kinds of Unix programs  build: @@ -14,7 +14,7 @@ package:      name: {{ name }}      version: {{ version }}  source: -    git_url: https://github.com/ericmandel/xpa +    git_url: https://github.com/ericmandel/{{ name }}.git  test:      commands:      - test -x `which xpaget` diff --git a/yolk/meta.yaml b/yolk/meta.yaml index e94c159..608e9ca 100644 --- a/yolk/meta.yaml +++ b/yolk/meta.yaml @@ -3,25 +3,29 @@  {% set number = '0' %}  about: -    home: https://pypi.python.org/packages/source/y/yolk +    home: https://pypi.python.org/packages/source/y/{{ name }}      license: BSD      summary: yolk +  build:      number: {{ number }} +  package:      name: {{ name }}      version: {{ version }} +  requirements:      build:      - setuptools      - python x.x +      run:      - python x.x +  source:      fn: {{ name }}-{{ version }}.tar.gz      md5: 10dfabca7a020058436aec9dbad70123 -    url: -    - https://pypi.python.org/packages/source/y/yolk/{{ name }}-{{ version }}.tar.gz +    url: https://pypi.python.org/packages/source/y/yolk/{{ name }}-{{ version }}.tar.gz  test:      commands:      - yolk  | 
