diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2017-05-14 12:25:22 +0200 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2017-05-14 12:25:22 +0200 |
commit | 302db2f36238cb887d1bf0a6e7217553e7c4c8e0 (patch) | |
tree | 0c01b07aaea6e1e0f14cdfdd0a190ce317453469 /dev-python/whichcraft | |
parent | net-p2p/rtorrent: Stable for HPPA (bug #522706). (diff) | |
download | gentoo-302db2f36238cb887d1bf0a6e7217553e7c4c8e0.tar.gz gentoo-302db2f36238cb887d1bf0a6e7217553e7c4c8e0.tar.bz2 gentoo-302db2f36238cb887d1bf0a6e7217553e7c4c8e0.zip |
dev-python/whichcraft: Version bump to 0.4.1
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'dev-python/whichcraft')
-rw-r--r-- | dev-python/whichcraft/Manifest | 1 | ||||
-rw-r--r-- | dev-python/whichcraft/whichcraft-0.4.1.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/dev-python/whichcraft/Manifest b/dev-python/whichcraft/Manifest index c8c0b5c81205..a6178603d663 100644 --- a/dev-python/whichcraft/Manifest +++ b/dev-python/whichcraft/Manifest @@ -1 +1,2 @@ DIST whichcraft-0.4.0.tar.gz 8008 SHA256 0b3567c56fb224a418cafbec6115cb5ed1002b256a203f87f1361e9cfce3dd87 SHA512 ed077a0b8eddc720c3db251ebaaf2695e4f2ed827c941d6979533944a03d8efcfe7aabb9be0c34ba3f016c98921b519c2907e3510f255fb4f5067f1844e68d8f WHIRLPOOL a9785e848e195090efb1e9053f60f158070f5b55271cc5a56903ef10cdbe7be29eef94740971b1284da0a41cd9158e84c5b9c26b6deecc65041f3f29e48b3994 +DIST whichcraft-0.4.1.tar.gz 8095 SHA256 66875022b3b9da8ddf7ab236c15670a782094550d07daeb51ceba4bc61b6b4aa SHA512 92633be99badd0ce06cf28b23366f89f2104ef2364ec8f637230fe46b378d1398a64f4d8b367358c833a2038159debc70b0498e94d2729918b95847defd59cae WHIRLPOOL 97c32d4c81d66210960d834eaf1a6ed97522826087645b787820bd815c0b27ba078012b66201ce785476e5b28cc4dbeb251cf1710d9b3e1e012ac3f4ec685cd6 diff --git a/dev-python/whichcraft/whichcraft-0.4.1.ebuild b/dev-python/whichcraft/whichcraft-0.4.1.ebuild new file mode 100644 index 000000000000..337719a0b014 --- /dev/null +++ b/dev-python/whichcraft/whichcraft-0.4.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) + +inherit distutils-r1 + +DESCRIPTION="This package provides cross-platform cross-python shutil.which functionality" +HOMEPAGE="https://github.com/pydanny/whichcraft" +SRC_URI="https://github.com/pydanny/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +DOCS=( README.rst HISTORY.rst CONTRIBUTING.rst ) + +DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )" + +python_test() { + ${PYTHON} test_whichcraft.py || die +} |