diff options
-rw-r--r-- | astroconda-iraf-helpers/meta.yaml | 8 | ||||
-rw-r--r-- | iraf/meta.yaml | 6 |
2 files changed, 9 insertions, 5 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 diff --git a/iraf/meta.yaml b/iraf/meta.yaml index e0ac584..a8954d7 100644 --- a/iraf/meta.yaml +++ b/iraf/meta.yaml @@ -1,7 +1,7 @@ about: home: http://iraf.noao.edu license: MIT (and third-party licenses) - summary: Core NOAO IRAF and X11IRAF meta-package (including help) + summary: Core NOAO IRAF and X11IRAF meta-package build: number: '0' package: @@ -15,10 +15,10 @@ requirements: # updating component packages easily etc.). build: - iraf-core ==2.16.UR - - iraf-help ==2.16.UR + # - iraf-help ==2.16.UR - iraf-x11 ==2.0 run: - iraf-core ==2.16.UR # (also pulls in iraf-os-libs) - - iraf-help ==2.16.UR + # - iraf-help ==2.16.UR - iraf-x11 ==2.0 |