aboutsummaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2018-10-30 19:54:13 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2018-10-30 19:54:13 +0000
commit03350799a5a933b1081174a6c1e038e7a71d70c9 (patch)
treef3c5bee07fb7b74711a4608397f1a8c12137adfb /math
parent656aeb0f3b3eba450fdc3762060b1b6dadc53da1 (diff)
downloadports-03350799a5a933b1081174a6c1e038e7a71d70c9.tar.gz
ports-03350799a5a933b1081174a6c1e038e7a71d70c9.zip
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
Notes
Notes: svn path=/head/; revision=483524
Diffstat (limited to 'math')
-rw-r--r--math/py-munkres/Makefile13
-rw-r--r--math/py-munkres/distinfo5
-rw-r--r--math/py-munkres/pkg-descr9
3 files changed, 17 insertions, 10 deletions
diff --git a/math/py-munkres/Makefile b/math/py-munkres/Makefile
index f4f2b0b7e633..11413b3811e7 100644
--- a/math/py-munkres/Makefile
+++ b/math/py-munkres/Makefile
@@ -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>
diff --git a/math/py-munkres/distinfo b/math/py-munkres/distinfo
index fa1a6bdc29ec..cda93e7c1c32 100644
--- a/math/py-munkres/distinfo
+++ b/math/py-munkres/distinfo
@@ -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
diff --git a/math/py-munkres/pkg-descr b/math/py-munkres/pkg-descr
index 774b9d8d7167..1c6ff5546878 100644
--- a/math/py-munkres/pkg-descr
+++ b/math/py-munkres/pkg-descr
@@ -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/