From 4728c61c288cf928d6939d457239e04dc6407c39 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 6 Jul 2015 15:34:52 -0400 Subject: Initial commit --- photutils/photutils.ini | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 photutils/photutils.ini diff --git a/photutils/photutils.ini b/photutils/photutils.ini new file mode 100644 index 0000000..6d994be --- /dev/null +++ b/photutils/photutils.ini @@ -0,0 +1,50 @@ +[cbc_cgi] +local_server: true +local_port: 8888 +local_sources: /srv/conda/sources +protocol: http +url: ${cbc_cgi:protocol}://localhost:${cbc_cgi:local_port} + +[package] +name: photutils +#version: ${environ:GIT_DESCRIBE_TAG}.git +version: {{ environ.get("GIT_DESCRIBE_TAG", "") }}.git + +[about] +home: http://github.com/astropy/${package:name} +license: BSD +summary: ${package:name} + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} +#git_tag: + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + d2to1 + nose + astropy-helpers + astropy + setuptools + python + +run: + astropy-helpers + astropy + setuptools + python + +[cbc_build] +linux: + echo This d2to1 hack is deadly. + pip install --no-deps --upgrade --force d2to1 || exit 1 + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 -- cgit From 1ade8ee00dd326d112d7df41b0ff3d8504c7b286 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 6 Jul 2015 19:00:33 -0400 Subject: Remove unecessary artifact --- photutils/photutils.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/photutils/photutils.ini b/photutils/photutils.ini index 6d994be..5f2dd45 100644 --- a/photutils/photutils.ini +++ b/photutils/photutils.ini @@ -7,7 +7,6 @@ url: ${cbc_cgi:protocol}://localhost:${cbc_cgi:local_port} [package] name: photutils -#version: ${environ:GIT_DESCRIBE_TAG}.git version: {{ environ.get("GIT_DESCRIBE_TAG", "") }}.git [about] -- cgit From eff83040e6a6b6e93d62d17dfe1d2f26ad19d94b Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 6 Jul 2015 19:01:27 -0400 Subject: Initial commit --- asdf-standard/asdf-standard.ini | 49 ++++++++++++++++++++++++++++++++++++ imutils/imutils.ini | 46 +++++++++++++++++++++++++++++++++ poppy/poppy.ini | 56 +++++++++++++++++++++++++++++++++++++++++ pyasdf/pyasdf.ini | 49 ++++++++++++++++++++++++++++++++++++ webbpsf/webbpsf.ini | 56 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 256 insertions(+) create mode 100644 asdf-standard/asdf-standard.ini create mode 100644 imutils/imutils.ini create mode 100644 poppy/poppy.ini create mode 100644 pyasdf/pyasdf.ini create mode 100644 webbpsf/webbpsf.ini diff --git a/asdf-standard/asdf-standard.ini b/asdf-standard/asdf-standard.ini new file mode 100644 index 0000000..9c04f87 --- /dev/null +++ b/asdf-standard/asdf-standard.ini @@ -0,0 +1,49 @@ +[cbc_cgi] +local_server: true +local_port: 8888 +local_sources: /srv/conda/sources +protocol: http +url: ${cbc_cgi:protocol}://localhost:${cbc_cgi:local_port} + +[package] +name: asdf-standard +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0") }}.git + +[about] +home: http://github.com/spacetelescope/${package:name} +license: BSD +summary: ${package:name} + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} +#git_tag: + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + sphinx + #sphinx_bootstrap_theme + jsonschema + pyyaml + mistune + six [py27] + setuptools + python + +run: + nose + astropy + setuptools + python + +[cbc_build] +linux: + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 diff --git a/imutils/imutils.ini b/imutils/imutils.ini new file mode 100644 index 0000000..b2859c5 --- /dev/null +++ b/imutils/imutils.ini @@ -0,0 +1,46 @@ +[cbc_cgi] +local_server: true +local_port: 8888 +local_sources: /srv/conda/sources +protocol: http +url: ${cbc_cgi:protocol}://localhost:${cbc_cgi:local_port} + +[package] +name: imutils +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0") }}.git + +[about] +home: http://github.com/spacetelescope/${package:name} +license: BSD +summary: ${package:name} + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} +#git_tag: + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + nose + astropy-helpers + astropy + setuptools + python + +run: + nose + astropy + setuptools + python + +[cbc_build] +linux: + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 diff --git a/poppy/poppy.ini b/poppy/poppy.ini new file mode 100644 index 0000000..48d2c8d --- /dev/null +++ b/poppy/poppy.ini @@ -0,0 +1,56 @@ +[cbc_cgi] +local_server: true +local_port: 8888 +local_sources: /srv/conda/sources +protocol: http +url: ${cbc_cgi:protocol}://localhost:${cbc_cgi:local_port} + +[package] +name: poppy +version: {{ environ.get("GIT_DESCRIBE_TAG", "") }}.git + +[about] +home: http://github.com/mperrin/${package:name} +license: BSD +summary: ${package:name} + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} +#git_tag: + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + nose + astropy-helpers + astropy + numpy + scipy + matplotlib + six [py27] + mock [py27] + setuptools + python + +run: + nose + astropy + numpy + scipy + matplotlib + six [py27] + mock [py27] + setuptools + python + +[cbc_build] +linux: + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 diff --git a/pyasdf/pyasdf.ini b/pyasdf/pyasdf.ini new file mode 100644 index 0000000..ec88508 --- /dev/null +++ b/pyasdf/pyasdf.ini @@ -0,0 +1,49 @@ +[cbc_cgi] +local_server: true +local_port: 8888 +local_sources: /srv/conda/sources +protocol: http +url: ${cbc_cgi:protocol}://localhost:${cbc_cgi:local_port} + +[package] +name: pyasdf +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0") }}.git + +[about] +home: http://github.com/spacetelescope/${package:name} +license: BSD +summary: ${package:name} + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} +#git_tag: + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + astropy-helpers + astropy + pyyaml + jsonschema + setuptools + python + +run: + astropy-helpers + astropy + pyyaml + jsonschema + setuptools + python + +[cbc_build] +linux: + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 diff --git a/webbpsf/webbpsf.ini b/webbpsf/webbpsf.ini new file mode 100644 index 0000000..74411f9 --- /dev/null +++ b/webbpsf/webbpsf.ini @@ -0,0 +1,56 @@ +[cbc_cgi] +local_server: true +local_port: 8888 +local_sources: /srv/conda/sources +protocol: http +url: ${cbc_cgi:protocol}://localhost:${cbc_cgi:local_port} + +[package] +name: webbpsf +version: {{ environ.get("GIT_DESCRIBE_TAG", "") }}.git + +[about] +home: http://github.com/mperrin/${package:name} +license: BSD +summary: ${package:name} + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} +#git_tag: + +[build] +number: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + nose + astropy-helpers + astropy + numpy + scipy + matplotlib + poppy + six [py27] + setuptools + python + +run: + nose + astropy + numpy + scipy + matplotlib + poppy + six [py27] + setuptools + python + +[cbc_build] +linux: + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 -- cgit