Commit graph

66 commits

Author SHA1 Message Date
khorben
63bb334ced Add bitcoin 2018-07-08 11:14:04 +00:00
minskim
3e5b291b54 finance/Makefile: Add py-pyfolio 2018-07-06 03:54:09 +00:00
minskim
82a88df368 Add QuantLib 2018-05-14 00:07:09 +00:00
minskim
994531f8b1 finance/Makefile: Add py-backtrader 2018-05-12 22:06:55 +00:00
wiz
4253bc2992 finance/Makefile: + gnucash2 2018-04-09 08:41:32 +00:00
minskim
6294dbd899 finance/Makefile: Add R-tseries 2018-03-07 19:23:25 +00:00
minskim
7402cb8357 finance/Makefile: Add R-fAsianOptions 2018-03-02 18:49:03 +00:00
minskim
7b127b1e8f "finance/Makefile: Add R-fOptions" 2018-03-02 18:38:22 +00:00
minskim
8fa6bf3a20 finance/Makefile: Add R-fBasics 2018-02-27 17:47:12 +00:00
minskim
285ed23d85 finance/Makefile: Add R-timeSeries 2018-02-26 17:17:32 +00:00
minskim
ade3614f92 finance/Makefile: Add R-quantmod 2018-02-04 23:41:56 +00:00
minskim
a06c46591a finance/Makefile: Add R-TTR 2018-02-04 23:40:29 +00:00
minskim
48472a8725 finance/Makefile: Add py-alpha_vantage 2018-01-31 19:13:49 +00:00
khorben
a6242dacec Add cpuminer 2017-10-01 15:08:10 +00:00
wiz
06bd0ca307 *: remove qt3 and the packages using it, including KDE3
Announced in https://mail-index.netbsd.org/pkgsrc-users/2017/09/10/msg025556.html
2017-09-26 10:26:54 +00:00
minskim
8792545dfc finance/Makefile: Add py-alphalens 2017-09-16 21:32:14 +00:00
ryoon
0dfac2ddb7 Add homebank 2017-09-16 14:17:54 +00:00
minskim
15fd23f618 finance/Makefile: Add py-fecon235 2017-09-14 16:16:17 +00:00
minskim
2b6af951c2 finance/Makefile: Add py-empyrical 2017-09-13 16:12:15 +00:00
adam
d3de8ba7c3 The Braintree Python library provides integration access to the Braintree
Gateway.
2017-07-07 07:43:42 +00:00
jnemeth
4e6f7dd354 format 2017-03-16 05:23:38 +00:00
darcy
891596615f A Python library for accessing the Quickbooks API. 2017-03-15 18:41:42 +00:00
riastradh
c99855c7b3 Import ledger 3.1.1 from wip, with some tweaks as 3.1.1nb1.
- Fill text in DESCR.
- Use lang/python/tool.mk explicitly.
- Add options.mk for python option.  (Other extensions TBD.)
- Patch a misuse of editline.
2017-02-18 05:48:51 +00:00
jnemeth
234594af87 sort 2016-12-08 02:56:11 +00:00
marino
481d4a3546 finance: Hook in py-tryond-stock-supply-day (missing)
I can only catch the disintegration one entry at a time.  They are
coming from meta-pkgs/py-tryton-platform
2016-12-05 01:11:11 +00:00
marino
40811ee186 finance: Hook in py-tryond-account-dunning-letter properly 2016-12-05 00:56:21 +00:00
rodent
a71bc063ac It's time to make Tryton great again. This update is YUGE. There are 71
new packages. Most of which are the remaining modules of the Tryton
platform which weren't packaged. The others are dependencies of the new
modules. This was tested on FreeBSD and is based in large part on Richard
Palo's (richard@) work. This is the most recent release of the Tryton
platform, version 4.2. There's a very large list of changes from the 3.8
series we have in pkgsrc. If you're interested, those functional changes
can be found here:

http://www.tryton.org/posts/new-tryton-release-42.html
http://www.tryton.org/posts/new-tryton-release-40.html
2016-12-04 21:12:58 +00:00
richard
1ece019a76 Add 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.
2015-12-27 16:27:40 +00:00
richard
b86d646729 Updates and additions to release 3.6
details found here (http://www.tryton.org/posts/new-tryton-release-36.html)

    Major changes for the developer

        It is now allowed to have many times the same field in list/tree view.
        There is no more a datetime widget for list/tree, two columns with one
        widget date and one widget time should be used instead.

        A new field TimeDelta appears in this release to represent a duration. It
        replace the float_time widget which had some rounding issue. This new
        field is already used in the timesheet and project modules.

        The One2Many widget can be configured to use a Cartesian product with the
        selections of many values for Many2One or Reference fields.

        A method restore_history_before is added to ModelSQL which behaves like
        the existing restore_history but restore the records just before the datetime.

        The on_change methods have been migrated to a behaviour more consistent
        with the Active Record Pattern used in Tryton. Instead of returning a
        dictionary with the values to change, now the instance is directly changed.

        This allow to chain easily the on_change methods or reuse them in other
        methods reducing the duplication.

        The method save on ModelStorage is now a dualmethod which means that it
        can be called as usual as an instance method but also as a class method
        with a list of records. Saving many records at once this way improves the
        performance as the method will minimize the number of queries to the
        database and will validate the result by bunch.

        The Dict field received a translated method to create descriptors which
        translate the values or the keys like the same method on Selection field.

        It is now allowed to use the dotted notation in the order clause of a search.
        The ORM will automatically generate the needed joins.

        The API of the Report class has been reworked to improve the customization
        of the engine. The formatting methods are now more strict to prevent silent
        failure.

        The safe_eval (which was not sure to be safe) has been completely removed.
        In the places where the evaluated code was any way safe, the standard eval
        is used. For evaluated code from outside, a JSON notation is now used. Some
        utilities have been developed to ease the creation of JSON from XMl or in
        the views.

        A new kind of button has been added which works on non-saved record. They
        are quite similar to on_change but they are triggered by a click on a
        button instead of a change of field.

    Accounting

        A new method reverse_compute has been added to Tax which allow to compute
        the base amount from the taxed amount.
        The sign of the second currency amount is enforced to be the same as
        debit - credit.
        The analytic account management has been reworked to use a really One2Many
        instead of the pseudo-field. This simplification was possible thanks to the
        recent new features like the usage of Reference field on One2Many.

    Party

        The vat number is now stored in its compact format.

    Product

        The number of decimal for internal price calculations is now a configuration
        parameter price_decimal. This parameter is used everywhere to ensure
        consistency between all modules.

    Purchase/Sale

        Their lines support both mixed invoice type (Invoice vs Credit Note) per
        line when computing the invoiced quantity.

    Stock

        A new state staging is added to the move. Such state doesn't impact at all
        the computation of the stock level. It is used for supply on sale, to
        create moves in advance.
        Inactive products are still computed for the stock level.
        The computation of assigned move has been improved to take only in
        consideration outgoing move assigned not the incoming. This result in a
        less optimistic for the stock level and thus prevent to assign a move with
        an incoming one that is just assigned but not yet done.
        Forecasts are now automatically deactivated when their period is in the past.

    pkgsrc related updates:
    update to tryton-3.6.0
    update to trytond-3.6.0 including UTC check patch for SunOS
    update trytond modules to latest 3.6
    add meta-pkgs/py-tryton-platform
    add misc/py-trytond-party-relationship
    add misc/py-trytond-product-attribute
    add misc/py-trytond-production
    add misc/py-trytond-stock-inventory-location
    add misc/py-trytond-stock-product-location
    add finance/py-trytond-account-invoice-line-standalone
    add finance/py-trytond-account-invoice-history
    add finance/py-trytond-account-invoice-stock
    add finance/py-trytond-account-payment-clearing
    add finance/py-trytond-account-stock-continental
    add finance/py-trytond-analytic-invoice
    add finance/py-trytond-analytic-purchase
    add finance/py-trytond-analytic-sale
    add finance/py-trytond-product-price-list
    add finance/py-trytond-product-cost-fifo
    add finance/py-trytond-product-cost-history
    add finance/py-trytond-purchase
    add finance/py-trytond-purchase-invoice-line-standalone
    add finance/py-trytond-sale
    add finance/py-trytond-stock-supply
    add time/py-trytond-company-work-time
2015-08-24 14:49:41 +00:00
fhajny
afe02f21a7 Add magento 2014-12-12 12:56:10 +00:00
richard
4c71a8db35 Add Tryton module analytic_account as finance/py-trytond-analytic-account
Update by consequence devel/py-trytond/Makefile.common
2014-09-10 16:03:48 +00:00
richard
c9b7659bc7 Update trytond modules using py-trytond/Makefile.common while adding
new leaf modules:
py-trytond-account-asset
py-trytond-account-payment
py-trytond-account-payment-sepa
py-trytond-account-statement
py-trytond-bank
ok wiz@
2014-06-25 06:03:36 +00:00
richard
6fe6dc8bb6 import finance/py-trytond-account-fr 2014-05-15 05:33:45 +00:00
rodent
4561b121ec +py-python-bitcoinlib 2014-05-08 10:14:56 +00:00
rodent
b846fd4e3f +py-stripe 2014-02-20 00:09:23 +00:00
rodent
b14215cf5c +py-trytond-account-invoice 2014-02-01 19:46:29 +00:00
rodent
4992c516c6 +py-trytond-account-product 2014-02-01 19:37:43 +00:00
rodent
6b82e2576d +py-trytond-account 2014-02-01 19:14:58 +00:00
rodent
55bacd7318 +py-trytond-currency 2014-02-01 18:56:05 +00:00
richard
4b4b361524 Python module to validate VAT numbers. VAT means "Value Added Tax". 2013-07-20 16:48:46 +00:00
wiz
562cc653e0 + moneyguru. 2012-10-27 19:43:33 +00:00
taca
21a91498a8 Add and enable ruby-braintree. 2011-06-19 08:13:13 +00:00
minskim
a96b4d95bb Add tex-euro{,-doc}. 2011-03-04 19:14:36 +00:00
abs
89e77ae6bf Added finance/p5-Algorithm-LUHN version 1.00 2008-10-25 20:23:37 +00:00
abs
c606e0d895 +p5-Locale-Currency-Format 2008-06-23 02:00:20 +00:00
abs
021fb7fccb +p5-Finance-Currency-Convert-WebserviceX 2008-06-23 01:56:47 +00:00
abs
8858a671c5 +p5-Data-Currency 2008-06-23 01:53:05 +00:00
jlam
6973294f00 Add and enable new ruby-* packages. 2008-04-04 15:33:05 +00:00
rillig
6aecf48699 Added mk/misc/category.mk, which contains the definitions that are only
useful for category Makefiles, as opposed to bsd.pkg.subdir.mk, which is
also relevant for the top-level directory. Adjusted the category Makefiles.
2007-08-13 08:12:41 +00:00
wiz
3266a11028 Remove gnucash-current -- merged into gnucash. 2007-07-19 19:36:20 +00:00