diff options
author | Tim Cera <tcera@wanderer2.(none)> | 2010-01-23 19:54:12 -0500 |
---|---|---|
committer | Tim Cera <tcera@wanderer2.(none)> | 2010-01-23 19:54:12 -0500 |
commit | ce75d3b0d9d2efc7239698759bbf5d023ee0e310 (patch) | |
tree | 90abf6bebddcf358ff1d94371a486245368af7c2 /sci-geosciences | |
parent | dev-python/coards: Initial ebuild. Converts from COARDS time (days since (diff) | |
download | sci-ce75d3b0d9d2efc7239698759bbf5d023ee0e310.tar.gz sci-ce75d3b0d9d2efc7239698759bbf5d023ee0e310.tar.bz2 sci-ce75d3b0d9d2efc7239698759bbf5d023ee0e310.zip |
sci-geosciences/pydap: Initial ebuild.
Diffstat (limited to 'sci-geosciences')
-rw-r--r-- | sci-geosciences/pydap/ChangeLog | 10 | ||||
-rw-r--r-- | sci-geosciences/pydap/Manifest | 3 | ||||
-rw-r--r-- | sci-geosciences/pydap/metadata.xml | 12 | ||||
-rw-r--r-- | sci-geosciences/pydap/pydap-3.0_rc8.ebuild | 53 |
4 files changed, 78 insertions, 0 deletions
diff --git a/sci-geosciences/pydap/ChangeLog b/sci-geosciences/pydap/ChangeLog new file mode 100644 index 000000000..c0d27a4c8 --- /dev/null +++ b/sci-geosciences/pydap/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for sci-geosciences/pydap +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*pydap-3.0_rc8 (24 Jan 2010) + + 24 Jan 2010; Tim Cera <timcera@earthlink.net> +pydap-3.0_rc8.ebuild, + +metadata.xml: + Initial ebuild. + diff --git a/sci-geosciences/pydap/Manifest b/sci-geosciences/pydap/Manifest new file mode 100644 index 000000000..47af7fda3 --- /dev/null +++ b/sci-geosciences/pydap/Manifest @@ -0,0 +1,3 @@ +DIST Pydap-3.0.rc.8.tar.gz 3058436 RMD160 be3ae12c6461b4278e37722948be35f34e2cca93 SHA1 90e158b6febad07bf26d1f01a4ed123e1b09799b SHA256 ad23dc79a20c9f50c968231c1ce1719af27db541e54955d2f5b16fd0b69262bb +EBUILD pydap-3.0_rc8.ebuild 977 RMD160 355f64de9fe496de1535cdddf25248fe7c80363c SHA1 f093560bea7cd26f1b3c2371a22f1ca30f62bb69 SHA256 9114b6e421cc99673634078059665b21ebf107e58c99ebe54fb25531d9ad297c +MISC metadata.xml 359 RMD160 3621d399ddf36be2ef28cc3d03f6cef8685dd940 SHA1 df37af9d4b1c0561684f92f9dd741b39c08c5c4a SHA256 b5424bbaab4a3c781b0297a85ebc49fd9c73bd8ca61ba19810aea7c6222ffd4b diff --git a/sci-geosciences/pydap/metadata.xml b/sci-geosciences/pydap/metadata.xml new file mode 100644 index 000000000..59facf04e --- /dev/null +++ b/sci-geosciences/pydap/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>sci</herd> +<maintainer> +<email>timcera@earthlink.net</email> +<name>Tim Cera</name> +</maintainer> +<longdescription lang="en"> +Pydap is a pure Python library implementing the Data Access Protocol. +</longdescription> +</pkgmetadata> diff --git a/sci-geosciences/pydap/pydap-3.0_rc8.ebuild b/sci-geosciences/pydap/pydap-3.0_rc8.ebuild new file mode 100644 index 000000000..501492cce --- /dev/null +++ b/sci-geosciences/pydap/pydap-3.0_rc8.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit distutils + +MY_PN=${PN/pydap/Pydap} + +MY_P=${P/pydap/Pydap} +MY_P=${MY_P/_rc/.rc.} + +DESCRIPTION="Data Access Protocol client and server." +HOMEPAGE="http://pydap.org" + +SRC_URI="http://pypi.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=">=dev-python/setuptools-0.6_rc3" +RDEPEND="virtual/python + >=dev-python/numpy-1.2.1 + >=dev-python/httplib2-0.4.0 + >=dev-python/genshi-0.5.1 + >=dev-python/paste-1.7.2 + >=dev-python/pastescript-1.7.2 + >=dev-python/pastedeploy-1.3.3 + >=dev-python/coards-0.2.2 + >=dev-python/arrayterator-1.0.1 + >=dev-python/cheetah-2.0_rc6" + +S="$WORKDIR/$MY_P" + +# From the requires.txt file in the egg. +# numpy +# httplib2>=0.4.0 +# Genshi +# Paste +# PasteScript +# PasteDeploy +# +# [test] +# nose +# wsgi_intercept +# +# [docs] +# Paver +# Sphinx +# Pygments +# coards + |