Date: Tue, 7 Apr 2020 23:57:31 +0000 (UTC) From: Jose Alonso Cardenas Marquez <acm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r531049 - in head/finance: . py-ofxparse Message-ID: <202004072357.037NvVKr015594@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: acm Date: Tue Apr 7 23:57:31 2020 New Revision: 531049 URL: https://svnweb.freebsd.org/changeset/ports/531049 Log: - New port: finance/py-ofxparse ofxparse is a parser for Open Financial Exchange (.ofx) format files. OFX files are available from almost any online banking site, so they work well if you want to pull together your finances from multiple sources. Online trading accounts also provide account statements in OFX files. There are three different types of OFX files, called BankAccount, CreditAccount and InvestmentAccount files. This library has been tested with real-world samples of all three types. If you find a file that does not work with this library, please consider contributing the file so ofxparse can be improved. See the Help! section below for directions on how to do this. WWW: https://pypi.org/project/ofxparse/ Added: head/finance/py-ofxparse/ head/finance/py-ofxparse/Makefile (contents, props changed) head/finance/py-ofxparse/distinfo (contents, props changed) head/finance/py-ofxparse/pkg-descr (contents, props changed) Modified: head/finance/Makefile Modified: head/finance/Makefile ============================================================================== --- head/finance/Makefile Tue Apr 7 23:57:09 2020 (r531048) +++ head/finance/Makefile Tue Apr 7 23:57:31 2020 (r531049) @@ -94,6 +94,7 @@ SUBDIR += py-backtrader SUBDIR += py-bitcoin SUBDIR += py-ebaysdk-python + SUBDIR += py-ofxparse SUBDIR += py-pycoin SUBDIR += py-python-bitcoinlib SUBDIR += py-python-obelisk Added: head/finance/py-ofxparse/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/py-ofxparse/Makefile Tue Apr 7 23:57:31 2020 (r531049) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= ofxparse +PORTVERSION= 0.20 +CATEGORIES= finance python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= acm@FreeBSD.org +COMMENT= Tools for working with the OFX file format + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup460>0:www/py-beautifulsoup460@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}coverage>0:devel/py-coverage@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/finance/py-ofxparse/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/py-ofxparse/distinfo Tue Apr 7 23:57:31 2020 (r531049) @@ -0,0 +1,3 @@ +TIMESTAMP = 1586283849 +SHA256 (ofxparse-0.20.tar.gz) = eb45db5802938ac0ab3664418ca564619cc9e7ec6d301c1063ffc16e587ec37e +SIZE (ofxparse-0.20.tar.gz) = 53178 Added: head/finance/py-ofxparse/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/py-ofxparse/pkg-descr Tue Apr 7 23:57:31 2020 (r531049) @@ -0,0 +1,12 @@ +ofxparse is a parser for Open Financial Exchange (.ofx) format files. OFX +files are available from almost any online banking site, so they work well if +you want to pull together your finances from multiple sources. Online trading +accounts also provide account statements in OFX files. + +There are three different types of OFX files, called BankAccount, +CreditAccount and InvestmentAccount files. This library has been tested with +real-world samples of all three types. If you find a file that does not work +with this library, please consider contributing the file so ofxparse can be +improved. See the Help! section below for directions on how to do this. + +WWW: https://pypi.org/project/ofxparse/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004072357.037NvVKr015594>