From owner-svn-ports-all@freebsd.org Wed Feb 3 19:46:15 2021 Return-Path: Delivered-To: svn-ports-all@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 3812A5297E0; Wed, 3 Feb 2021 19:46:15 +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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DWBxz19jpz3PdS; Wed, 3 Feb 2021 19:46:15 +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 1B471268E7; Wed, 3 Feb 2021 19:46:15 +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 113JkENN090053; Wed, 3 Feb 2021 19:46:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 113JkEXV090049; Wed, 3 Feb 2021 19:46:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202102031946.113JkEXV090049@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 3 Feb 2021 19:46:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r563910 - in head/math: . py-spopt X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/math: . py-spopt X-SVN-Commit-Revision: 563910 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.34 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: Wed, 03 Feb 2021 19:46:15 -0000 Author: sunpoet Date: Wed Feb 3 19:46:13 2021 New Revision: 563910 URL: https://svnweb.freebsd.org/changeset/ports/563910 Log: Add py-spopt 0.1.1 Spatial Optimization Spopt is an open-source Python library for solving optimization problems with spatial data. Originating from the region module in PySAL (Python Spatial Analysis Library), it is under active development for the inclusion of newly proposed models and methods for regionalization, facility location, and transportation-oriented solutions. WWW: https://github.com/pysal/spopt Added: head/math/py-spopt/ head/math/py-spopt/Makefile (contents, props changed) head/math/py-spopt/distinfo (contents, props changed) head/math/py-spopt/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Wed Feb 3 19:45:53 2021 (r563909) +++ head/math/Makefile Wed Feb 3 19:46:13 2021 (r563910) @@ -859,6 +859,7 @@ SUBDIR += py-spglm SUBDIR += py-spint SUBDIR += py-splot + SUBDIR += py-spopt SUBDIR += py-spot SUBDIR += py-spreg SUBDIR += py-spvcm Added: head/math/py-spopt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-spopt/Makefile Wed Feb 3 19:46:13 2021 (r563910) @@ -0,0 +1,30 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= spopt +PORTVERSION= 0.1.1 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Spatial Optimization in PySAL + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}geopandas>=0.7:graphics/py-geopandas@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}libpysal>=0:science/py-libpysal@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}networkx>=0.1:math/py-networkx@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}numpy>=1.3,1:math/py-numpy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pandas>=1,1:math/py-pandas@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}PuLP>=0:math/py-PuLP@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scikit-learn>=0.22:science/py-scikit-learn@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0.11:science/py-scipy@${PY_FLAVOR} + +USES= python:3.7+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/math/py-spopt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-spopt/distinfo Wed Feb 3 19:46:13 2021 (r563910) @@ -0,0 +1,3 @@ +TIMESTAMP = 1612296103 +SHA256 (spopt-0.1.1.tar.gz) = da865be634ff8e8c3124797601ae6d1addc9433a59f44a579e846cbe22c6f8fd +SIZE (spopt-0.1.1.tar.gz) = 50147 Added: head/math/py-spopt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-spopt/pkg-descr Wed Feb 3 19:46:13 2021 (r563910) @@ -0,0 +1,9 @@ +Spatial Optimization + +Spopt is an open-source Python library for solving optimization problems with +spatial data. Originating from the region module in PySAL (Python Spatial +Analysis Library), it is under active development for the inclusion of newly +proposed models and methods for regionalization, facility location, and +transportation-oriented solutions. + +WWW: https://github.com/pysal/spopt