From owner-svn-ports-head@FreeBSD.ORG Fri Feb 15 02:53:44 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B7786711; Fri, 15 Feb 2013 02:53:44 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 88546D11; Fri, 15 Feb 2013 02:53:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1F2ribE068213; Fri, 15 Feb 2013 02:53:44 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1F2rhKT068209; Fri, 15 Feb 2013 02:53:43 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201302150253.r1F2rhKT068209@svn.freebsd.org> From: Martin Wilke Date: Fri, 15 Feb 2013 02:53:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312268 - in head/math: . py-munkres X-SVN-Group: ports-head 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.14 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: Fri, 15 Feb 2013 02:53:44 -0000 Author: miwi Date: Fri Feb 15 02:53:43 2013 New Revision: 312268 URL: http://svnweb.freebsd.org/changeset/ports/312268 Log: A python implementation of the munkres algorithm WWW: http://software.clapper.org/munkres/ PR: ports/176068 Submitted by: Mark Felder Added: head/math/py-munkres/ head/math/py-munkres/Makefile (contents, props changed) head/math/py-munkres/distinfo (contents, props changed) head/math/py-munkres/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Feb 15 02:53:17 2013 (r312267) +++ head/math/Makefile Fri Feb 15 02:53:43 2013 (r312268) @@ -548,6 +548,7 @@ SUBDIR += py-mathdom SUBDIR += py-matplotlib SUBDIR += py-mpmath + SUBDIR += py-munkres SUBDIR += py-networkx SUBDIR += py-numarray SUBDIR += py-numeric Added: head/math/py-munkres/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-munkres/Makefile Fri Feb 15 02:53:43 2013 (r312268) @@ -0,0 +1,27 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= munkres +PORTVERSION= 1.0.5.4 +CATEGORIES= math python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= feld@feld.me +COMMENT= A Python implementation of the munkres algorithm + +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= bmc +GH_TAGNAME= release-${PORTVERSION} +GH_COMMIT= fbd9fd9 + +USE_PYTHON= yes +USE_PYDISTUTILS= yes + +PLIST_FILES= %%PYTHON_SITELIBDIR%%/munkres.py \ + %%PYTHON_SITELIBDIR%%/munkres.pyc \ + %%PYTHON_SITELIBDIR%%/munkres.pyo + +.include Added: head/math/py-munkres/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-munkres/distinfo Fri Feb 15 02:53:43 2013 (r312268) @@ -0,0 +1,2 @@ +SHA256 (munkres-1.0.5.4.tar.gz) = 5d9e1afe233333e3c2434651796c210fab73925e86e29913fdf519260993c66c +SIZE (munkres-1.0.5.4.tar.gz) = 14428 Added: head/math/py-munkres/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-munkres/pkg-descr Fri Feb 15 02:53:43 2013 (r312268) @@ -0,0 +1,3 @@ +A python implementation of the munkres algorithm + +WWW: http://software.clapper.org/munkres/