diff options
author | 2012-05-27 20:39:31 +0000 | |
---|---|---|
committer | 2012-05-27 20:39:31 +0000 | |
commit | afcc426af5c18ed684426e1fa28d15bd3df6cb5e (patch) | |
tree | fa609ab93ed73ba1b1cd12f8cbf2d7817b5d50dd /dev-python | |
parent | version bump wrt #396203 (diff) | |
download | historical-afcc426af5c18ed684426e1fa28d15bd3df6cb5e.tar.gz historical-afcc426af5c18ed684426e1fa28d15bd3df6cb5e.tar.bz2 historical-afcc426af5c18ed684426e1fa28d15bd3df6cb5e.zip |
New munkres python module ebuild
Package-Manager: portage-2.1.10.49/cvs/Linux x86_64
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/munkres/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/munkres/Manifest | 4 | ||||
-rw-r--r-- | dev-python/munkres/metadata.xml | 11 | ||||
-rw-r--r-- | dev-python/munkres/munkres-1.0.5.4.ebuild | 21 |
4 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/munkres/ChangeLog b/dev-python/munkres/ChangeLog new file mode 100644 index 000000000000..1748485b5225 --- /dev/null +++ b/dev-python/munkres/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-python/munkres +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/munkres/ChangeLog,v 1.1 2012/05/27 20:39:31 sochotnicky Exp $ + +*munkres-1.0.5.4 (27 May 2012) + + 27 May 2012; Stanislav Ochotnicky <sochotnicky@gentoo.org> + +munkres-1.0.5.4.ebuild, +metadata.xml: + New munkres python module ebuild + diff --git a/dev-python/munkres/Manifest b/dev-python/munkres/Manifest new file mode 100644 index 000000000000..caf70d9aefec --- /dev/null +++ b/dev-python/munkres/Manifest @@ -0,0 +1,4 @@ +DIST munkres-1.0.5.4.tar.gz 43050 RMD160 728695026eaa9287224353d5f392e82b8d4e6e3d SHA1 d81de77cde326497f6752e4993f0aa93e6f1201c SHA256 105adad30659dbdf82815d3e12a74d4c01a3e0741d5ccbce194ee2ad4e5338d2 +EBUILD munkres-1.0.5.4.ebuild 567 RMD160 8a48e00a02fb2228398c0e83e31298f5e76f1671 SHA1 b60e450febaceaafb76e48065b0d70d297f98553 SHA256 33b946fb35488d8bba5f214967a3095517023493f56a54488c01c44dc563213c +MISC ChangeLog 385 RMD160 74c1a6c0ec0eb2a4f47e7a1154c83d9c3618649d SHA1 2645dbc93737daeab40ae8a63a8817c87b36ddfd SHA256 845a04b574b02de59a18295f8416bbe6be2cc286d6ea9bcf098fa4e4ee960864 +MISC metadata.xml 476 RMD160 98bbc855d3642bd3eb438de77b5befb2227017d6 SHA1 d219f5a58388bbde815f2f640aa7ee39e2b4359d SHA256 f24ac1aab367b589e8356fbe50e109bb6dd7db187361f0d1f2593db0c1266bb6 diff --git a/dev-python/munkres/metadata.xml b/dev-python/munkres/metadata.xml new file mode 100644 index 000000000000..d2ef6dcfa21d --- /dev/null +++ b/dev-python/munkres/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>sochotnicky@gentoo.org</email> + <name>Stanislav Ochotnicky</name> + </maintainer> + <longdescription lang="en">The Munkres module provides an implementation of the Munkres algorithm (also called the Hungarian algorithm or the Kuhn-Munkres algorithm), useful for solving the Assignment Problem. + </longdescription> +</pkgmetadata> + diff --git a/dev-python/munkres/munkres-1.0.5.4.ebuild b/dev-python/munkres/munkres-1.0.5.4.ebuild new file mode 100644 index 000000000000..167b2f6668e7 --- /dev/null +++ b/dev-python/munkres/munkres-1.0.5.4.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/munkres/munkres-1.0.5.4.ebuild,v 1.1 2012/05/27 20:39:31 sochotnicky Exp $ + +EAPI=4 +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" + +inherit distutils + +DESCRIPTION="Module implementing munkres algorithm for the Assignment Problem" +HOMEPAGE="http://pypi.python.org/pypi/munkres/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" |