diff options
author | James Turner <jturner@gemini.edu> | 2017-02-23 09:48:32 -0500 |
---|---|---|
committer | James Turner <jturner@gemini.edu> | 2017-02-23 09:48:32 -0500 |
commit | b43c07f68bf7ee7d2d729a0299a41687d538ac44 (patch) | |
tree | 48893bdefe6c86872a4f62e930cb6d1d7643d3da /disco_stu | |
parent | 3e691e50f50cca830fd0243a807415d7f85fb8a8 (diff) | |
download | astroconda-iraf-b43c07f68bf7ee7d2d729a0299a41687d538ac44.tar.gz |
Rename gemini.disco_stu to disco_stu, for consistency with the python package (until such time as we actually use a namespace package).
Diffstat (limited to 'disco_stu')
-rw-r--r-- | disco_stu/bld.bat | 3 | ||||
-rw-r--r-- | disco_stu/build.sh | 6 | ||||
-rw-r--r-- | disco_stu/meta.yaml | 28 |
3 files changed, 37 insertions, 0 deletions
diff --git a/disco_stu/bld.bat b/disco_stu/bld.bat new file mode 100644 index 0000000..fa5316a --- /dev/null +++ b/disco_stu/bld.bat @@ -0,0 +1,3 @@ + +echo Not supported on Windows +exit 1
\ No newline at end of file diff --git a/disco_stu/build.sh b/disco_stu/build.sh new file mode 100644 index 0000000..ee4a3eb --- /dev/null +++ b/disco_stu/build.sh @@ -0,0 +1,6 @@ +(cd doc/ && make html && make latexpdf) || exit 1 + +python setup.py install || exit 1 + +cp -p LICENSE ${PREFIX}/share/disco_stu/ + diff --git a/disco_stu/meta.yaml b/disco_stu/meta.yaml new file mode 100644 index 0000000..ffaff7b --- /dev/null +++ b/disco_stu/meta.yaml @@ -0,0 +1,28 @@ +about: + home: http://www.gemini.edu/sciops/data-and-results/processing-software + license: BSD + license_file: LICENSE + summary: Gemini Distortion Correction and Stacking Utility (for GSAOI) +build: + binary_relocation: True + number: '2' +package: + name: disco_stu + version: "1.3.4.dev" +source: + # fn: disco_stu-1.3.4.tar.gz + # url: http://www.gemini.edu/sciops/data/software/disco_stu-1.3.4.tar.gz + git_url: git@gitlab.gemini.edu:DRSoftware/disco_stu.git + git_tag: v1.3.4 +requirements: + build: + - python x.x # syntax needed to build for each python ver. + - sphinx + - texlive # (from astroconda-gemini-internal) + run: + - python x.x # (OrderedDict & argparse require >=2.7) + - numpy >=1.9 # (version tested, from the manual) + - scipy >=0.14 # (to match the NumPy requirement) + - astropy >=1.0 # (from the manual) + - sextractor >=2.8.6 # (from the manual) + |