From owner-svn-ports-head@freebsd.org Sun Nov 15 18:05:39 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 978ED461366; Sun, 15 Nov 2020 18:05:39 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CZ0Vn5BPZz4ms6; Sun, 15 Nov 2020 18:05:36 +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 3B2691FE52; Sun, 15 Nov 2020 18:05:35 +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 0AFI5ZWq019164; Sun, 15 Nov 2020 18:05:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AFI5YuW019162; Sun, 15 Nov 2020 18:05:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202011151805.0AFI5YuW019162@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 15 Nov 2020 18:05:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r555325 - 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: 555325 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 18:05:39 -0000 Author: sunpoet Date: Sun Nov 15 18:05:34 2020 New Revision: 555325 URL: https://svnweb.freebsd.org/changeset/ports/555325 Log: Update to 1.1.4 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 Sun Nov 15 18:05:29 2020 (r555324) +++ head/math/py-munkres/Makefile Sun Nov 15 18:05:34 2020 (r555325) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= munkres -PORTVERSION= 1.1.2 +PORTVERSION= 1.1.4 CATEGORIES= math python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,7 +13,7 @@ COMMENT= Munkres implementation for Python LICENSE= APACHE20 USES= python:3.5+ -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes Modified: head/math/py-munkres/distinfo ============================================================================== --- head/math/py-munkres/distinfo Sun Nov 15 18:05:29 2020 (r555324) +++ head/math/py-munkres/distinfo Sun Nov 15 18:05:34 2020 (r555325) @@ -1,3 +1,3 @@ -TIMESTAMP = 1550415375 -SHA256 (munkres-1.1.2.tar.gz) = 81e9ced40c3d0ffc48be4b6da5cfdfaa49041faaaba8075b159974ec47926aea -SIZE (munkres-1.1.2.tar.gz) = 10860 +TIMESTAMP = 1605426451 +SHA256 (munkres-1.1.4.tar.gz) = fc44bf3c3979dada4b6b633ddeeb8ffbe8388ee9409e4d4e8310c2da1792db03 +SIZE (munkres-1.1.4.tar.gz) = 14047 Modified: head/math/py-munkres/pkg-descr ============================================================================== --- head/math/py-munkres/pkg-descr Sun Nov 15 18:05:29 2020 (r555324) +++ head/math/py-munkres/pkg-descr Sun Nov 15 18:05:34 2020 (r555325) @@ -6,3 +6,4 @@ out the least-cost solution, choosing a single item fr the matrix, such that no row and no column are used more than once. WWW: https://software.clapper.org/munkres/ +WWW: https://github.com/bmc/munkres