Date: Sun, 7 Mar 2021 22:09:57 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r567607 - in head/graphics: . py-urbansim Message-ID: <202103072209.127M9vW8026927@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sun Mar 7 22:09:56 2021 New Revision: 567607 URL: https://svnweb.freebsd.org/changeset/ports/567607 Log: Add py-urbansim 3.2 UrbanSim is a platform for building statistical models of cities and regions. These models help forecast long-range patterns in real estate development, demographics, and related outcomes, under various policy scenarios. This urbansim Python library is a core component. It contains tools for statistical estimation and simulation; domain-specific logic about housing markets, household relocation, and other processes; and frameworks and utilities for assembling a model. WWW: https://github.com/UDST/urbansim Added: head/graphics/py-urbansim/ head/graphics/py-urbansim/Makefile (contents, props changed) head/graphics/py-urbansim/distinfo (contents, props changed) head/graphics/py-urbansim/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun Mar 7 22:09:49 2021 (r567606) +++ head/graphics/Makefile Sun Mar 7 22:09:56 2021 (r567607) @@ -901,6 +901,7 @@ SUBDIR += py-toyplot SUBDIR += py-traitsui SUBDIR += py-urbanaccess + SUBDIR += py-urbansim SUBDIR += py-utm SUBDIR += py-vecrec SUBDIR += py-visvis Added: head/graphics/py-urbansim/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-urbansim/Makefile Sun Mar 7 22:09:56 2021 (r567607) @@ -0,0 +1,31 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= urbansim +PORTVERSION= 3.2 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Platform for building statistical models of cities and regions + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.8.0,1:math/py-numpy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}orca>=1.1:devel/py-orca@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pandas>=0.17.0,1:math/py-pandas@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}patsy>=0.4.1:math/py-patsy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}prettytable>=0.7.2:devel/py-prettytable@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>=3.10:devel/py-yaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=1.0:science/py-scipy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}statsmodels>=0.8:math/py-statsmodels@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}toolz>=0.8.1:devel/py-toolz@${PY_FLAVOR} + +USES= python:3.7+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/graphics/py-urbansim/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-urbansim/distinfo Sun Mar 7 22:09:56 2021 (r567607) @@ -0,0 +1,3 @@ +TIMESTAMP = 1614794182 +SHA256 (urbansim-3.2.tar.gz) = c3ded3bd19b7ea7cedfa1ae50af9ccd9ec9da6dd9585adbf0b776e6c92b89e1e +SIZE (urbansim-3.2.tar.gz) = 68649 Added: head/graphics/py-urbansim/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-urbansim/pkg-descr Sun Mar 7 22:09:56 2021 (r567607) @@ -0,0 +1,10 @@ +UrbanSim is a platform for building statistical models of cities and regions. +These models help forecast long-range patterns in real estate development, +demographics, and related outcomes, under various policy scenarios. + +This urbansim Python library is a core component. It contains tools for +statistical estimation and simulation; domain-specific logic about housing +markets, household relocation, and other processes; and frameworks and utilities +for assembling a model. + +WWW: https://github.com/UDST/urbansim
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103072209.127M9vW8026927>