Gentoo Archives: gentoo-commits

From: Benda XU <heroxbd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/root_numpy/
Date: Thu, 08 Oct 2015 07:50:28
Message-Id: 1444290593.4cfe7ba0b8373f99f9d503e93f0a483c01765c9b.heroxbd@gentoo
1 commit: 4cfe7ba0b8373f99f9d503e93f0a483c01765c9b
2 Author: Benda Xu <heroxbd <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 8 03:21:06 2015 +0000
4 Commit: Benda XU <heroxbd <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 8 07:49:53 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cfe7ba0
7
8 dev-python/root_numpy: version bump to 4.4.0.
9
10 Package-Manager: portage-2.2.22
11
12 dev-python/root_numpy/Manifest | 1 +
13 dev-python/root_numpy/root_numpy-4.4.0.ebuild | 36 +++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/dev-python/root_numpy/Manifest b/dev-python/root_numpy/Manifest
17 index 2682c56..6a2bf75 100644
18 --- a/dev-python/root_numpy/Manifest
19 +++ b/dev-python/root_numpy/Manifest
20 @@ -1,3 +1,4 @@
21 DIST root_numpy-3.2.0.tar.gz 316240 SHA256 ff64ebd9c4b8e99703bed8541bbd5f69742da0e442f8ab0833319252a0bf8006 SHA512 da08a33eeb225a57053eafc6247e55fec8c56e231455c255d71d3adfb6119d35d0b41fcf54d5d99690743a525e9d5ecfcde7efe53fb0551e38affa10e336485f WHIRLPOOL d0a105dcc4c03f33d3683fcdebcf8d140e9a6b6ea4fa7f7fcf4773b03dffd4972ff571aeb8c6e85caea09cc4df0fe3e73c9853d980cb0fe944dd7255e07a2e7e
22 DIST root_numpy-3.3.0.tar.gz 359688 SHA256 f658bdecada912aed0b92ea84a2e5a64660b28f1476c2387d1e208237da34e5a SHA512 97a75ed46cdb25ff6f7c680c359cc84cf1a9b0f6204d5ee9e7cf0d1bd0847910be7d0599e9a38df42593c56842d7cf6ecd982c2f3620db5c9162442af59c1acb WHIRLPOOL f03a0cf935e4e3ca55cc1d8752e29a5477f4e13972caa3cbfd09ef6902bf059d592af381d232a100cd3e25453def6e8b2530a0f5cb29333d5523d0159b315f7d
23 DIST root_numpy-3.3.1.tar.gz 361107 SHA256 932de8dea0d1586fe73c07b1a0859032cce4cd122a96c2aa5f4a0d55b8d47097 SHA512 5fe0340c8e0550492b97bde0a75bef4c3b5a302d61090f79e2858b9adf93e0b522dba341a3fb60ca6557d033c429f6c93c1330caf38568a6060ad41e664063e9 WHIRLPOOL 65507c731a53bbc7617a44e2cebb2b6ca11127b6c05d11998b04360fa32ff1cd9f6716bd391331dfdb97307bef08f72bfadf7b65bdc216a8a3090cf505d8a1e6
24 +DIST root_numpy-4.4.0.tar.gz 441522 SHA256 91a153de18cb0b364cd796db5756181987eaf67845356191a39543c0ca1e9ad5 SHA512 24afa043e4bdaa74412c36ff90ee8c1fc411801d9dc394ab5036035924910a7f4f304c5c90f4c5f389aaee9dda07b0b7e25566e68c4da424f1b4d59e6184f5b2 WHIRLPOOL 2bee9256663db1be4b2794221ccf0d7e36ec376b411e1127d9ccebbb3f229dc6c378f48293523fa01ddec131d3b9b318b24ce1a98efc9c3de98cfdd7fbec524a
25
26 diff --git a/dev-python/root_numpy/root_numpy-4.4.0.ebuild b/dev-python/root_numpy/root_numpy-4.4.0.ebuild
27 new file mode 100644
28 index 0000000..a2a71ee
29 --- /dev/null
30 +++ b/dev-python/root_numpy/root_numpy-4.4.0.ebuild
31 @@ -0,0 +1,36 @@
32 +# Copyright 1999-2015 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +
38 +DISTUTILS_SINGLE_IMPL=1
39 +PYTHON_COMPAT=( python2_7 )
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="Interface between ROOT and numpy"
44 +HOMEPAGE="https://github.com/rootpy/root_numpy"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
50 +IUSE="examples test"
51 +
52 +RDEPEND="
53 + dev-python/numpy[${PYTHON_USEDEP}]
54 + sci-physics/root[python,${PYTHON_USEDEP}]"
55 +
56 +DEPEND="${RDEPEND}
57 + test? ( dev-python/nose[${PYTHON_USEDEP}] )"
58 +
59 +python_test() {
60 + cd "${BUILD_DIR}" || die
61 + nosetests -v || die "Testing failed with ${EPYTHON}"
62 +}
63 +
64 +python_install_all() {
65 + use examples && local EXAMPLES=( tutorial/. )
66 + distutils-r1_python_install_all
67 +}