diff options
author | James Turner <jturner@gemini.edu> | 2017-03-07 10:59:51 -0500 |
---|---|---|
committer | James Turner <jturner@gemini.edu> | 2017-03-07 10:59:51 -0500 |
commit | 59a5f135c925403fbd525f7cbce93657cde57a5c (patch) | |
tree | 92750b4019bf9dd7ae7f4009c395e599e275047d | |
parent | b5fa3c111e422b1cac75aefbb21cbbd0eb2f50a4 (diff) | |
download | astroconda-iraf-59a5f135c925403fbd525f7cbce93657cde57a5c.tar.gz |
Add a public version of the Gemini meta-package.
-rw-r--r-- | gemini/meta.yaml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gemini/meta.yaml b/gemini/meta.yaml new file mode 100644 index 0000000..a1e22a8 --- /dev/null +++ b/gemini/meta.yaml @@ -0,0 +1,33 @@ +# conda-build --python=x.x --prefix-length=70 gemini +about: + home: http://www.gemini.edu/sciops/data-and-results/processing-software + license: BSD & (for Gemini IRAF) non-commercial use + summary: Collection of Gemini data reduction packages (meta-package) +build: + number: '0' +package: + name: gemini + version: 1.0 +requirements: + # Building this meta-package separately for every python version should + # allow us to generate all its constituent packages by listing them as + # build dependencies here (which also seems to be what stsci does; as long + # as older versions aren't picked up), but it is currently better to build + # python packages explicitly beforehand, to avoid imposing IRAF's 70-char + # path length on them, until such time as that can be defined in meta.yaml + # (also, disco_stu currently won't build in a 70-char path due to some + # texlive path length mismatch). + # build: + # - python x.x + # - iraf.gemini >1 + # # - gemini_python >1 + # - disco_stu >1 + # Let these versions float so users can "update" them individually, but + # avoid picking up internal versions from the gemini channel (the matching + # logic considers numbers greater than letters). + run: + # - python x.x + - iraf.gemini >1 + # - gemini_python >1 + - disco_stu >1 + |