Date: Thu, 22 Feb 2018 07:17:40 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> 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 Message-ID: <201802220717.w1M7HeSV014278@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802220717.w1M7HeSV014278>