commit: 1902baa959330ef814812e7e36cbf673914827e8 Author: Tim Harder <radhermit <AT> gentoo <DOT> org> AuthorDate: Thu Apr 27 00:53:26 2017 +0000 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org> CommitDate: Thu Apr 27 00:54:45 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1902baa9
dev-python/munkres: version bump to 1.0.8 dev-python/munkres/Manifest | 1 + dev-python/munkres/munkres-1.0.8.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dev-python/munkres/Manifest b/dev-python/munkres/Manifest index 5c3274c9bf3..9ebe8f0696b 100644 --- a/dev-python/munkres/Manifest +++ b/dev-python/munkres/Manifest @@ -1 +1,2 @@ DIST munkres-1.0.5.4.tar.gz 43050 SHA256 105adad30659dbdf82815d3e12a74d4c01a3e0741d5ccbce194ee2ad4e5338d2 SHA512 a2b1577b75f3099cae57750543c985ab60097d5fa70481d3c6d8394dd55d0d8f99aacf5db625be7fa12772e976cf34d4b51c7841c3a24ee9df8214a68aa66aed WHIRLPOOL de64e126d37a0d267c0048ba368ab58f34aa9ae0d41cc3a97019370d3c12b231bee206c0c0f87d28f22e4b4ac1c29cd054350522372574437b6a09204d1a6561 +DIST munkres-1.0.8.tar.gz 9277 SHA256 185f1a9c4d2c31f2f19afa48bc2ec726c11e945eded4784d272da2fd49bf7a55 SHA512 e0afda8b91e51d177b9e2dc66ccacce849649d1a7d0e756884ac030acf4080076aa428182c5e9366613ee16db338ba7dcd3c38977de0888781b1885f08cb8236 WHIRLPOOL 15647beb863b6a2eb52ef594457564a524f8a6c4a4287f522679a3e1abc334279a9d3b47d0e7611ebb6c37c0549220c323bb6c4811f2097105f47d43a538653b diff --git a/dev-python/munkres/munkres-1.0.8.ebuild b/dev-python/munkres/munkres-1.0.8.ebuild new file mode 100644 index 00000000000..7e17d8551f4 --- /dev/null +++ b/dev-python/munkres/munkres-1.0.8.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) + +inherit distutils-r1 + +DESCRIPTION="Module implementing munkres algorithm for the Assignment Problem" +HOMEPAGE="https://pypi.python.org/pypi/munkres/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +python_test() { + "${PYTHON}" ${PN}.py || die +}