diff options
author | Benda Xu <heroxbd@gentoo.org> | 2015-10-08 12:21:06 +0900 |
---|---|---|
committer | Benda Xu <heroxbd@gentoo.org> | 2015-10-08 16:49:53 +0900 |
commit | 4cfe7ba0b8373f99f9d503e93f0a483c01765c9b (patch) | |
tree | eaeb15ba7c1df16dbe30cf74b81980324251f1e1 /dev-python/root_numpy | |
parent | clean old (diff) | |
download | gentoo-4cfe7ba0b8373f99f9d503e93f0a483c01765c9b.tar.gz gentoo-4cfe7ba0b8373f99f9d503e93f0a483c01765c9b.tar.bz2 gentoo-4cfe7ba0b8373f99f9d503e93f0a483c01765c9b.zip |
dev-python/root_numpy: version bump to 4.4.0.
Package-Manager: portage-2.2.22
Diffstat (limited to 'dev-python/root_numpy')
-rw-r--r-- | dev-python/root_numpy/Manifest | 1 | ||||
-rw-r--r-- | dev-python/root_numpy/root_numpy-4.4.0.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/root_numpy/Manifest b/dev-python/root_numpy/Manifest index 2682c5608c64..6a2bf75e4f46 100644 --- a/dev-python/root_numpy/Manifest +++ b/dev-python/root_numpy/Manifest @@ -1,3 +1,4 @@ DIST root_numpy-3.2.0.tar.gz 316240 SHA256 ff64ebd9c4b8e99703bed8541bbd5f69742da0e442f8ab0833319252a0bf8006 SHA512 da08a33eeb225a57053eafc6247e55fec8c56e231455c255d71d3adfb6119d35d0b41fcf54d5d99690743a525e9d5ecfcde7efe53fb0551e38affa10e336485f WHIRLPOOL d0a105dcc4c03f33d3683fcdebcf8d140e9a6b6ea4fa7f7fcf4773b03dffd4972ff571aeb8c6e85caea09cc4df0fe3e73c9853d980cb0fe944dd7255e07a2e7e DIST root_numpy-3.3.0.tar.gz 359688 SHA256 f658bdecada912aed0b92ea84a2e5a64660b28f1476c2387d1e208237da34e5a SHA512 97a75ed46cdb25ff6f7c680c359cc84cf1a9b0f6204d5ee9e7cf0d1bd0847910be7d0599e9a38df42593c56842d7cf6ecd982c2f3620db5c9162442af59c1acb WHIRLPOOL f03a0cf935e4e3ca55cc1d8752e29a5477f4e13972caa3cbfd09ef6902bf059d592af381d232a100cd3e25453def6e8b2530a0f5cb29333d5523d0159b315f7d DIST root_numpy-3.3.1.tar.gz 361107 SHA256 932de8dea0d1586fe73c07b1a0859032cce4cd122a96c2aa5f4a0d55b8d47097 SHA512 5fe0340c8e0550492b97bde0a75bef4c3b5a302d61090f79e2858b9adf93e0b522dba341a3fb60ca6557d033c429f6c93c1330caf38568a6060ad41e664063e9 WHIRLPOOL 65507c731a53bbc7617a44e2cebb2b6ca11127b6c05d11998b04360fa32ff1cd9f6716bd391331dfdb97307bef08f72bfadf7b65bdc216a8a3090cf505d8a1e6 +DIST root_numpy-4.4.0.tar.gz 441522 SHA256 91a153de18cb0b364cd796db5756181987eaf67845356191a39543c0ca1e9ad5 SHA512 24afa043e4bdaa74412c36ff90ee8c1fc411801d9dc394ab5036035924910a7f4f304c5c90f4c5f389aaee9dda07b0b7e25566e68c4da424f1b4d59e6184f5b2 WHIRLPOOL 2bee9256663db1be4b2794221ccf0d7e36ec376b411e1127d9ccebbb3f229dc6c378f48293523fa01ddec131d3b9b318b24ce1a98efc9c3de98cfdd7fbec524a diff --git a/dev-python/root_numpy/root_numpy-4.4.0.ebuild b/dev-python/root_numpy/root_numpy-4.4.0.ebuild new file mode 100644 index 000000000000..a2a71eee707e --- /dev/null +++ b/dev-python/root_numpy/root_numpy-4.4.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DISTUTILS_SINGLE_IMPL=1 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Interface between ROOT and numpy" +HOMEPAGE="https://github.com/rootpy/root_numpy" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="examples test" + +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + sci-physics/root[python,${PYTHON_USEDEP}]" + +DEPEND="${RDEPEND} + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +python_test() { + cd "${BUILD_DIR}" || die + nosetests -v || die "Testing failed with ${EPYTHON}" +} + +python_install_all() { + use examples && local EXAMPLES=( tutorial/. ) + distutils-r1_python_install_all +} |