summaryrefslogtreecommitdiff
path: root/finance/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2021-12-06py-vatnumber: remove, unmaintained upstream.wiz1-2/+1
2021-03-03Add ratespin1-1/+2
2021-02-08py-eth-account: added version 0.5.4adam1-1/+2
Sign Ethereum transactions and messages with local private keys
2021-02-08py-eth-rlp: added version 0.2.1adam1-1/+2
RLP definitions for common Ethereum objects in Python.
2021-02-08py-eth-keyfile: added version 0.5.1adam1-1/+3
A library for handling the encrypted keyfiles used to store ethereum private keys.
2021-02-07py-eth-abi: added version 2.1.1adam1-1/+2
Python utilities for working with Ethereum ABI definitions, especially encoding and decoding.
2020-09-29Add py-pyevmasmkhorben1-1/+2
2020-09-29Add py-crytic-compilekhorben1-1/+2
2020-09-29Add py-eth-utilskhorben1-1/+2
2020-09-28Add py-eth-typingkhorben1-1/+2
2020-09-28Add py-eth-hashkhorben1-1/+2
2020-09-08moneyguru: removewiz1-2/+1
Does not build in current bulk builds and upstream development has stopped.
2020-05-16finance/tclticker: remove the packagerillig1-2/+1
This package got its stock quotes from web sites that were active around 2000 and that no longer exist. It had not resolved the PREFIX placeholder, which meant it could not even ask the web sites for the quotes. Therefore chances are high that this package is not used by anyone.
2020-04-14finance: Enable electrumjs1-1/+2
2020-03-30hledger: Import version 1.17.1.1riastradh1-1/+3
XXX Requires setting LANG=C.UTF-8 during hledger build stage.
2020-03-30hs-Decimal: Import version 0.5.1riastradh1-1/+2
2020-03-23ledger2beancount: Import version 2.0riastradh1-1/+2
2020-03-22py-beancount: Import version 2.2.3riastradh1-1/+2
From the web site <http://furius.ca/beancount/>: Beancount is 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.
2019-12-03py-bitcoinrpc: added version 1.0adam1-1/+2
AuthServiceProxy is an improved version of python-jsonrpc. It includes the following generic improvements: * HTTP connections persist for the life of the AuthServiceProxy object * sends protocol 'version', per JSON-RPC 1.1 * sends proper, incrementing 'id' * uses standard Python json lib * can optionally log all RPC calls and results * JSON-2.0 batch support It also includes the following bitcoin-specific details: * sends Basic HTTP authentication headers * parses all JSON numbers that look like floats as Decimal, and serializes Decimal values to JSON-RPC connections.
2019-11-25py-bitcoinlib: updated to 0.10.2adam1-2/+2
v0.10.2 Note: this will be the last release of python-bitcoinlib with Python 2.7 compatibility. New RPC generatetoaddress(self,numblocks,addr). Fixed Python 2.7 incompatibility. Various OpenSSL fixes, including a memory leak. v0.10.1 Identical in every way to v0.10.0, but re-uploaded under a new version to fix a PyPi issue. v0.10.0 Minor breaking change: RPC port for regtest updated to the new v0.16.0 default. Other changes: Now looks for .cookie files in the datadir, if specified. Authentication in a RPC service_url is now parsed. Implemented bip-0037 version message. contrib/verify-commits/ removed for now due to breakage. v0.9.0 Now supports segwit, which breaks the API in minor ways from v0.8.0. This version introduces lots of new API functionality related to this, such as the new CScriptWitness, CTxInWitness, CTxWitness, new segwit-specific logic in SignatureHash() etc. v0.8.0 Major breaking API change! While this interim release doesn't by itself include segwit support, it does change the name of the CTransaction/CMutableTransaction method GetHash() to GetTxid() to prepare for a future segwit-enabled release. Incorrect calls to GetHash() will now raise a AttributeError exception with an explanation. Since this release doesn't yet include segwit support, you will need to set the Bitcoin Core -rpcserialversion=0 option, either as a command line argument, or in your bitcoin.conf file. Otherwise the RPC interface will return segwit-serialized transactions that this release's RPC support doesn't understand. Other changes: Cookie file RPC authentication is now supported. msg_header now correctly uses CBlockHeader rather than CBlock. RPC getbalance now supports include_watchonly RPC unlockwallet is now supported v0.7.0 Breaking API changes: The 'cooked' CScript iterator now returns OP_0 for the empty binary string rather than b'' The alias JSONRPCException = JSONRPCError has been removed. This alias was added for compatibility with v0.4.0 of python-bitcoinlib. Where appropriate, RPC_INVALID_ADDRESS_OR_KEY errors are now caught properly, which means that rather than raising IndexError, RPC commands such as getblock may raise JSONRPCError instead. For instance during initial startup previously python-bitcoinlib would incorrectly raise IndexError rather than letting the callee know that RPC was unusable. Along those lines, JSONRPCError subclasses have been added for some (but not all!) of the types of RPC errors Bitcoin Core returns. Bugfixes: Fixed a spurious AttributeError when bitcoin.rpc.Proxy() fails. v0.6.1 New features: getblockheader RPC call now supports the verbose option; there's no other way to get the block height, among other things, from the RPC interface. subtoaddress and sendmany RPC calls now support comment and subtractfeefromamount arguments. v0.6.0 Breaking API changes: RPC over SSL support removed to match Bitcoin Core's removal of RPC SSL support in v0.12.0 If you need this, use an alternative such as a stunnel or a SSH tunnel. Removed SCRIPT_VERIFY constants bitcoin.core.script, leaving just the constants in bitcoin.core.scripteval; being singletons the redundant constants were broken anyway. SCRIPT_VERIFY_EVEN_S renamed to SCRIPT_VERIFY_LOW_S to match Bitcoin Core's naming SCRIPT_VERIFY_NOCACHE removed as Bitcoin Core no longer has it (and we never did anything with it anyway) v0.5.1 Various small bugfixes; see git history. New features: New RPC calls: fundrawtransaction, generate, getblockheader OP_CHECKLOCKTIMEVERIFY opcode constant v0.5.0 Major fix: Fixed OpenSSL related crashes on OSX and Arch Linux. Big thanks to everyone who helped fix this! Breaking API changes: Proxy no longer has __getattr__ to support arbitrary methods. Use RawProxy or Proxy.call instead. This allows new wrappers to be added safely. See docstrings for details. New features: New RPC calls: getbestblockhash, getblockcount, getmininginfo Signing and verification of Bitcoin Core compatible messages. (w/ pubkey recovery) Tox tests Sphinx docs Notable bugfixes: getinfo() now works where disablewallet=1 v0.4.0 Major fix: OpenSSL 1.0.1k rejects non-canonical DER signatures, which Bitcoin Core does not, so we now canonicalize signatures prior to passing them to OpenSSL. Secondly we now only generate low-S DER signatures as per BIP62. API changes that might break compatibility with existing code: MAX_MONEY is now a core chain parameter MainParams now inherits from CoreMainParams rather than CoreChainParams str() now returns hash:n format; previously was same as repr() RawProxy() no longer has _connection parameter Notable bugfixes: MsgSerializable.to_bytes() no longer clobbers testnet params HTTPS RPC connections now use port 443 as default No longer assumes bitcoin.conf specifes rpcuser New features: New RPC calls: dumpprivkey, importaddress Added P2P support for msg_notfound and msg_reject Added support for IPv6 addr messages
2019-08-09R-bayesm: initial commitbrook1-1/+2
Covers many important models used in marketing and micro-econometrics applications. The package includes: Bayes Regression (univariate or multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP), Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate Mixtures of Normals (including clustering), Dirichlet Process Prior Density Estimation with normal base, Hierarchical Linear Models with normal prior and covariates, Hierarchical Linear Models with a mixture of normals prior and covariates, Hierarchical Multinomial Logits with a mixture of normals prior and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior and covariates, Hierarchical Negative Binomial Regression Models, Bayesian analysis of choice-based conjoint data, Bayesian treatment of linear instrumental variables models, Analysis of Multivariate Ordinal survey data with scale usage heterogeneity (as in Rossi et al, JASA (01)), Bayesian Analysis of Aggregate Random Coefficient Logit Models as in BLP (see Jiang, Manchanda, Rossi 2009) For further reference, consult our book, Bayesian Statistics and Marketing by Rossi, Allenby and McCulloch (Wiley 2005) and Bayesian Non- and Semi-Parametric Methods and Applications (Princeton U Press 2014).
2018-08-16finance/gnucash2: remove outdated version, use finance/gnucash instead.wiz1-2/+1
2018-07-08Add bitcoinkhorben1-1/+2
2018-07-06finance/Makefile: Add py-pyfoliominskim1-1/+2
2018-05-14Add QuantLibminskim1-1/+2
2018-05-12finance/Makefile: Add py-backtraderminskim1-1/+2
2018-04-09finance/Makefile: + gnucash2wiz1-1/+2
2018-03-07finance/Makefile: Add R-tseriesminskim1-1/+2
2018-03-02finance/Makefile: Add R-fAsianOptionsminskim1-1/+2
2018-03-02"finance/Makefile: Add R-fOptions"minskim1-1/+2
2018-02-27finance/Makefile: Add R-fBasicsminskim1-1/+2
2018-02-26finance/Makefile: Add R-timeSeriesminskim1-1/+2
2018-02-04finance/Makefile: Add R-quantmodminskim1-1/+2
2018-02-04finance/Makefile: Add R-TTRminskim1-1/+2
2018-01-31finance/Makefile: Add py-alpha_vantageminskim1-1/+2
2017-10-01Add cpuminerkhorben1-1/+2
2017-09-26*: remove qt3 and the packages using it, including KDE3wiz1-2/+1
Announced in https://mail-index.netbsd.org/pkgsrc-users/2017/09/10/msg025556.html
2017-09-16finance/Makefile: Add py-alphalensminskim1-1/+2
2017-09-16Add homebankryoon1-1/+2
2017-09-14finance/Makefile: Add py-fecon235minskim1-1/+2
2017-09-13finance/Makefile: Add py-empyricalminskim1-1/+2
2017-07-07The Braintree Python library provides integration access to the Braintreeadam1-1/+2
Gateway.
2017-03-16formatjnemeth1-2/+2
2017-03-15A Python library for accessing the Quickbooks API.darcy1-1/+2
2017-02-18Import ledger 3.1.1 from wip, with some tweaks as 3.1.1nb1.riastradh1-1/+2
- Fill text in DESCR. - Use lang/python/tool.mk explicitly. - Add options.mk for python option. (Other extensions TBD.) - Patch a misuse of editline.
2016-12-08sortjnemeth1-2/+2
2016-12-05finance: Hook in py-tryond-stock-supply-day (missing)marino1-1/+2
I can only catch the disintegration one entry at a time. They are coming from meta-pkgs/py-tryton-platform
2016-12-05finance: Hook in py-tryond-account-dunning-letter properlymarino1-2/+2
2016-12-04It's time to make Tryton great again. This update is YUGE. There are 71rodent1-1/+33
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
2015-12-27Add finance/py-ofxparserichard1-1/+2
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.