diff options
author | Marius Brehler <marbre@linux.sungazer.de> | 2016-05-23 12:15:03 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-05-29 16:52:54 +0200 |
commit | 73ca5ed11d85f009869089702a222f31373e65b6 (patch) | |
tree | f6f1819a9db17f5dfb00172822c7c41f3b22b128 /dev-python/ipywidgets | |
parent | dev-python/widgetsnbextension: New package, required by ipywidgets-5.* (diff) | |
download | gentoo-73ca5ed11d85f009869089702a222f31373e65b6.tar.gz gentoo-73ca5ed11d85f009869089702a222f31373e65b6.tar.bz2 gentoo-73ca5ed11d85f009869089702a222f31373e65b6.zip |
dev-python/ipywidgets: Version bump to 5.1.4
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-python/ipywidgets')
-rw-r--r-- | dev-python/ipywidgets/Manifest | 1 | ||||
-rw-r--r-- | dev-python/ipywidgets/ipywidgets-5.1.4.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/ipywidgets/Manifest b/dev-python/ipywidgets/Manifest index 4905000a44c3..e478b13be153 100644 --- a/dev-python/ipywidgets/Manifest +++ b/dev-python/ipywidgets/Manifest @@ -1 +1,2 @@ DIST ipywidgets-4.1.1.tar.gz 321646 SHA256 ceeb325e45ade9537c2d115fed9d522e5c6e90bb161592e2f0807375dc661028 SHA512 53b18ae432f72d3305333e92f488f62bb36f83d37fab59e4d103fb77a7ee266d03b96e6de4ffcc2a0f67d6fd892ed1d984c0b188d6cbd527ff3e950e885a5fe4 WHIRLPOOL e1ccb54416bd48fa451cd84f818595dcbe907a3bda79935d884b6f1f226167559cc24f1390d35f8b9a1e3a9af07da5c755c05e93729e27573d030d7ba2def3c3 +DIST ipywidgets-5.1.4.tar.gz 2471342 SHA256 0e5c105a88395e472d667bcc6f1dcb4244050f0dfd2e60f06ce765193d068226 SHA512 29b5a44f4edfd3b2f2dd5895fc22f1ea972a529fb395bc4fb470b029439096fe8c51a0586f469974ab67d381e58e399c740c3ba392cfcd2672c408400cf80426 WHIRLPOOL 4541e7288ec00f3391ae4eb8a254b01beaf85dc9209c18083158264fd0fa513e1a9ce3ac944082814791a3a2fcd1429db389eebcf901eed824fefaec049ed428 diff --git a/dev-python/ipywidgets/ipywidgets-5.1.4.ebuild b/dev-python/ipywidgets/ipywidgets-5.1.4.ebuild new file mode 100644 index 000000000000..d2afad877b7c --- /dev/null +++ b/dev-python/ipywidgets/ipywidgets-5.1.4.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5} ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 + +DESCRIPTION="IPython HTML widgets for Jupyter" +HOMEPAGE="http://ipython.org/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + >=dev-python/traitlets-4.2.0[${PYTHON_USEDEP}] + >=dev-python/ipykernel-4.2.2[${PYTHON_USEDEP}] + >=dev-python/widgetsnbextension-1.2.2[${PYTHON_USEDEP}] + " +DEPEND="${RDEPEND} + test? ( + $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) + dev-python/nose[${PYTHON_USEDEP}] + dev-python/coverage[${PYTHON_USEDEP}] + ) + " + +python_test() { + nosetests --with-coverage --cover-package=ipywidgets ipywidgets || die +} |