Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/atpy: metadata.xml ChangeLog atpy-0.9.4.ebuild
Date: Thu, 02 Sep 2010 16:35:24
Message-Id: 20100902163517.EF77320051@flycatcher.gentoo.org
1 bicatali 10/09/02 16:35:17
2
3 Added: metadata.xml ChangeLog atpy-0.9.4.ebuild
4 Log:
5 Version bump and moved to the main tree
6
7 (Portage version: 2.2_rc72/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-python/atpy/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/atpy/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/atpy/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>python</herd>
21 <longdescription lang="en">
22 Astronomical Tables in Python (ATpy) is a high-level package
23 providing a way to manipulate tables of astronomical data in a
24 uniform way. A table is defined by any number of columns of data,
25 each characterized by a column name, unit, null value, and
26 description (the last three being optional), and can be supplemented
27 with metadata in the form of keywords or comments. ATpy can be used
28 to manipulate single tables as well as sets of tables. Table formats
29 supported are FITS, VO, IPAC. Database supported are SQLite, MySQL
30 and PostgreSQL.
31 </longdescription>
32 <use>
33 <flag name="fits">
34 Enable support for reading and FITS with <pkg>dev-python/pyfits</pkg>.
35 </flag>
36 <flag name="votable">
37 Enable support for reading and VOTABLE with <pkg>dev-python/vo</pkg>.
38 </flag>
39 </use>
40 </pkgmetadata>
41
42
43
44 1.1 dev-python/atpy/ChangeLog
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/atpy/ChangeLog?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/atpy/ChangeLog?rev=1.1&content-type=text/plain
48
49 Index: ChangeLog
50 ===================================================================
51 # ChangeLog for dev-python/atpy
52 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-python/atpy/ChangeLog,v 1.1 2010/09/02 16:35:17 bicatali Exp $
54
55 *atpy-0.9.4 (02 Sep 2010)
56
57 02 Sep 2010; Sébastien Fabbro <bicatali@g.o> +atpy-0.9.4.ebuild,
58 +metadata.xml:
59 Version bump and moved to the main tree
60
61 *atpy-0.9.3 (02 Aug 2010)
62
63 02 Aug 2010; Kacper Kowalik <xarthisius@g.o> -atpy-0.9.2.ebuild,
64 +atpy-0.9.3.ebuild:
65 Version bump
66
67 25 Jun 2010; Justin Lecher <jlec@g.o> atpy-0.9.2.ebuild:
68 Fix PYTHON ABI Stuff
69
70 *atpy-0.9.2 (12 Feb 2010)
71
72 12 Feb 2010; Sébastien Fabbro <bicatali@g.o> -atpy-0.9.1.ebuild,
73 +atpy-0.9.2.ebuild:
74 Bump
75
76 *atpy-0.9.1 (08 Oct 2009)
77
78 08 Oct 2009; Sébastien Fabbro <bicatali@g.o> -atpy-0.9.0.ebuild,
79 +atpy-0.9.1.ebuild, metadata.xml:
80 Version bump
81
82 *atpy-0.9.0 (21 Jul 2009)
83
84 21 Jul 2009; Sébastien Fabbro <bicatali@g.o> +atpy-0.9.0.ebuild,
85 +metadata.xml:
86 Initial import
87
88
89
90
91 1.1 dev-python/atpy/atpy-0.9.4.ebuild
92
93 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/atpy/atpy-0.9.4.ebuild?rev=1.1&view=markup
94 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/atpy/atpy-0.9.4.ebuild?rev=1.1&content-type=text/plain
95
96 Index: atpy-0.9.4.ebuild
97 ===================================================================
98 # Copyright 1999-2010 Gentoo Foundation
99 # Distributed under the terms of the GNU General Public License v2
100 # $Header: /var/cvsroot/gentoo-x86/dev-python/atpy/atpy-0.9.4.ebuild,v 1.1 2010/09/02 16:35:17 bicatali Exp $
101
102 EAPI="2"
103
104 PYTHON_DEPEND="2:2.6"
105 SUPPORT_PYTHON_ABIS="1"
106
107 inherit distutils
108
109 #DISTUTILS_SRC_TEST="test/test.py"
110 MYPN=ATpy
111 MYP="${MYPN}-${PV}"
112
113 DESCRIPTION="Astronomical tables support Python"
114 HOMEPAGE="http://atpy.sourceforge.net/"
115 SRC_URI="mirror://sourceforge/${PN}/${MYP}.tar.gz"
116
117 RDEPEND="dev-python/numpy
118 dev-python/asciitable
119 fits? ( dev-python/pyfits )
120 hdf5? ( dev-python/h5py )
121 mysql? ( dev-python/mysql-python )
122 postgres? ( dev-db/pygresql )
123 sqlite? ( dev-python/pysqlite )
124 votable? ( dev-python/vo )"
125
126 RESTRICT_PYTHON_ABIS="2.[45] 3.*"
127
128 DEPEND=">=dev-python/numpy-1.3"
129
130 IUSE="+fits hdf5 mysql postgres sqlite +votable"
131 SLOT="0"
132 KEYWORDS="~amd64 ~x86"
133 LICENSE="GPL-3"
134
135 S="${WORKDIR}/${MYP}"