Date: Tue, 30 Oct 2018 19:54:13 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483524 - head/math/py-munkres Message-ID: <201810301954.w9UJsDSW055369@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Tue Oct 30 19:54:13 2018 New Revision: 483524 URL: https://svnweb.freebsd.org/changeset/ports/483524 Log: Update to 1.0.11 - Update LICENSE - Add NO_ARCH - Update pkg-descr - Update WWW - Take maintainership Changes: https://github.com/bmc/munkres/blob/master/CHANGELOG.md Modified: head/math/py-munkres/Makefile head/math/py-munkres/distinfo head/math/py-munkres/pkg-descr Modified: head/math/py-munkres/Makefile ============================================================================== --- head/math/py-munkres/Makefile Tue Oct 30 19:54:04 2018 (r483523) +++ head/math/py-munkres/Makefile Tue Oct 30 19:54:13 2018 (r483524) @@ -2,18 +2,19 @@ # $FreeBSD$ PORTNAME= munkres -PORTVERSION= 1.0.7 +PORTVERSION= 1.0.11 CATEGORIES= math python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org -COMMENT= Python implementation of the munkres algorithm +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Munkres implementation for Python -LICENSE= BSD3CLAUSE -LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE= APACHE20 USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes .include <bsd.port.mk> Modified: head/math/py-munkres/distinfo ============================================================================== --- head/math/py-munkres/distinfo Tue Oct 30 19:54:04 2018 (r483523) +++ head/math/py-munkres/distinfo Tue Oct 30 19:54:13 2018 (r483524) @@ -1,2 +1,3 @@ -SHA256 (munkres-1.0.7.tar.gz) = 334a5d849bcefed3e4c32ecfbca4ee8dfc8ef5f2f181334d6f7f4e100b71d6c4 -SIZE (munkres-1.0.7.tar.gz) = 9652 +TIMESTAMP = 1540926202 +SHA256 (munkres-1.0.11.tar.gz) = 7188f2ed6e8d3eb6c5ec4919200faa6194732b99707b058f7e9f068c588f7eca +SIZE (munkres-1.0.11.tar.gz) = 11322 Modified: head/math/py-munkres/pkg-descr ============================================================================== --- head/math/py-munkres/pkg-descr Tue Oct 30 19:54:04 2018 (r483523) +++ head/math/py-munkres/pkg-descr Tue Oct 30 19:54:13 2018 (r483524) @@ -1,3 +1,8 @@ -A python implementation of the munkres algorithm +The Munkres module provides an implementation of the Munkres algorithm (also +called the Hungarian algorithm or the Kuhn-Munkres algorithm). The algorithm +models an assignment problem as an NxM cost matrix, where each element +represents the cost of assigning the ith worker to the jth job, and it figures +out the least-cost solution, choosing a single item from each row and column in +the matrix, such that no row and no column are used more than once. -WWW: http://software.clapper.org/munkres/ +WWW: https://software.clapper.org/munkres/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810301954.w9UJsDSW055369>