Ticket #51404: Portfile

File Portfile, 1.3 KB (added by david.e.pi.3.14@…, 8 years ago)

Proposed Portfile for py-beancount

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2
3PortSystem          1.0
4PortGroup           python 1.0
5PortGroup           bitbucket 1.0
6
7bitbucket.setup     blais beancount 5858958
8
9name                beancount
10categories          finance
11license             GPL-2
12revision            0
13platforms           darwin
14supported_archs     noarch
15
16python.versions     33 35
17
18description         Double-Entry Accounting from Text Files
19long_description    A double-entry bookkeeping computer language that lets \
20                    you define financial transaction records in a text file, \
21                    read them in memory, generate a variety of reports from  \
22                    them, and provides a web interface.
23
24homepage            http://furius.ca/beancount/
25fetch.type          hg
26
27depends_lib         port:py${python.version}-beautifulsoup4 \
28                    port:py${python.version}-bottle \
29                    port:py${python.version}-chardet \
30                    port:py${python.version}-dateutil \
31                    port:py${python.version}-lxml \
32                    port:py${python.version}-magic \
33                    port:py${python.version}-ply \
34                    port:py${python.version}-google-api
35