diff options
-rw-r--r-- | deprecated/astropy-helpers/astropy-helpers.ini | 36 | ||||
-rw-r--r-- | deprecated/astropy/astropy.ini | 42 | ||||
-rw-r--r-- | lapack/lapack.ini | 50 | ||||
-rw-r--r-- | pyraf/pyraf.ini | 51 |
4 files changed, 179 insertions, 0 deletions
diff --git a/deprecated/astropy-helpers/astropy-helpers.ini b/deprecated/astropy-helpers/astropy-helpers.ini new file mode 100644 index 0000000..31e01b1 --- /dev/null +++ b/deprecated/astropy-helpers/astropy-helpers.ini @@ -0,0 +1,36 @@ +[package] +name: astropy-helpers +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}.git + +[about] +home: https://github.com/astropy/${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: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + python + setuptools + numpy +run: + python + numpy + + +[cbc_build] +linux: + python setup.py install || exit 1 + + +windows: + python setup.py install + if errorlevel 1 exit 1 diff --git a/deprecated/astropy/astropy.ini b/deprecated/astropy/astropy.ini new file mode 100644 index 0000000..83eebb0 --- /dev/null +++ b/deprecated/astropy/astropy.ini @@ -0,0 +1,42 @@ +[package] +name: astropy +version: {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}.git + +[about] +home: https://github.com/astropy/${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: {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} + +[requirements] +build: + jinja2 + astropy-helpers + cython + setuptools + numpy + python + +run: + jinja2 + cython + astropy-helpers + numpy + python + + +[cbc_build] +linux: + python setup.py install --offline || exit 1 + +windows: + python setup.py install --offline + if errorlevel 1 exit 1 diff --git a/lapack/lapack.ini b/lapack/lapack.ini new file mode 100644 index 0000000..8b9abae --- /dev/null +++ b/lapack/lapack.ini @@ -0,0 +1,50 @@ +[package] +name : lapack +version : 3.6.0 + +[about] +home : http://www.netlib.org +license : BSD +summary : ${package:name} + +[source] +fn : ${package:name}-${package:version}.tgz +url : ${about:home}/${package:name}/${fn} + +[build] +number : 0 + +[requirements] +build : + cmake + +[test] +imports : + +commands : + + +[cbc_build] +linux : + + mkdir BUILD_DIR + cd BUILD_DIR + cmake \ + -DCMAKE_INSTALL_PREFIX=$$PREFIX \ + -DBUILD_TESTING=OFF \ + -DBUILD_SHARED_LIBS=ON \ + -DLAPACKE=ON \ + .. + + make -j$${CPU_COUNT} + make install + +windows : + + mkdir BUILD_DIR + cd BUILD_DIR + cmake -DCMAKE_INSTALL_PREFIX=%PREFIX% + # There's PROBABLY more to this on windows + make + make install + diff --git a/pyraf/pyraf.ini b/pyraf/pyraf.ini new file mode 100644 index 0000000..0df7135 --- /dev/null +++ b/pyraf/pyraf.ini @@ -0,0 +1,51 @@ +[package] +name : pyraf +version : 2.1.10 + +[about] +home : https://pypi.python.org/packages/source/p/${package:name} +license : BSD +summary : ${package:name} + +[source] +fn : ${package:name}-${package:version}.tar.gz +url : ${about:home}/${fn} +md5 : 221aed9d6af6377118ffd22f544e7f4b + +[build] +number : 0 + +[requirements] +build : + d2to1 + astropy + stsci.distutils + stsci.tools + setuptools + python +run : + astropy + stsci.distutils + stsci.tools + python + +[test] +imports : + +commands : + + +[cbc_build] +linux : + #d2to1 hack active + pip install --no-deps --upgrade --force d2to1 || exit 1 + + python setup.py install || exit 1 +windows : + # d2to1 hack active + pip install --no-deps --upgrade --force d2to1 + if errorlevel 1 exit 1 + + python setup.py install + if errorlevel 1 exit 1 + |