dev-python/ipython_genutils: Version bump to 0.2.0

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/4201
This commit is contained in:
Marius Brehler
2017-03-14 12:19:36 +01:00
committed by David Seifert
parent 8d5c3e3862
commit e3f3ea40fd
2 changed files with 29 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST ipython_genutils-0.1.0.tar.gz 22255 SHA256 3a0624a251a26463c9dfa0ffa635ec51c4265380980d9a50d65611c3c2bd82a6 SHA512 714f850783d5e3c042da409217c0e213cbce249a42fd689c3559745861a991fecb5dbf98a012a4186053d9bb7ca4d52dad742b676eeb5163bc4dfbf256181081 WHIRLPOOL 2696d088cd1f1a8faeb8fa847da8b41205b7823eae02813f2fa8769c392918b0d990007f451bb77704d732b7e700ef02b39144dc0a42db14c6399c076e5db91c
DIST ipython_genutils-0.2.0.tar.gz 22208 SHA256 eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8 SHA512 0e5a9f8be17d98dfb74ec77d1360ee79276a13fe1914e6d31e8740f06375ed1671c49356a77f118495f50823b8384c1e2c5b6fae73965e3d4249c831b9a2b095 WHIRLPOOL a1527ffb4bcdbb9eeb92d7c6e07d3ddf34744f48d2715a5148c9f6855eb33cdb3491b5706b222372008c04d86ea22c4163752d10b3a4fefda6b568d68e5477d3

View File

@@ -0,0 +1,28 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1
DESCRIPTION="Vestigial utilities from IPython"
HOMEPAGE="https://github.com/ipython/ipython_genutils"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
IUSE="test"
DEPEND="
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/coverage[${PYTHON_USEDEP}]
)
"
python_test() {
nosetests --with-coverage --cover-package=ipython_genutils ipython_genutils || die
}