From owner-svn-ports-all@freebsd.org Sat Sep 1 19:38:39 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 78CCEFF8999; Sat, 1 Sep 2018 19:38:39 +0000 (UTC) (envelope-from nivit@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 22A9D7860F; Sat, 1 Sep 2018 19:38:39 +0000 (UTC) (envelope-from nivit@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 17FAB6CF2; Sat, 1 Sep 2018 19:38:39 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w81JcctR040335; Sat, 1 Sep 2018 19:38:38 GMT (envelope-from nivit@FreeBSD.org) Received: (from nivit@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w81Jcctw040330; Sat, 1 Sep 2018 19:38:38 GMT (envelope-from nivit@FreeBSD.org) Message-Id: <201809011938.w81Jcctw040330@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nivit set sender to nivit@FreeBSD.org using -f From: Nicola Vitale Date: Sat, 1 Sep 2018 19:38:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478719 - in head/finance: . beancount beancount/files X-SVN-Group: ports-head X-SVN-Commit-Author: nivit X-SVN-Commit-Paths: in head/finance: . beancount beancount/files X-SVN-Commit-Revision: 478719 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.27 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: Sat, 01 Sep 2018 19:38:39 -0000 Author: nivit Date: Sat Sep 1 19:38:37 2018 New Revision: 478719 URL: https://svnweb.freebsd.org/changeset/ports/478719 Log: A double-entry bookkeeping computer language that lets you define financial transaction records in a text file, read them in memory, generate a variety of reports from them, and provides a web interface. WWW: http://furius.ca/beancount/ Added: head/finance/beancount/ head/finance/beancount/Makefile (contents, props changed) head/finance/beancount/distinfo (contents, props changed) head/finance/beancount/files/ head/finance/beancount/files/patch-setup.py (contents, props changed) head/finance/beancount/pkg-descr (contents, props changed) Modified: head/finance/Makefile Modified: head/finance/Makefile ============================================================================== --- head/finance/Makefile Sat Sep 1 19:33:30 2018 (r478718) +++ head/finance/Makefile Sat Sep 1 19:38:37 2018 (r478719) @@ -24,6 +24,7 @@ SUBDIR += alkimia-qt4 SUBDIR += aqbanking SUBDIR += aqmoney + SUBDIR += beancount SUBDIR += beanie SUBDIR += bitcoin-armory SUBDIR += cbb Added: head/finance/beancount/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/beancount/Makefile Sat Sep 1 19:38:37 2018 (r478719) @@ -0,0 +1,41 @@ +# $FreeBSD$ + +PORTNAME= beancount +PORTVERSION= 2.1.2 +CATEGORIES= finance +MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/ +DISTNAME= ${PORTVERSION} +DIST_SUBDIR= ${PORTNAME} + +MAINTAINER= nivit@FreeBSD.org +COMMENT= Double-Entry Accounting from Text Files + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=0:www/py-beautifulsoup@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}bottle>=0:www/py-bottle@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ply>=0:devel/py-ply@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}python-magic>=0:devel/py-python-magic@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=0:www/py-beautifulsoup@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}bottle>=0:www/py-bottle@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}chardet>=0:textproc/py-chardet@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ply>=0:devel/py-ply@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}google-api-python-client>=0:www/py-google-api-python-client@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}python-magic>=0:devel/py-python-magic@${PY_FLAVOR} + +# Project hosted on Bitbucket +BB_ACCOUNT= blais +BB_COMMIT= 2b20d3017825 +BB_PROJECT= ${PORTNAME} + +WRKSRC= ${WRKDIR}/${BB_ACCOUNT}-${BB_PROJECT}-${BB_COMMIT} + +USES= python:3.5+ +USE_PYTHON= autoplist distutils + +.include Added: head/finance/beancount/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/beancount/distinfo Sat Sep 1 19:38:37 2018 (r478719) @@ -0,0 +1,3 @@ +TIMESTAMP = 1534755684 +SHA256 (beancount/2.1.2.tar.gz) = ee6f0a75bfffa0b3e386d2a93709809624f935cbddf72f57bae281c18026452f +SIZE (beancount/2.1.2.tar.gz) = 1703555 Added: head/finance/beancount/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/beancount/files/patch-setup.py Sat Sep 1 19:38:37 2018 (r478719) @@ -0,0 +1,18 @@ +--- setup.py.orig 2018-05-12 17:29:03 UTC ++++ setup.py +@@ -168,6 +168,7 @@ assert isinstance(version, str) + + def get_hg_changeset(): + """Get the Mercurial changeset id.""" ++ return None + try: + output = subprocess.check_output(['hg', 'parent', '--template', '{node} {date}'], + shell=False) +@@ -179,6 +180,7 @@ def get_hg_changeset(): + + def get_git_changeset(): + """Get the Git changeset id.""" ++ return None + try: + output = subprocess.check_output(['git', 'log', '--pretty=%H %ct', '-1'], + shell=False) Added: head/finance/beancount/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/beancount/pkg-descr Sat Sep 1 19:38:37 2018 (r478719) @@ -0,0 +1,5 @@ +A double-entry bookkeeping computer language that lets you define financial +transaction records in a text file, read them in memory, generate a variety +of reports from them, and provides a web interface. + +WWW: http://furius.ca/beancount/