From owner-svn-ports-all@freebsd.org Tue Oct 30 19:54:17 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18D4610F2DB1; Tue, 30 Oct 2018 19:54:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BF3F876F7E; Tue, 30 Oct 2018 19:54:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 376F22205F; Tue, 30 Oct 2018 19:54:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9UJsE8V055371; Tue, 30 Oct 2018 19:54:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9UJsDSW055369; Tue, 30 Oct 2018 19:54:13 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201810301954.w9UJsDSW055369@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 30 Oct 2018 19:54:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483524 - head/math/py-munkres X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/math/py-munkres X-SVN-Commit-Revision: 483524 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Oct 2018 19:54:17 -0000 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 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/