Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/arrayterator: arrayterator-1.0.1.ebuild ChangeLog
Date: Tue, 08 Sep 2009 17:12:59
Message-Id: E1Ml4FV-00060Z-4A@stork.gentoo.org
1 arfrever 09/09/08 17:12:57
2
3 Modified: arrayterator-1.0.1.ebuild ChangeLog
4 Log:
5 Set SUPPORT_PYTHON_ABIS.
6 (Portage version: 14218-svn/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 dev-python/arrayterator/arrayterator-1.0.1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/arrayterator/arrayterator-1.0.1.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/arrayterator/arrayterator-1.0.1.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/arrayterator/arrayterator-1.0.1.ebuild?r1=1.1&r2=1.2
14
15 Index: arrayterator-1.0.1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/arrayterator/arrayterator-1.0.1.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- arrayterator-1.0.1.ebuild 7 Sep 2009 19:03:09 -0000 1.1
22 +++ arrayterator-1.0.1.ebuild 8 Sep 2009 17:12:56 -0000 1.2
23 @@ -1,20 +1,35 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/arrayterator/arrayterator-1.0.1.ebuild,v 1.1 2009/09/07 19:03:09 patrick Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/arrayterator/arrayterator-1.0.1.ebuild,v 1.2 2009/09/08 17:12:56 arfrever Exp $
28 +
29 +EAPI="2"
30 +SUPPORT_PYTHON_ABIS="1"
31
32 inherit distutils
33
34 -DESCRIPTION="This class creates a buffered iterator for reading big arrays in
35 -small contiguous blocks."
36 +DESCRIPTION="This class creates a buffered iterator for reading big arrays in small contiguous blocks."
37 HOMEPAGE="http://pypi.python.org/pypi/arrayterator"
38 -
39 SRC_URI="http://cheeseshop.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz"
40 +
41 LICENSE="MIT"
42 SLOT="0"
43 KEYWORDS="~amd64"
44 -#IUSE="server"
45 IUSE=""
46 -RDEPEND="virtual/python
47 - >=dev-python/numpy-1.0_rc1"
48 +
49 +RDEPEND=">=dev-python/numpy-1.0_rc1"
50 DEPEND="${RDEPEND}
51 >=dev-python/setuptools-0.6_rc3"
52 +RESTRICT_PYTHON_ABIS="3.*"
53 +
54 +src_test() {
55 + cd tests
56 +
57 + testing() {
58 + PYTHONPATH="../build-${PYTHON_ABI}/lib" "$(PYTHON)" -c "import test_stochastic; test_stochastic.test()"
59 + }
60 + python_execute_function testing
61 +}
62 +
63 +pkg_postinst() {
64 + python_mod_optimize arrayterator.py
65 +}
66
67
68
69 1.3 dev-python/arrayterator/ChangeLog
70
71 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/arrayterator/ChangeLog?rev=1.3&view=markup
72 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/arrayterator/ChangeLog?rev=1.3&content-type=text/plain
73 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/arrayterator/ChangeLog?r1=1.2&r2=1.3
74
75 Index: ChangeLog
76 ===================================================================
77 RCS file: /var/cvsroot/gentoo-x86/dev-python/arrayterator/ChangeLog,v
78 retrieving revision 1.2
79 retrieving revision 1.3
80 diff -u -r1.2 -r1.3
81 --- ChangeLog 7 Sep 2009 19:03:09 -0000 1.2
82 +++ ChangeLog 8 Sep 2009 17:12:56 -0000 1.3
83 @@ -1,6 +1,10 @@
84 # ChangeLog for dev-python/arrayterator
85 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
86 -# $Header: /var/cvsroot/gentoo-x86/dev-python/arrayterator/ChangeLog,v 1.2 2009/09/07 19:03:09 patrick Exp $
87 +# $Header: /var/cvsroot/gentoo-x86/dev-python/arrayterator/ChangeLog,v 1.3 2009/09/08 17:12:56 arfrever Exp $
88 +
89 + 08 Sep 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
90 + arrayterator-1.0.1.ebuild:
91 + Set SUPPORT_PYTHON_ABIS.
92
93 *arrayterator-1.0.1 (07 Sep 2009)