diff options
author | James E.H. Turner <jturner@gemini.edu> | 2016-10-26 14:25:44 -0400 |
---|---|---|
committer | James E.H. Turner <jturner@gemini.edu> | 2016-10-26 14:25:44 -0400 |
commit | 634257fb47691d91a9940ef4d37e4a4756900248 (patch) | |
tree | 641583204a06d7d7425778d6f1c36a92f2bd799a /iraf-all | |
parent | b89bd7b30fc12047a99d0ab2380dc86267c938c9 (diff) | |
download | astroconda-iraf-634257fb47691d91a9940ef4d37e4a4756900248.tar.gz |
Meta-package to build/install IRAF, X11IRAF and all our external packages.
Diffstat (limited to 'iraf-all')
-rw-r--r-- | iraf-all/bld.bat | 2 | ||||
-rw-r--r-- | iraf-all/build.sh | 2 | ||||
-rw-r--r-- | iraf-all/meta.yaml | 32 |
3 files changed, 36 insertions, 0 deletions
diff --git a/iraf-all/bld.bat b/iraf-all/bld.bat new file mode 100644 index 0000000..652775c --- /dev/null +++ b/iraf-all/bld.bat @@ -0,0 +1,2 @@ +echo "meta-package" + diff --git a/iraf-all/build.sh b/iraf-all/build.sh new file mode 100644 index 0000000..652775c --- /dev/null +++ b/iraf-all/build.sh @@ -0,0 +1,2 @@ +echo "meta-package" + diff --git a/iraf-all/meta.yaml b/iraf-all/meta.yaml new file mode 100644 index 0000000..c02a1db --- /dev/null +++ b/iraf-all/meta.yaml @@ -0,0 +1,32 @@ +about: + home: http://iraf.noao.edu + license: various (see individual packages) + summary: IRAF, X11IRAF & all the AstroConda external IRAF packages +build: + number: '0' +package: + name: iraf-all + version: "1.0" +requirements: + # Including everything as a build dependency allows using the meta-package + # to rebuild everything, as well as for user installation (but see + # conda-build issue #849 regarding its failure to handle nested dependency + # builds correctly -- the packages are listed in their build order here, + # in the hope of circumventing that problem). + build: + - iraf !=2.16.1,>=2.16.UR # (meta package including X11IRAF) + - iraf.fitsutil + - iraf.tables + - iraf.stsdas + - iraf.gemini + - iraf.stecf + # For public use, these need to be floating version numbers, to allow + # updating constituent packages easily: + run: + - iraf !=2.16.1,>=2.16.UR # (meta package including X11IRAF) + - iraf.fitsutil + - iraf.tables + - iraf.stsdas + - iraf.gemini + - iraf.stecf + |