diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-05-23 08:26:54 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-05-23 08:26:54 +0000 |
commit | 6eedc5c5cb431877cf624d152de04f1dec897e88 (patch) | |
tree | 3d3f7c27d66207b3c857ed6aa418166574b2e8f2 /packages/python | |
parent | 2bdd31c44c61561d5ffff2c4f469ffe05a53ef02 (diff) |
We need more python applications... add pyfits 1.0.1 and pyraf 1.2.1:
PyFITS provides an interface to FITS formatted files under the Python scripting language and PyRAF, the Python-based interface to IRAF. It is useful
both for interactive data analysis and for writing analysis scripts in Python using FITS files as either input or output. PyFITS is a development
project of the Science Software Branch at the Space Telescope Science Institute.
Diffstat (limited to 'packages/python')
-rw-r--r-- | packages/python/python-pyfits_1.0.1.bb | 13 | ||||
-rw-r--r-- | packages/python/python-pyraf_1.2.1.bb | 14 |
2 files changed, 27 insertions, 0 deletions
diff --git a/packages/python/python-pyfits_1.0.1.bb b/packages/python/python-pyfits_1.0.1.bb new file mode 100644 index 0000000000..1d1507d406 --- /dev/null +++ b/packages/python/python-pyfits_1.0.1.bb @@ -0,0 +1,13 @@ +DESCRIPTION = "PyFITS provides an interface to FITS formatted files under the Python scripting language." +HOMEPAGE = "http://www.stsci.edu/resources/software_hardware/pyfits" +AUTHOR = "Space Telescope Science Institute" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de" +RDEPENDS = "python-numarray" +SECTION = "devel/python" +LICENSE = "AURA" +PR = "ml0" + +SRC_URI = "ftp://ra.stsci.edu/pub/pyfits/pyfits-${PV}.tar.gz" +S = "${WORKDIR}/pyfits-${PV}" + +inherit distutils diff --git a/packages/python/python-pyraf_1.2.1.bb b/packages/python/python-pyraf_1.2.1.bb new file mode 100644 index 0000000000..2242390853 --- /dev/null +++ b/packages/python/python-pyraf_1.2.1.bb @@ -0,0 +1,14 @@ +DESCRIPTION = "PyRAF is a Python-based interface to IRAF." +HOMEPAGE = "http://www.stsci.edu/resources/software_hardware/pyfits" +AUTHOR = "Space Telescope Science Institute" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de" +RDEPENDS = "python-numarray" +SECTION = "devel/python" +LICENSE = "AURA" +PR = "ml0" + +SRC_URI = "ftp://ra.stsci.edu/pub/pyraf/v2.3/pyraf-${PV}.tar.gz" +S = "${WORKDIR}/pyraf-${PV}" + +inherit distutils + |