From owner-svn-ports-all@freebsd.org Tue Sep 3 19:30:31 2019 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 83976D40FA; Tue, 3 Sep 2019 19:30:31 +0000 (UTC) (envelope-from dvl@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) server-signature RSA-PSS (4096 bits) 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 46NH9M1mgWz4Ct1; Tue, 3 Sep 2019 19:30:31 +0000 (UTC) (envelope-from dvl@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 03FE77C91; Tue, 3 Sep 2019 19:30:31 +0000 (UTC) (envelope-from dvl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x83JUUlQ057837; Tue, 3 Sep 2019 19:30:30 GMT (envelope-from dvl@FreeBSD.org) Received: (from dvl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x83JUTrO057829; Tue, 3 Sep 2019 19:30:29 GMT (envelope-from dvl@FreeBSD.org) Message-Id: <201909031930.x83JUTrO057829@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dvl set sender to dvl@FreeBSD.org using -f From: Dan Langille Date: Tue, 3 Sep 2019 19:30:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r511029 - in head/devel: . py-fbprophet X-SVN-Group: ports-head X-SVN-Commit-Author: dvl X-SVN-Commit-Paths: in head/devel: . py-fbprophet X-SVN-Commit-Revision: 511029 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, 03 Sep 2019 19:30:31 -0000 Author: dvl Date: Tue Sep 3 19:30:29 2019 New Revision: 511029 URL: https://svnweb.freebsd.org/changeset/ports/511029 Log: Add prophet, a tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth. Submitted by: Gilbert Morgan (via private email) Added: head/devel/py-fbprophet/ head/devel/py-fbprophet/Makefile (contents, props changed) head/devel/py-fbprophet/distinfo (contents, props changed) head/devel/py-fbprophet/pkg-descr (contents, props changed) head/devel/py-fbprophet/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Sep 3 19:24:10 2019 (r511028) +++ head/devel/Makefile Tue Sep 3 19:30:29 2019 (r511029) @@ -4406,6 +4406,7 @@ SUBDIR += py-fastentrypoints SUBDIR += py-fastimport SUBDIR += py-fastnumbers + SUBDIR += py-fbprophet SUBDIR += py-filemagic SUBDIR += py-fileutils SUBDIR += py-first Added: head/devel/py-fbprophet/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fbprophet/Makefile Tue Sep 3 19:30:29 2019 (r511029) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= fbprophet +PORTVERSION= 0.5 +CATEGORIES= devel +MASTER_SITES= https://files.pythonhosted.org/packages/33/fb/ad98d46773929079657706e6b2b6e366ba6c282bc2397d8f9b0ea8e5614c/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= gmm@tutanota.com +COMMENT= Forecasting time series data based on an additive model + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist distutils + +BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pystan>2.14:math/py-pystan@${PY_FLAVOR} + +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pystan>2.14:math/py-pystan@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}numpy>1.10.0:math/py-numpy@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}matplotlib>2.0.0:math/py-matplotlib@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pandas>0.23.4:math/py-pandas@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}holidays>0.9.5:devel/py-holidays@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}lunardate>0.1.5:devel/py-lunardate@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}convertdate>2.1.2:devel/py-convertdate@${PY_FLAVOR} + +NO_ARCH= yes + +.include Added: head/devel/py-fbprophet/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fbprophet/distinfo Tue Sep 3 19:30:29 2019 (r511029) @@ -0,0 +1,3 @@ +TIMESTAMP = 1567169291 +SHA256 (fbprophet-0.5.tar.gz) = c67fde2845db52dbdb4becd312b271575ce1c804be666ed1eee94339c5a35127 +SIZE (fbprophet-0.5.tar.gz) = 49077 Added: head/devel/py-fbprophet/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fbprophet/pkg-descr Tue Sep 3 19:30:29 2019 (r511029) @@ -0,0 +1,8 @@ +Implements a procedure for forecasting time series data based on an additive +model where non-linear trends are fit with yearly, weekly, and daily +seasonality, plus holiday effects. It works best with time series that have +strong seasonal effects and several seasons of historical data. Prophet is +robust to missing data and shifts in the trend, and typically handles outliers +well. + +WWW: https://github.com/facebook/prophet Added: head/devel/py-fbprophet/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fbprophet/pkg-plist Tue Sep 3 19:30:29 2019 (r511029) @@ -0,0 +1 @@ +%%PYTHON_SITELIBDIR%%/fbprophet/stan_model/prophet_model.pkl