diff options
author | James Turner <jturner@gemini.edu> | 2016-12-01 08:50:57 -0500 |
---|---|---|
committer | James Turner <jturner@gemini.edu> | 2016-12-01 08:50:57 -0500 |
commit | 150c3a4045d7a89a27d61fcd91952e603495c419 (patch) | |
tree | 52527db00a364e108058918214a7b672bad2421a /astroconda-iraf-helpers | |
parent | 70b470a872dd001428b45530e67bd2ac0b195767 (diff) | |
download | astroconda-iraf-150c3a4045d7a89a27d61fcd91952e603495c419.tar.gz |
Use new $iraf/util/make_help to build IRAF help databases, instead of having iraf-help & astroconda-iraf-helpers rely on PyRAF (the latter still has a PyRAF script but the dependency has been removed to avoid pulling in a large number of unnecessary & potentially broken deps when building IRAF packages).
Diffstat (limited to 'astroconda-iraf-helpers')
-rw-r--r-- | astroconda-iraf-helpers/meta.yaml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/astroconda-iraf-helpers/meta.yaml b/astroconda-iraf-helpers/meta.yaml index fb00637..b1f4c8e 100644 --- a/astroconda-iraf-helpers/meta.yaml +++ b/astroconda-iraf-helpers/meta.yaml @@ -1,7 +1,7 @@ about: home: https://github.com/astroconda/astroconda-iraf-helpers license: BSD - summary: Utilities to help build and install AstroConda packages + summary: Utilities to help build and install AstroConda IRAF packages build: binary_relocation: True #detect_binary_files_with_prefix: False [osx] @@ -14,5 +14,9 @@ source: requirements: run: - iraf-core !=2.16.1,>=2.16.UR # conda considers 2.16.1 > 2.16.UR/UR_2.16 - - pyraf + # PyRAF is needed by scripts/make_iraf_help, but we're trying to replace + # that with $iraf/make_help, so these are commented out to avoid pulling in + # masses of unnecessary Python build dependencies for every IRAF package: + # - python x.x # (needed to allow forcing 2.7 on command line) + # - pyraf |