diff options
-rw-r--r-- | drizzle/drizzle.ini | 52 | ||||
-rw-r--r-- | imexam/imexam.ini | 63 | ||||
-rw-r--r-- | pysynphot/pysynphot.ini | 59 | ||||
-rw-r--r-- | python-daemon/python-daemon.ini | 41 |
4 files changed, 215 insertions, 0 deletions
diff --git a/drizzle/drizzle.ini b/drizzle/drizzle.ini new file mode 100644 index 0000000..ac696d2 --- /dev/null +++ b/drizzle/drizzle.ini @@ -0,0 +1,52 @@ +[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: drizzle +version: 0.0.git + +[about] +home: http://github.com/spacetelescope/${package:name} +license: BSD +summary: ${package:name} +readme: README.rst + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} + +[build] +number: 1 + +[requirements] +build: + d2to1 + nose + astropy-helpers + astropy >=1.0 + numpy >=1.6.0 + setuptools + python + +run: + d2to1 + nose + astropy-helpers + astropy >=1.0 + numpy >=1.6.0 + 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 diff --git a/imexam/imexam.ini b/imexam/imexam.ini new file mode 100644 index 0000000..a0ebec1 --- /dev/null +++ b/imexam/imexam.ini @@ -0,0 +1,63 @@ +[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: imexam +version: 0.5.git + +[about] +home: http://github.com/spacetelescope/${package:name} +license: BSD +summary: ${package:name} +readme: README.rst + +[source] +#fn: ${package:name}-${package:version}.tar.gz +#url: ${cbc_cgi:url}/${fn} +git_url: ${about:home} + +[build] +number: 1 + +[requirements] +build: + d2to1 + nose + astropy-helpers + astropy >=1.0 + numpy >=1.6.0 + scipy + cython + matplotlib + ipython + setuptools + mock [py27] + python + +run: + d2to1 + nose + astropy-helpers + astropy >=1.0 + numpy >=1.6.0 + scipy + cython + matplotlib + ipython + mock [py27] + python + +[cbc_build] +linux: + echo This d2to1 hack is deadly. + pip install --no-deps --upgrade --force d2to1 || exit 1 + sed -i -e 's|find-links|#find-links|g' setup.cfg + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 diff --git a/pysynphot/pysynphot.ini b/pysynphot/pysynphot.ini new file mode 100644 index 0000000..2c90541 --- /dev/null +++ b/pysynphot/pysynphot.ini @@ -0,0 +1,59 @@ +[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: pysynphot +version: 0.9.6 + +[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} + +[build] +number: 1 + +[requirements] +build: + d2to1 + nose + stsci.distutils + astropy-helpers + astropy + cython + numpy + pyfits + matplotlib + setuptools + python + +run: + d2to1 + nose + stsci.distutils + astropy-helpers + astropy + cython + pyfits + numpy + matplotlib + 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 diff --git a/python-daemon/python-daemon.ini b/python-daemon/python-daemon.ini new file mode 100644 index 0000000..6b1eab7 --- /dev/null +++ b/python-daemon/python-daemon.ini @@ -0,0 +1,41 @@ +[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: python-daemon +version: 2.0.5 + +[about] +home: http://bitbucket.org/jhunkeler/${package:name} +license: Apache-2 +summary: Library to implement a well-behaved Unix daemon process. + +[source] +fn: ${package:name}-${package:version}.tar.gz +url: https://pypi.python.org/packages/source/p/${package:name}/${fn} +md5: 73e7f49f525c51fa4a995aea4d80de41 + +[build] +number: 1 + +[requirements] +build: + docutils + lockfile + python +run: + lockfile + python + + +[cbc_build] +linux: + python setup.py install || exit 1 + +windows: + python setup.py install + if errorlevel 1 exit 1 |