Gentoo Archives: gentoo-commits

From: Tim Cera <timcera@×××××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-geosciences/pydap_handlers_hdf5/
Date: Tue, 22 Nov 2011 02:15:28
Message-Id: 9bc0f1664bd57557cac33250b0b977ddef24e98d.timcera@gentoo
1 commit: 9bc0f1664bd57557cac33250b0b977ddef24e98d
2 Author: timcera <tim <AT> cerazone <DOT> net>
3 AuthorDate: Tue Nov 22 02:14:13 2011 +0000
4 Commit: Tim Cera <timcera <AT> earthlink <DOT> net>
5 CommitDate: Tue Nov 22 02:14:13 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9bc0f166
7
8 sci-geosciences/pydap_handlers_hdf5: Initial ebuild
9
10 ---
11 sci-geosciences/pydap_handlers_hdf5/ChangeLog | 10 ++++++
12 sci-geosciences/pydap_handlers_hdf5/metadata.xml | 13 ++++++++
13 .../pydap_handlers_hdf5-0.1.4.ebuild | 33 ++++++++++++++++++++
14 3 files changed, 56 insertions(+), 0 deletions(-)
15
16 diff --git a/sci-geosciences/pydap_handlers_hdf5/ChangeLog b/sci-geosciences/pydap_handlers_hdf5/ChangeLog
17 new file mode 100644
18 index 0000000..2d2cd2d
19 --- /dev/null
20 +++ b/sci-geosciences/pydap_handlers_hdf5/ChangeLog
21 @@ -0,0 +1,10 @@
22 +# ChangeLog for sci-geosciences/pydap_handlers_hdf5
23 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
24 +# $Header: $
25 +
26 +*pydap_handlers_hdf5-0.1.4 (21 Nov 2011)
27 +
28 + 21 Nov 2011; Tim Cera <tim@××××××××.net> +pydap_handlers_hdf5-0.1.4.ebuild,
29 + +metadata.xml:
30 + Initial ebuild.
31 +
32
33 diff --git a/sci-geosciences/pydap_handlers_hdf5/metadata.xml b/sci-geosciences/pydap_handlers_hdf5/metadata.xml
34 new file mode 100644
35 index 0000000..08ae8fd
36 --- /dev/null
37 +++ b/sci-geosciences/pydap_handlers_hdf5/metadata.xml
38 @@ -0,0 +1,13 @@
39 +<?xml version="1.0" encoding="UTF-8"?>
40 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
41 +<pkgmetadata>
42 +<herd>sci</herd>
43 +<maintainer>
44 +<email>tim@××××××××.net</email>
45 +<name>Tim Cera</name>
46 +</maintainer>
47 +<longdescription lang="en">
48 + Pydap is a pure Python library implementing the Data Access Protocol.
49 + pydap_handlers_hdf5 allows Pydap server to serve hdf5 formatted files.
50 +</longdescription>
51 +</pkgmetadata>
52
53 diff --git a/sci-geosciences/pydap_handlers_hdf5/pydap_handlers_hdf5-0.1.4.ebuild b/sci-geosciences/pydap_handlers_hdf5/pydap_handlers_hdf5-0.1.4.ebuild
54 new file mode 100644
55 index 0000000..572e8f1
56 --- /dev/null
57 +++ b/sci-geosciences/pydap_handlers_hdf5/pydap_handlers_hdf5-0.1.4.ebuild
58 @@ -0,0 +1,33 @@
59 +# Copyright 1999-2011 Gentoo Foundation
60 +# Distributed under the terms of the GNU General Public License v2
61 +# $Header: $
62 +
63 +EAPI="3"
64 +
65 +PYTHON_DEPEND="2"
66 +SUPPORT_PYTHON_ABIS="1"
67 +RESTRICT_PYTHON_ABIS="3.*"
68 +
69 +inherit distutils
70 +
71 +MY_PN=${PN//_/.}
72 +MY_P=${P//_/.}
73 +
74 +DESCRIPTION="HDF5 file handler for Pydap Data Access Protocol server."
75 +HOMEPAGE="http://pydap.org/"
76 +
77 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
78 +
79 +LICENSE="pydap"
80 +SLOT="0"
81 +KEYWORDS="~amd64"
82 +IUSE=""
83 +
84 +DEPEND=">=dev-python/setuptools-0.6_rc3"
85 +RDEPEND="
86 + >=sci-geosciences/pydap-3.0
87 + >=dev-python/pupynere-1.0.8
88 + >=dev-python/arrayterator-1.0.1
89 + >=dev-python/h5py-2.0"
90 +
91 +S="${WORKDIR}/${MY_P}"