aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunk@stsci.edu>2015-12-11 00:30:53 -0500
committerJoseph Hunkeler <jhunk@stsci.edu>2015-12-11 00:30:53 -0500
commit633dde17b85e7ccd27e86f67d603ba432e2f6735 (patch)
tree27ecde8e692d178cb4a31e5940a7c8b6bbdfce6b
parentbc81b8a5be22f46863f347c2df0dea793593de7e (diff)
downloadcbc-recipes-633dde17b85e7ccd27e86f67d603ba432e2f6735.tar.gz
Recommit astropy recipes to deprecated directory
-rw-r--r--deprecated/astropy-helpers/astropy-helpers.ini36
-rw-r--r--deprecated/astropy/astropy.ini42
2 files changed, 78 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