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_sqlite/
Date: Wed, 23 Nov 2011 04:15:09
Message-Id: a93d1f651861b6ed1f1a76d47f0b9dd03ca1fa0a.timcera@gentoo
1 commit: a93d1f651861b6ed1f1a76d47f0b9dd03ca1fa0a
2 Author: timcera <tim <AT> cerazone <DOT> net>
3 AuthorDate: Wed Nov 23 02:58:17 2011 +0000
4 Commit: Tim Cera <timcera <AT> earthlink <DOT> net>
5 CommitDate: Wed Nov 23 02:58:17 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=a93d1f65
7
8 sci-geosciences/pydap_handlers_sqlite: Initial build.
9
10 ---
11 sci-geosciences/pydap_handlers_sqlite/ChangeLog | 10 ++++++
12 sci-geosciences/pydap_handlers_sqlite/metadata.xml | 13 ++++++++
13 .../pydap_handlers_sqlite-0.1.0.ebuild | 31 ++++++++++++++++++++
14 3 files changed, 54 insertions(+), 0 deletions(-)
15
16 diff --git a/sci-geosciences/pydap_handlers_sqlite/ChangeLog b/sci-geosciences/pydap_handlers_sqlite/ChangeLog
17 new file mode 100644
18 index 0000000..c8d0b24
19 --- /dev/null
20 +++ b/sci-geosciences/pydap_handlers_sqlite/ChangeLog
21 @@ -0,0 +1,10 @@
22 +# ChangeLog for sci-geosciences/pydap_handlers_sqlite
23 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
24 +# $Header: $
25 +
26 +*pydap_handlers_sqlite-0.1.0 (23 Nov 2011)
27 +
28 + 23 Nov 2011; Tim Cera <tim@××××××××.net> +pydap_handlers_sqlite-0.1.0.ebuild,
29 + +metadata.xml:
30 + Initial build.
31 +
32
33 diff --git a/sci-geosciences/pydap_handlers_sqlite/metadata.xml b/sci-geosciences/pydap_handlers_sqlite/metadata.xml
34 new file mode 100644
35 index 0000000..bf6011f
36 --- /dev/null
37 +++ b/sci-geosciences/pydap_handlers_sqlite/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>timcera@×××××××××.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_sqlite allows Pydap server to serve data from SQLite files.
50 +</longdescription>
51 +</pkgmetadata>
52
53 diff --git a/sci-geosciences/pydap_handlers_sqlite/pydap_handlers_sqlite-0.1.0.ebuild b/sci-geosciences/pydap_handlers_sqlite/pydap_handlers_sqlite-0.1.0.ebuild
54 new file mode 100644
55 index 0000000..dc74dbc
56 --- /dev/null
57 +++ b/sci-geosciences/pydap_handlers_sqlite/pydap_handlers_sqlite-0.1.0.ebuild
58 @@ -0,0 +1,31 @@
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="Handler for Pydap server that allows serving data from SQLite files"
75 +HOMEPAGE="http://pydap.org/handlers.html#sqlite"
76 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
77 +
78 +LICENSE="pydap"
79 +SLOT="0"
80 +KEYWORDS="~amd64"
81 +IUSE=""
82 +
83 +DEPEND=">=dev-python/setuptools-0.6_rc3"
84 +RDEPEND="
85 + >=sci-geosciences/pydap-3.0
86 + >=dev-python/simplejson-2.1.6
87 + >=dev-python/numpy-1.5.1"
88 +
89 +S="$WORKDIR/$MY_P"