From b43c07f68bf7ee7d2d729a0299a41687d538ac44 Mon Sep 17 00:00:00 2001 From: James Turner Date: Thu, 23 Feb 2017 11:48:32 -0300 Subject: Rename gemini.disco_stu to disco_stu, for consistency with the python package (until such time as we actually use a namespace package). --- disco_stu/bld.bat | 3 +++ disco_stu/build.sh | 6 ++++++ disco_stu/meta.yaml | 28 ++++++++++++++++++++++++++++ 3 files changed, 37 insertions(+) create mode 100644 disco_stu/bld.bat create mode 100644 disco_stu/build.sh create mode 100644 disco_stu/meta.yaml (limited to 'disco_stu') 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) + -- cgit