From owner-svn-ports-all@freebsd.org Thu Feb 22 07:17:41 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A940F0AA7D; Thu, 22 Feb 2018 07:17:41 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 10BE8716B3; Thu, 22 Feb 2018 07:17:41 +0000 (UTC) (envelope-from yuri@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 E4E2224673; Thu, 22 Feb 2018 07:17:40 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1M7He6R014282; Thu, 22 Feb 2018 07:17:40 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1M7HeSV014278; Thu, 22 Feb 2018 07:17:40 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201802220717.w1M7HeSV014278@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 22 Feb 2018 07:17:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462565 - in head/finance: . py-ta-lib X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/finance: . py-ta-lib X-SVN-Commit-Revision: 462565 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.25 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: Thu, 22 Feb 2018 07:17:41 -0000 Author: yuri Date: Thu Feb 22 07:17:40 2018 New Revision: 462565 URL: https://svnweb.freebsd.org/changeset/ports/462565 Log: New port: finance/py-ta-lib: Python wrapper for ta-lib (tools for market analysis) PR: 193350 Submitted by: m.tsatsenko@gmail.com Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D14468 Added: head/finance/py-ta-lib/ head/finance/py-ta-lib/Makefile (contents, props changed) head/finance/py-ta-lib/distinfo (contents, props changed) head/finance/py-ta-lib/pkg-descr (contents, props changed) Modified: head/finance/Makefile Modified: head/finance/Makefile ============================================================================== --- head/finance/Makefile Thu Feb 22 07:15:40 2018 (r462564) +++ head/finance/Makefile Thu Feb 22 07:17:40 2018 (r462565) @@ -96,6 +96,7 @@ SUBDIR += py-bitcoin SUBDIR += py-python-obelisk SUBDIR += py-stripe + SUBDIR += py-ta-lib SUBDIR += py-vatnumber SUBDIR += py-ystockquote SUBDIR += qhacc Added: head/finance/py-ta-lib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/py-ta-lib/Makefile Thu Feb 22 07:17:40 2018 (r462565) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= ta-lib +DISTVERSIONPREFIX= TA_Lib- +DISTVERSION= 0.4.16 +CATEGORIES= finance python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= m.tsatsenko@gmail.com +COMMENT= Python wrapper for ta-lib (tools for market analysis) + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYNUMPY} +LIB_DEPENDS= libta_lib.so:devel/ta-lib +RUN_DEPENDS= ${PYNUMPY} + +MAKE_ENV= TA_INCLUDE_PATH="${LOCALBASE}/include" + +USES= python +USE_GITHUB= yes +GH_ACCOUNT= mrjbq7 +USE_PYTHON= distutils cython autoplist + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/talib/_ta_lib.so + +.include Added: head/finance/py-ta-lib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/py-ta-lib/distinfo Thu Feb 22 07:17:40 2018 (r462565) @@ -0,0 +1,3 @@ +TIMESTAMP = 1519271769 +SHA256 (mrjbq7-ta-lib-TA_Lib-0.4.16_GH0.tar.gz) = 1aeda4c421214640e9cf115085cb31e84d316f289f8cf5d47410a5cb4406636f +SIZE (mrjbq7-ta-lib-TA_Lib-0.4.16_GH0.tar.gz) = 822860 Added: head/finance/py-ta-lib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/py-ta-lib/pkg-descr Thu Feb 22 07:17:40 2018 (r462565) @@ -0,0 +1,6 @@ +py-ta-lib is a Python wrapper for TA-LIB (a marketing analysis library) +based on Cython. + +It is intended to perform marketing analysis in Python programs. + +WWW: https://mrjbq7.github.io/ta-lib/