Commit graph

975 commits

Author SHA1 Message Date
ryoon
6fc378bce9 Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
wiz
a6a3ab1707 ledger: update to 3.1.3.
## 3.1.3 (2019-03-31)

- Properly reject postings with a comment right after the flag (bug #1753)

- Make sorting order of lot information deterministic (bug #1747)

- Fix bug in tag value parsing (bug #1702)

- Remove the `org` command, which was always a hack to begin with (bug #1706)

- Provide Docker information in README

- Various small documentation improvements
2019-04-01 14:10:58 +00:00
wiz
a031295e2c gnucash: update to 3.5.
The following bugs have been fixed:
    Bug 639049 - Asset Barchart Report includes also the first day of next month transactions
  If the original date is an end-of-month date, we take it as an
  indicator they always want monthdelta dates to be end-of-months.
  This works for monthly/quarterly/halfyearly/annual.
    Bug 748431 - Wrong average balance for transactions during DST
  Replace average-splits with custom loop, cycling through the
  balancelist and splitlist, creating interval summaries along the way.
    Bug 787401 - Test for the report system - HTML Tests.
    Bug 795729 - Advanced Portfolio Report - Percentage rates not displaying leading zeros.
    Bug 796498 - Incorrect starting balance in TXF Report calculations.
    Bug 796530 - TxnCsvImport - fix loading of saved preset with update of seperator selection. Previously this would cause all but the first column to lose its assigned types.
    Bug 796687 - Tax Entity name and type for an account won't work under "Tax Reporting Options" in Gnucash 3.2
    Bug 796826 - Report HTML - not possible to suppress the document header.
    Bug 796827 - Report HTML - it is not possible to suppress the document title.
    Bug 796829 - Report HTML - HTML table rows are prepended not as list elements
    Bug 796831 - Report-HTML - append table column correctly.
    Bug 796877 - test-stress-options fails.
    Bug 796946 - Mortgage and Loan Repayment Setup tool crashes when exiting "Loan Repayment Options" page.
  Because libstdc++ on Windows doesn't support any C++ locales besides "C" and throws an exception if you try.
    Bug 796952 - Report formatting (justify) is broken.
    Bug 796956 - Aqbanking 6 will drop DTAUS
                 Adds support for the upcoming AQBanking 6 and removes support for AQBanking earlier than 5.3.4.
    Bug 796965 - Change the default to show unused accounts.
    Bug 796989 - some date/time does not honor user locale.
    Bug 797002 - Program crashes when exporting tax data in txf format.
    Bug 797011 - GnuCash 3.4 Crashes When Printing Checks with Custom Format.
    Bug 797013 - Import Customers & Vendors: error in CMakeLists.txt - causes incomplete project in Xcode.
    Bug 797029 - Import Customer & Vendors: blank name and company in import data row crashes GnuCash
    Bug 797030 - Import Customer & Vendors: several issues with the matching of data rows.
    Bug 797031 - Import customer & Vendors: import can create customer and vendors without address data
    Bug 797041 - enum confusion in qoflog.
    Bug 797046 - Tools / Price Database / Currencies UI not working since 3.4.
    Bug 797067 - Date displayed incorrectly in register.
    Bug 797074 - Reports with averages are displaying fractions
                 Convert amounts to decimal prior to adding to html-table.  Also adds tests to make sure averages are displayed in 2 decimal places.
    Bug 797098 - Quitting Gnucash shortly after clicking Save may abort file save.
    Bug 797105 - Incorrect local-symbol for SZL currency
    Bug 797136 - Balance sheet report "Show Exchange rate" broken when foreign currency is sold completely
                 For cases where total(amount)/total(value) = 0/0, the price is reported as 0.

Other repairs or enhancements not marked as bugs:

    API: Add dedicated api to query build-time, version related compile constants and use it in several location in the code for consistent behaviour.
    Budget: Save and restore the Account filter settings.
    Build: Fix deprecation warnings for g_type_class_add_private.

    CSV Tokenizer: Add additional test to guard against quote parsing regressions.
    GUI: Replace ambiguous mnemonic for File>Export>Export Active Register...
    GUI: Rearrange menu accelerators for Actions>Online Actions menu items
    GUI: Add mnemonic for File>Import>Import Bills...
    GUI: Move Balance-Forecast report to Reports>Assets & Liabilities
    GUI: Move Void Transactions item in Report Options from the Accounts tab to the Filter tab.
    I18N: Fix erratic localization of dates on Windows.
      Date format selection on Windows relies on Windows National Language functions and those are unaffected by the POSIX setlocale(). We have in the past relied upon gtk initialization to handle this but it has not been reliable since the move to Gtk3. Note that this applies only when the locale is set via a Unix-style environment variable (typically LANG) or in the environment file; it's unnecessary and ignored when using the localization settings in Region & Language.
    I18N: Unify phrases to remove untranslated msgids.
    I18N: Restore the global locale after Guile munges it.
      There's no way to change the environment locale on Windows so calling setlocale(LC_ALL, ""), as guile does in its init routine, reads the user's Language and Region settings instead of the environment variables. We save the discovered environment locale and call setlocale with it again after Guile has initialized.
    Importing: Remove old (non-SEPA) online transaction code, because now in 2019 the banks will only offer SEPA transactions and no others. This in turn means we don't need the old ktoblzcheck checking functions at all so also remove the dependency.
    Importing: Usability improvements for Bayes editor window
      Remove the "Are you sure" question as it is simply annoying but does not help. Fix some string wordings to be more understandable.
    Online Banking: No longer force existence of local BIC code.
    Online Banking: Entering of TAN must use normal visibility
      The visibility of the entered content was set to FALSE (=invisible) always, which was wrong for certain types of input as indicated by the GUI_INPUT_FLAGS. This should now be honored and visibility set to TRUE (=visible) for the correct flags.
    Online Banking: Fix reconcile timestamps when importing balances.
      Used to be start-of-day, but needs to be day-neutral.
    Performance: Provide a single static instance of C++ locale.
      We can't use std::locale::global because all streams imbue it by default and if it's not 'C' (aka std::locale::classic) then we must imbue all the streams that we don't want localized, and that's most of them.
    Performance: Add GncDateTime::timestamp().
      To provide a C++ implementation of gnc_date_timestamp and to avoid using the expensive and localized GncDateTime::format().
    Performance: Implement a faster date-time serialization function.
      Has the side effect of recording all date-times in XML files in UTC instead of local time with a timezone. This will help users who like to keep their files under version control because the time strings won't shift every time Daylight time begins or ends.
    Performance: >Fix XML load CPU hotspot: Scrub.c xaccTransScrubPostedDate
      The refactoring provides roughly 10% reduction in user CPU use for XML file load by moving an expensive function to within an if-clause where the result is used.
    Performance: Speed-up of txn match dialog: Suspend GUI refresh during deletion of selected lines.
    Performance: Sorting speed-up: Cache the bool value of Transaction's is_closing property.
    Register: Accept URLs or file paths for files associated with transactions. File paths can be relative or absolute. A preference is provided.
    Reports: Speed up the budget and cash flow report calculation by iterating over accounts only once.
    Reports: Heavy scrubbing for code readability and performance.
    Reports: New Report by Ryan Turner: Balance Forecast Report
      This report forecasts the combined balances of the selected accounts based on the scheduled transactions and plots them on a line graph. You can set a "reserve" amount, which will draw a red line on the graph, so you can easily see if your forecast dips below a given value. There is also a "future minimum" line which shows what the lowest future balance will be at a given point. I find this useful in conjunction with the "target" line for planning.
    Reports: Fix crash when loading saved-report with unknown choices.
      If a saved-report with e.g. relative date, multichoice option is unknown, the report would crash, and the Report-Options would segfault. This commit fixes both: report-date defaults to 'today', multichoice-options defaults to default-value. Following this commit, if a report loads a saved-report or .gcm from a future version, a gnc:warn will be emitted and the report will not crash; it will use relative-date today. Multichoice will remain the default value. Report Options will not segfault. The user will be notified via a gnc:gui-warn dialog
    Reports: Date intervals at end-of-month:
      Instead of recursing the date, we calculate the next month using an index-based multiplier, and apply modulo/remainder as appropriate to determine the next month/year. Then we attempt to create new mktime, and if the resulting mktime's month is not as expected, reduce the mday by 1 until resulting month is correct. This fixes monthly intervals for end-of-month days. Test via monthly/quarterly deltas, and also includes leapyear calculation.
    Reports: Date-grouping must allow indenting.
      Indenting checkbox was erroneously disabled when: sortkey = date, date-subtotal = not 'none.
    Reports: Table display
      It is intuitive that if the user wishes to show the subtotal-table, and hide the transactions, then both the main (hidden) transactions and subtotals must be hidden as well.
    Reports: Update US Income Tax information for 2018.
    Scheme Deprecations:
      account-assoc
      account-hash
      account-hashtable-ref
      account-hashtable-set!
      account-in-alist
      account-in-list-pred
      account-in-list?
      account-same?
      gnc-commodity-collector-commodity-count
      gnc-commodity-collector-contains-commodity?
      gnc:commodity-collectorlist-get-merged
      gnc:exchange-by-pricedb-helper
      gnc:exhange-by-pricevalue-helper
      gnc:get-commoditylist-inst-prices
      gnc:hook-run-danglers
      gnc:make-drcr-collector
      gnc:make-stats-collector
      gnc:report-template-menu-name/name
      gnc:report-template-name-to-id
      gnc:report-template-new-options/name
      gnc:report-template-renderer/name
      gnc:restore-report
      gnc:save-options
      split-assoc
      split-hash
      split-hashtable-ref
      split-hashtable-set!
      split-in-list?
      split-same?

    Scheme: Replace account and split utility functions with SRFI-1 functions.
    Scheme: Testing (create-transaction) adds price trading commodities/currency this will modify a test which was calibrated to record purchase price only. fix transaction creation to add prices for both purchase and sales, and also fix test which was assuming no sale price was bring recorded.
    Scheme: Testing (env-create-multisplit-transaction) This is the general case for any transaction creation.  Rewrite other transaction creation routines to use it.  All tests still work unchanged, which confirms this function works well. This will allow tests to create multisplit transactions, of an arbitrary number of splits. If the list-of-split's values are not balanced (i.e. total 0), the engine will create an Imbalance-CUR split.
       The motivation is to allow creation of complex multisplit multicommodity transactions eg USD50 + GBP20 (USD25) = EUR66 (USD75) as well as their prices GBP/USD = 25/20 and EUR/USD = 75/66.
        * USD -50
        * USD -25 = GBP -20
        * USD +75 = EUR +66
       This will be useful in creating tests for stock-based reports, whereby stock sales need splits in STOCK/ASSET/INCOME accounts.
    Scheme: Redesign gnc:account-get-balances-at-dates, replacing the ignore-closing? parameter with a split->amount function parameter having a default value of xaccSplitgetAmount. (split->amount split) should return the amount of the split or #f; in the latter case the split is skipped. This allows for a more general account balance list accumulator with novel balance strategies. For example a split->amount function could test void status and return xaccSplitVoidForerAmount on void splits; test description/memo for some content and vary the returned amount accoridingly; or test the split and return 1 or 0 creating a counter. To recreate the ignore-closing use case pass (lambda (s) (and not (xaccTransGetIsClosingTxn (xaccSplitGetParent s))) (xaccSplitGetAcmount s)))
    Scheme: Replace some option names. Automatically convert usage of the old names and issue a warning.

Updated Translations: Arabic, Croatian (New!), Farsi, French, German, Spanis, Ukrainian
Updated Account Templates: Belgium (French) (New!), Frsnce, Croatia (New!), Germany. Switzerland (French)
2019-03-31 20:46:52 +00:00
adam
fd9dbf93b6 py-braintree: updated to 3.52.0
3.52.0
Deprecate GrantedPaymentInstrumentUpdate and add GrantorUpdatedGrantedPaymentMethod and RecipientUpdatedGrantedPaymentMethod
Add account_type support for transaction sale, verification, and payment_method create/update
2019-03-27 06:30:13 +00:00
wiz
de8e7d31d9 ledger: update to 3.1.2.
* 3.1.2 (2019-02-05)

- Increase maximum length for regex from 255 to 4095 (bug #981)

- Initialize periods from from/since clause rather than earliest
  transaction date (bug #1159)

- Check balance assertions against the amount after the posting (bug #1147)

- Allow balance assertions with multiple posts to same account (bug #1187)

- Fix period duration of "every X days" and similar statements (bug #370)

- Make option --force-color not require --color anymore (bug #1109)

- Add quoted_rfc4180 to allow CVS output with RFC 4180 compliant quoting.

- Add support for --prepend-format in accounts command

- Fix handling of edge cases in trim function (bug #520)

- Fix auto xact posts not getting applied to account total during
  journal parse (bug #552)

- Transfer null_post flags to generated postings

- Fix segfault when using --market with --group-by

- Use amount_width variable for budget report

- Keep pending items in budgets until the last day they apply

- Fix bug where .total used in value expressions breaks totals

- Make automated transactions work with assertions (bug #1127)

- Improve parsing of date tokens (bug #1626)

- Don't attempt to invert a value if it's already zero (bug #1703)

- Do not parse user-specified init-file twice

- Fix parsing issue of effective dates (bug #1722, TALOS-2017-0303,
  CVE-2017-2807)

- Fix use-after-free issue with deferred postings (bug #1723, TALOS-2017-0304,
  CVE-2017-2808)

- Fix possible stack overflow in option parsing routine (bug #1222,
  CVE-2017-12481)

- Fix possible stack overflow in date parsing routine (bug #1224,
  CVE-2017-12482)

- Fix use-after-free when using --gain (bug #541)

- Python: Removed double quotes from Unicode values.

- Python: Ensure that parse errors produce useful RuntimeErrors

- Python: Expose journal expand_aliases

- Python: Expose journal_t::register_account

- Improve bash completion

- Emacs Lisp files have been moved to https://github.com/ledger/ledger-mode

- Fix build under MSYS (32-bit).

- Fix build under Cygwin.

- Various documentation improvements
2019-02-17 11:55:03 +00:00
tnn
4cbb38b25b revbump for converters/qrencode solib major bump 2019-02-13 15:20:27 +00:00
khorben
a2cba8ad4c Update finance/bitcoin to version 0.16.3
From the release notes for version 0.16.2:

Wallet
* #13622 c04a4a5 Remove mapRequest tracking that just effects Qt display. (TheBlueMatt)
* #12905 cfc6f74 [rpcwallet] Clamp walletpassphrase value at 100M seconds (sdaftuar)
* #13437 ed82e71 wallet: Erase wtxOrderd wtx pointer on removeprunedfunds (MarcoFalke)

RPC and other APIs
* #13451 cbd2f70 rpc: expose CBlockIndex::nTx in getblock(header) (instagibbs)
* #13507 f7401c8 RPC: Fix parameter count check for importpubkey (kristapsk)
* #13452 6b9dc8c rpc: have verifytxoutproof check the number of txns in proof structure (instagibbs)
* #12837 bf1f150 rpc: fix type mistmatch in listreceivedbyaddress (joemphilips)
* #12743 657dfc5 Fix csBestBlock/cvBlockChange waiting in rpc/mining (sipa)

GUI
* #12432 f78e7f6 [qt] send: Clear All also resets coin control options (Sjors)
* #12617 21dd512 gui: Show messages as text not html (laanwj)
* #12793 cf6feb7 qt: Avoid reseting on resetguisettigs=0 (MarcoFalke)

Build system
* #13544 9fd3e00 depends: Update Qt download url (fanquake)
* #12573 88d1a64 Fix compilation when compiler do not support __builtin_clz* (532479301)

Tests and QA
* #13061 170b309 Make tests pass after 2020 (bmwiedemann)
* #13192 79c4fff [tests] Fixed intermittent failure in p2p_sendheaders.py (lmanners)
* #13300 d9c5630 qa: Initialize lockstack to prevent null pointer deref (MarcoFalke)
* #13545 e15e3a9 tests: Fix test case streams_serializedata_xor Remove Boost dependency. (practicalswift)
* #13304 cbdabef qa: Fix wallet_listreceivedby race (MarcoFalke)

Miscellaneous
* #12887 2291774 Add newlines to end of log messages (jnewbery)
* #12859 18b0c69 Bugfix: Include for std::unique_ptr (luke-jr)
* #13131 ce8aa54 Add Windows shutdown handler (ken2812221)
* #13652 20461fc rpc: Fix that CWallet::AbandonTransaction would leave the grandchildren, etc. active (Empact)

From the release notes for version 0.16.3:

Consensus
* #14249 696b936 Fix crash bug with duplicate inputs within a transaction (TheBlueMatt, sdaftuar)

RPC and other APIs
* #13547 212ef1f Make signrawtransaction* give an error when amount is needed but missing (ajtowns)

Miscellaneous
* #13655 1cdbea7 bitcoinconsensus: invalid flags error should be set to bitcoinconsensus_err (afk11)

Documentation
* #13844 11b9dbb correct the help output for -prune (hebasto)

This also fixes a denial-of-service vulnerability (CVE-2018-17144). It is
exploitable by miners and has been discovered in Bitcoin Core versions 0.14.0
up to 0.16.2. It is recommended to upgrade any of the vulnerable versions to
0.16.3 as soon as possible.

XXX pull-up (security fix)
2019-02-04 22:06:22 +00:00
adam
84fd3d1241 py-braintree: updated to 3.51.0
3.51.0
Add Hiper card type support
Add Hipercard card type support
Add bin to PaymentMethodNonceDetails
Clarify support for Python versions 3.6.x and 3.7.x
Add Error indicating pdf uploads too long for dispute evidence.
Add GrantedPaymentMethodRevoked webhook response objects
2019-01-25 09:03:03 +00:00
adam
2a59f1c8e2 py-stripe: updated to 2.18.0
2.18.0:
* Add configurable telemetry to gather information on client-side request latency

2.17.0:
* Add support for Checkout sessions

2.16.0:
* Add support for account links

2.15.0:
* Add support for providing custom CA certificate bundle

2.14.0:
* Add support for Review for Radar

2.13.0:
* Add support for ValueList and ValueListItem for Radar

2.12.1:
* Make StripeResponse a new-style class

2.12.0:
* Add new API endpoints for the Invoice resource.

2.11.1:
* Bump minimum requests version to 2.20.0 (for [CVE-2018-18074](https://nvd.nist.gov/vuln/detail/CVE-2018-18074))

2.11.0:
* Add support for the Person resource
* Add support for the WebhookEndpoint resource

2.10.1:
* Correct behavior of stripe.max_network_retries if it's reset after initial use

2.10.0:
* Add support for Stripe Terminal

2.9.0:
* Rename FileUpload to File

2.8.1:
* Don't URL-encode square brackets
* Integer-index encode all arrays

2.8.0:
* Add support for automatic network retries

2.7.0:
* Add support for reporting resources

2.6.0:
* Add support for usage record summaries

2.5.0:
* Remove unsupported Bitcoin endpoints (this is technically a breaking change, but we're releasing as a minor version because none of these APIs were usable anyway)

2.4.0:
* Add cancel support for topups
* Add support for file links

2.3.0:
* Add support for Sigma scheduled query run objects

2.2.0:
* Add support for Stripe Issuing

2.1.0:
* Add InvoiceLineItem class

2.0.3:
* Internal improvements to ApiResource.class_url

2.0.2:
* Avoid duplicate dependency on requests with Python 2.7

2.0.1:
* Fix setup.py

2.0.0:
Major version release. List of backwards incompatible changes to watch out for:
* The minimum Python versions are now 2.7 / 3.4. If you're using Python 2.6 or 3.3, consider upgrading to a more recent version.
* Stripe exception classes should now be accessed via stripe.error rather than just stripe
* Some older deprecated methods have been removed
* Trying to detach an unattached source will now raise a stripe.error.InvalidRequestError exception instead of a NotImplementedError exception

Pull requests included in this release:
* Drop support for Python 2.6 and 3.3
* Use py.test for tests
* Remove deprecated code
* Remove util.json and use json module directly everywhere
* Update setup.py and test flow
* Use pipenv
* Change exception when detaching unattached sources from NotImplementedError to stripe.error.InvalidRequestError
2019-01-15 19:14:07 +00:00
wiz
efd0348912 gnucash: work around ctype(3) issues by ignoring the relevant clang warning 2019-01-14 22:58:02 +00:00
wiz
cad26ce301 gnucash: Add upstream bug report URLs. 2019-01-11 12:01:11 +00:00
wiz
45df050729 gnucash: fix build with clang. 2019-01-11 11:50:55 +00:00
wiz
4300f7e208 gnucash: remove obsolete patch (after 3.4 update) 2019-01-03 07:07:58 +00:00
wiz
7b38a536c0 gnucash-docs: update to 3.4.0.1.
Brownbag release.
2019-01-01 22:33:34 +00:00
wiz
c47e1e2c0b gnucash-docs: update to 3.4.
3.4    - 30 December 2018
        o Convert help documents to use XInclude instead of SYSTEM entities
        o Convert Guide and its translations to use XInclude instead of
          SYSTEM entities
        o Drop old DocBook xsl 1.75.2 stylesheet
        o Base gnucash custom style sheet on DocBook xsl 1.79.2
        o Add DocBook xsl v1.79.2
        o Extract common entity declarations into a custom DTD
          This custom DTD is based on the DocBook V4.5 DTD and is intended
          to be used by all our documentation xml files.
        o Update to DocBook XML spec 4.5
2019-01-01 11:22:02 +00:00
wiz
4d0043b4b7 gnucash: update to 3.4.
3.4 - 30 December 2018

The following bugs have been fixed:

     Bug 498072 - GnuCash show taxes on invoice when individual taxes is
                  not checked
     Bug 760825 - On duplicating a bill, the entry dates should be set to
                  the bill date, not to the current date - followup:
                  Use neutral time on entry post dates instead of canonical time
     Bug 767772 - Associated file with transaction is lost when moving entry
                  between accounts
     Bug 775580 - Inaccurate information provided for "Common Accounts" when
                  using "New Account Hierarchy Setup"
     Bug 779565 - Treeview header combos do not work at first load
     Bug 788332 - Last Reconcile Date column sorts by day of month not date
     Bug 789674 - Close Book tool regression
     Bug 793156 - Incorrect date sort order in Generic import matcher window
     Bug 795080 - Some dates reset to 01/01/1970
     Bug 795237 - Update of "wohnungsw" template
     Bug 795425 - Version 2018 of german account template SKR49
     Bug 796772 - Receivable Ageing Report invalid URL for Totals column
     Bug 796806 - Crash after OFX import if line item dragged
     Bug 796842 - Add new employee window may not fit on screen
     Bug 796849 - Load another QIF file causes "that file already loaded" dialog
     Bug 796875 - Unable to use arrow keys to advance past pre-filled text
                  in register
     Bug 796878 - test-qofsession fails on x86_32.
     Bug 796883 - Register text oddities
                  HOME and END need to be treated like right and left arrow
                  keys.
     Bug 796886 - OFX Import does not show source account in the transaction
                  matching window
     Bug 796887 - Remove account slot key color if there is no valid color
     Bug 796893 - invoice.GetDatePosted() and other date related functions
                  returns strange values for uninitalised dates.
     Bug 796896 - Button to complete an export not intuitively placed or
                  discoverable
     Bug 796903 - Crash when searching invoice by Invoice Owner
     Bug 796914 - Customer Summary is giving error
     Bug 796915 - Update Account colour background
     Bug 796940 - Invalid transaction date-posted KVP causes date-posted to
                  not be saved.
     Bug 796944 - Tab navigation From Company Address field in New Book Options
     Bug 796945 - Search Search Criteria window does not scroll when added
                  criteria exceed a certain amount
     Bug 796948 - Scheduled Transactions Entered Since Last Run Are not Visible
     Bug 796949 - Incorrect conversion of 0,01 USD to EUR
     Bug 796960 - Incorrect amount sort order in Generic import matcher window
     Bug 796961 - Can't overwrite existing MYSQL database, V3.3.
     Bug 796967 - gnclock table not removed when using PostgreSQL.
     Bug 796978 - Deleting a split of same account as register cancels the
                  transaction without warning
     Bug 796981 - Gnucash crashes with critical error when selecting another
                  file
     Bug 796982 - Import Bills & Invoices: change in un_escape() routine
                  causes description and notes fields to be mangled.
     Bug 796988 - Untranslated string in CSV transaction importer
     Bug 796989 - some date/time does not honor user locale
     Bug 796994 - Unable to generate Tax Report because of pricedb error

Other repairs or enhancements not marked as bugs:
     Set up filepath utils to determine the GNC_CONFIG_HOME in the same way
          as GNC_DATA_HOME
          Until now GNC_CONFIG_HOME was more or less hard-coded. Now it can be
          set via environment variable GNC_CONFIG_HOME. In addition it will
          automatically be created to avoid potential user confusion.
     Redesign gnc-uri-utils
          gnc_uri_get_components will now return NULL as protocol if the input
               is a normal file system path instead of a uri (it used to
               return 'file')
          gnc_uri_get_protocol will now return NULL if the input is a normal
               file system path instead of a uri (it used to return 'file')
          gnc_uri_is_file_protocol now returns FALSE if protocol is NULL
               (it used to return TRUE)
           gnc_uri_is_file_uri now returns FALSE if input is a normal file
                system path instead of a uri (it used to return TRUE)
           a new function gnc_uri_targets_local_fs will return TRUE only if
                its input is either a file uri or a normal file system path.
                This function is now mostly used instead of
                gnc_uri_is_file_uri in the current code base
           a new function gnc_uri_is_uri is added to check whether its input
                is a valid uri (has protocol, path and hostname for non-file
                uris)
           refer to 'scheme' instead of 'protocol' as that's the more formal
               term used in uris
               This involves renaming 3 functions:
                    gnc_uri_get_protocol -> gnc_uri_get_scheme
                    gnc_uri_is_known_protocol -> gnc_uri_is_known_scheme
                    gnc_uri_is_file_protocol -> gnc_uri_is_file_scheme
               The *_protocol variants are marked as deprecated.
               Additionally a number of local variables have been renamed from
               protocol to scheme to support this change.
     Show warnings for deprecated declarations
          We're about to announce our own set of deprecated functions in
          libgnucash. That would be pretty pointless if we also would silence
          all deprecation warnings at the same time...
     More report code-cleanup by Chris Lam, including deprecating the
           following functions:
               gnc:account-get-balance-at-date
               gnc:account-get-total-flow
               gnc-commodity-numeric-string
               gnc-commodity-value->string
               gnc:double-col
               gnc:options-add-include-subaccounts
               gnc:options-add-group-accounts
               gnc:options-add-currency-selection
            The following modules are deprecated:
               report-system/collectors
               report-system/report-collectors
     Invoice: Remove H1 title and superflous option.
           Printing the title twice is silly, so remove the option and the
           H1 display of the title. Note that the remaining title is in a
           div named "invoice-title" so it can be styled with CSS as the user
           pleases from the Report Options Layout tab.
     The preference, use formal accounting labels does not update the header
          With a register open and you change preference 'use formal
          accounting labels' it does not update the register header so add
         a call back for the preference.

     Make the grid lines of totals Budget tree view track the preferences
          Make the grid lines of the totals tree view track the preferences
          to match the account tree view above it.
     Add routine to fix Account Color being set to "Not Set"
          Previously the account color slot has been populated with
          "Not Set" when any field for the account has been edited and
          saved. This routine should run once and remove all such entries.
     Performance fix in dom_chars_handler: use g_strndup instead of g_strdup
     In the appdata/metadata file, rename the ID from org.gnucash.Gnucash
          to org.gnucash.GnuCash to match flathub, and add a launchable ID
          to link it to the desktop file.
     Added double-click-on-file for the CSV transaction, price, and account
         importers and exporters.
     Cleaned up a variety of issues reported by the clang static analyzer.
     Allow the text options widget to use all remaining space
          The text option widget used for report options has only about 3
          lines visible currently and will not use any available space in
          the dialogue. Change the packing for this widget to expand and
          fill the remaining dialogue space. If there are more than one text
          option widget on a page then the available space will be shared
          equally.
     Add short_labels for a few toolbar buttons with long names. That should
          fit a few more buttons on the toolbar.
     Update iso-4217-currencies.xml, adddding VES - Bolivar Soberano, minor
          updates of other VE currencies.
     Python 3 bindings fixes and improvements from Christoph Holterman and
          Sumit Bhardwaj.
2019-01-01 11:02:09 +00:00
wiz
1e9caac440 *: update email for fhajny 2018-12-15 21:12:18 +00:00
adam
5b12b7b592 revbump for boost 1.69.0 2018-12-13 19:51:31 +00:00
adam
44fb15d122 py-braintree: updated to 3.50.0
3.50.0
Add fraud_service_provider field to risk_data
Add authorization_expires_at to Transaction
Remove invalid transaction tests
Allow PayPal payment ID and payer ID to be passed during transaction create
Add travel_flight support to industry-specific data
Add processor_response_type to Transaction, AuthorizationAdjustment, and CreditCardVerification.
2018-12-13 07:13:28 +00:00
adam
16dd5de231 revbump after updating textproc/icu 2018-12-09 18:51:58 +00:00
adam
f1c7d4677f py-ofxparse: updated to 0.20
0.20:
Unknown changes
2018-12-04 13:18:54 +00:00
wiz
1e1929ddd7 gnucash: update to 3.3nb6.
Remove unneeded dependency on gtkmm.
2018-12-01 17:07:26 +00:00
kleink
f1a683c990 Revbump after cairo 1.16.0 update. 2018-11-14 22:20:58 +00:00
bsiegert
d2ecb5ec43 Revbump packages depending on webkit-gtk after enchant change.
Thanks wiz@ for the buildlink3.mk fix and for making me do this revbump!
2018-11-12 20:38:45 +00:00
ryoon
b86dfe6873 Recursive revbump from hardbuzz-2.1.1 2018-11-12 03:51:07 +00:00
leot
7f7915487e *: (belatedly) revbump for net/libsoup update
Thanks to <wiz>!
2018-10-24 21:11:45 +00:00
leot
50207fba91 *: Bump PKGREVISION for www/webkit-gtk update 2018-10-24 18:41:06 +00:00
bsiegert
0fa0f4aa06 Update gnucash-docs to 3.3.
Content updated for the 3.3 release of gnucash itself.
2018-10-17 15:32:53 +00:00
adam
d30ecf1014 py-braintree: updated to 3.49.0
3.49.0
Add new field network_transaction_id in transaction response.
Add external_vault option to transaction sale.
Add LocalPaymentCompleted webhook.
2018-10-11 10:44:19 +00:00
nia
fe09e9c97d bitcoin: bump PKGREVISION for miniupnpc. 2018-10-03 23:15:28 +00:00
wiz
6cb5ef4a55 gnucash: update to 3.3.
Between 3.2 and 3.3, the following bugfixes were accomplished:

	• Bug 771667 - Different warnings when changing reconciled splits vs. splits linked to reconciled splits.
	• Bug 784420 - "Save changes on closing" window waits 2^32 seconds when "Time to wait for answer" is set 0.
	• Bug 786708 - GnuCash won't load currency fractions larger than 1000000. Also create larger fractions for the account dialog.
	• Bug 787439 - Segmentation Fault in Transfer dialog after clearing Date field and pressing escape.
	• Bug 789594 - Unable to overwrite sqlite3 database file.
	• Bug 792446 - Mixed languages in error dialog.
	• Bug 794526 - Python bindings can't find loadable modules.
	• Bug 794755 - Commodity Register displays fractional prices.
	• Bug 794870 - If no book is opened, gnucash still asks if the user wants to save changes when opening a file.
	• Bug 795821 - GnuCash could not obtain the lock for file://C:\Users\username\Documents\GnuCash\2.6.21\xxxx\xxxx.gnucash
	• Bug 796054 - Unposting and reposting invoice doubles amounts.
	• Bug 796137 - query.search_for outputs critical qof.object errors and prevents queries being run.
	• Bug 796248 - Editing Scheduled Transaction.
	• Bug 796474 - Segmentation fault while setting up online banking.
	• Bug 796509 - Saved reports don't respect *some* 'Edit report options'.
	• Bug 796579 - Cannot go forward with empty duplicates screen.
	• Bug 796665 - Backspace Key Inoperable After Ctrl+V.
	• Bug 796669 - Dark Theme Text Colors Hard to Read.
	• Bug 796724 - Can't overwrite gnucash DB on MariaDB.
	• Bug 796725 - 4 of 6 Date Posted options fail to return matching transactions.
	• Bug 796734 - Auto-complete entry not highlighting to allow for incremental entry.
	• Bug 796737 - Patch to restore gncmod-python.c.
	• Bug 796739 - Toolbar buttons have no labels.
	• Bug 796751 - reconcile window usability - R column should be next to Amount.
	• Bug 796755 - buggy window handling at startup.
	• Bug 796756 - OFX import fails to recognize associated income accounts.
	• Bug 796759 - --add-price-quotes leaves a lock on the file.
	• Bug 796762 - Scrollbar partially hides the delete button in the Saved Report Configurations window.
	• Bug 796766 - Credit note creating 'imbalance' with wrong entries.
	• Bug 796777 - CVE-2008-1391: Integer overflow in included strfmon function.
	• Bug 796788 - Strange behaviour in options of multicolumn report.
	• Bug 796792 - SaveAs Overwrite dialogue in background and not visible.
	• Bug 796812 - gnc_date_cell_get_date and gnc_date_cell_get_date_gdate have different date validation behaviour.
	• Bug 796813 - Date validation inconsistent.
	• Bug 796814 - Changing a book's read-only threshold doesn't immediately affect open registers.
	• Bug 796816 - Notes field in Duplicate Invoice dialogue is 'read-only'.
	• Bug 796819 - Bad icon with Spanish localization.
	• Bug 796820 - References to 'Gnome Bugzilla' should be changed to 'GnuCash Bugzilla'.
	• Bug 796833 - Excel csv Format misprocessed.
	• Bug 796839 - Find transaction won't filter on Date Posted.
	• Bug 796858 - TypeError: in method 'qof_query_int32_predicate', argument 2 of type 'gint32' on gnucash.gnucash_core.QueryInt32Predicate.
2018-09-30 23:47:32 +00:00
adam
2219a8a223 py-braintree: updated to 3.48.0
3.48.0:
Add ID to Transaction in SubscriptionChargedSuccessfully test webhook
Fix dispute results in transactions not showing the correct status sometimes
Add Elo card type support
2018-08-30 10:06:24 +00:00
wiz
93b46879c7 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
wiz
67dc4f20f5 ledger: fix build with boost-1.68 2018-08-20 20:45:25 +00:00
wiz
ef7373bbc5 gnucash: disable -Werror to fix build with latest boost
Idea from adam@, thanks!
2018-08-20 11:43:41 +00:00
adam
9d06c0a472 revbump after boost-libs update 2018-08-16 18:54:26 +00:00
adam
02309aac1d py-ofxparse: updated to 0.19
0.19:
Bug fixes.
2018-08-16 11:37:01 +00:00
wiz
6c4a7d76a7 finance/gnucash2: remove outdated version, use finance/gnucash instead. 2018-08-16 09:24:15 +00:00
adam
6868c6394a py-braintree: updated to 3.47.0
3.47.0
Add processor respone code and processor response text to authorization adjustments subfield in transaction response.
Add support for Samsung Pay
2018-08-02 15:26:03 +00:00
brook
d1d2bdf864 Remove MASTER_SITES= from individual R package Makefiles.
Each R package should include ../../math/R/Makefile.extension, which also
defines MASTER_SITES.  Consequently, it is redundant for the individual
packages to do the same.  Package-specific definitions also prevent
redefining MASTER_SITES in a single common place.
2018-07-28 14:40:42 +00:00
ryoon
b9c1e1d533 Recursive revbump from textproc/icu-62.1 2018-07-20 03:33:47 +00:00
khorben
7ecf9acba9 Set myself as the maintainer 2018-07-08 11:17:58 +00:00
khorben
63bb334ced Add bitcoin 2018-07-08 11:14:04 +00:00
khorben
23cb9909ef Import bitcoin 0.16.1 as finance/bitcoin
Bitcoin is a decentralized P2P electronic cash system without a central
server or trusted parties. Users hold the crypto keys to their own money
and transact directly with each other, with the help of the network to
check for double-spending.
2018-07-08 11:13:45 +00:00
minskim
3e5b291b54 finance/Makefile: Add py-pyfolio 2018-07-06 03:54:09 +00:00
minskim
46d4a72736 finance/py-pyfolio: Import version 0.8.0
pyfolio is a Python library for performance and risk analysis of
financial portfolios developed by Quantopian Inc. It works well with
the Zipline open source backtesting library. At the core of pyfolio is
a so-called tear sheet that consists of various individual plots that
provide a comprehensive image of the performance of a trading
algorithm.
2018-07-06 03:54:01 +00:00
minskim
6131abff4c finance/py-alphalens: Update to 0.3.2
New features since 0.2.1:
- Integration with Pyfolio. It is now possible to simulate a portfolio
  using the input alpha factor and analyze the performance with
  Pyfolio.
- Added new API utils.get_clean_factor to run Alphalens with returns
  instead of prices
- Changed color palette to improve the visual experience for
  colorblind users
- Standard deviation bars optional in
  tears.create_event_returns_tear_sheet
- Alphalens now properly handles intraday factors
2018-07-05 09:21:29 +00:00
jperkin
5393242c73 *: Move SUBST_STAGE from post-patch to pre-configure
Performing substitutions during post-patch breaks tools such as mkpatches,
making it very difficult to regenerate correct patches after making changes,
and often leading to substituted string replacements being committed.
2018-07-04 13:40:07 +00:00
adam
a31bce9748 extend PYTHON_VERSIONS_ for Python 3.7 2018-07-03 05:03:01 +00:00
wiz
1e7afa23e0 gnucash-docs: update to 3.2.
Documentation changes:

	• Bug 796098 - V 3.1 Missing images in Tutorial and Concepts Guide in PDF and Online Help pages.
	• Bug 795980 - Void Reason Has No Visible Purpose.
2018-06-25 08:09:44 +00:00
wiz
2c8d7d3889 gnucash: update to 3.2.
Between 3.0 and 3.2, the following bugfixes were accomplished:

	• Bug 787401 - Test Report System - Report Definition.
	• Bug 794617 - Can't compile with -DWITH_GNUCASH=NO due to scm-gnome-utils.
	• Bug 795101 - Scroll Bar in Reconcile Window Floats in and covers the check boxes.
	• Bug 795247 - datepicker broken in Persian. GnuCash passes dates as integer y/m/d without using locale-specific formats, so we need to strip out 'E' and 'O' from the format when scanning dates or determining separators in gnc-date. None of '-', 'E', or 'O' are supported by boost (and '-' causes errors), so strip them out from formatters in gnc-datetime as well.
	• Bug 795253 - Have problems input Chinese.
	• Bug 795272 - QIF importer causes application crash if action is invalid.
	• Bug 795276 - Invalid date on price stops file from being parsed.
	• Bug 795362 - Special variable "i" not parsed in function calls. Due to balance tests with insane random values.
	• Bug 795471 - Impossible to Edit Budget Unless Maximized.
	• Bug 795519 - Credit card payment after reconciliation.
	• Bug 795666 - Backslash '\' in Description field spoils CSV Import without helpful error message.
	• Bug 795831 - When read only threshold set, dates are silently changed. Display a message box informing the user of the change.
	• Bug 795944 - Cannot store change to Business Suppliers data.
	• Bug 796079 - Repeatable Crash in Tax Report Options.
	• Bug 796081 - Tax Schedule Report - An error occurred while running the report.
	• Bug 796083 - Reconcile Selection Doesn't Work Anymore.
	• Bug 796117 - Connecting 3.1 to an existing mysql db drops all data. Provide a backup recovery function that instead of dropping primaries and restoring backups merges the primaries and backups. This should handle a worst-case safe-save failure where the backup tables don't have a complete set of rows for some reason.
	• Bug 796256 - Main Window stays hidden when starting after closing main window while minimized.
	• Bug 796369 - Notes lost or perhaps just not displaying when using SQLite backend. This bug caused data loss if you saved your SQLite3 database to a different file or database. The problem is that in SQLite3 (though not in MySQL or PgSQL) the subquery ((SELECT DISTINCT guid FROM transactions)) (note the double parentheses) returns only the first guid in the subquery's results. Some transactions are loaded by special queries and those queries are also used to retrieve the transaction's slots so they weren't affected.
	• Bug 796398 - Restrict accelerator keys to valid date range.
	• Bug 796409 - Incorrect Current Value for Stocks. Missed calculating the value in the register summary bar.
	• Bug 796423 - Cannot Input Chinese, seems does not work with other IME too. Toggles not in view with all rows selected weren't being redrawn.
	• Bug 796484 - csv import: iostream error. Unfortunately it turns out that we can't use filestreams because they can't take path arguments containing Unicode on Windows.
	• Bug 796527 - invalid currency on scheduled transactions.
		• Don't even check for price/exchange rate on template transactions, there's no point.
		• Check all split commodities are valid, abort transaction creation if not.
		• If the template transaction's currency isn't used by any of the splits set the new transaction's currency to the first-found currency if there is one, otherwise to the first-found commodity.
	• Bug 796537 - Transaction Report cannot sort by "num".
	• Bug 796586 - QIF import incorrectly converts unicode characters from UTF8 encoded file.
	• Bug 796595 - QIF Import Select Account button to add a new account is labled gnc-account-new but should be New.
	• Bug 796600 - stock split cash-in-lieu income/asset labels backwards.
	• Bug 796614 - Reconciliation report contains incorrect transactions.
	• Bug 796638 - configuration not properly saved for CSV transactions import form.
The Following fixes and improvemts were not associated with bug reports:

	• Transaction report improvements:
		• Performance: Do all filtering ops before sorting.
		• Move the options summary before the subtotals table.
		• New unit tests
		• Enable computing averages in subtotal grid.
		• Generate the subtotal grid only if the primary sort key enables subtotals.
		• Fix subtotal grid to support multiple commodities.
		• New filters.
		• Much cleaning and refactoring of the internals.
	• Cache the num-split-action book option to avoid thousands of KVP queries for the same value when loading a register.
	• Create a static string for book option KVPs to save an extra malloc/free on old compilers without small-string optimization.
	• Add tooltip support for register cells.
	• New unit tests for the balance sheet report and invoices.
	• Consolidate charting code into a single module.
	• Removed an incomplete and abandoned C implementation of QIF import.
	• Restored libsecret support that had been left out of CMake.
	• Replace old-style html style attributes with css.
	• Modify emitted html to be parseable by the Guile SXML module for testing.
	• Remove support for long-gone gtkhtml renderer.
	• Clean up code generating html tables.
	• Ensure full precision of doubles is saved to SQL. std::iostream's operator<<(double) uses only 6 digits of precision by default.
	• Make float database operations more consistent, working around dbd-sqlite3's failure to support doubles (dbd-sqlite3, not sqlite3 itself).
	• Prevent crash in gnc-tree-view.c: When getting information from the state file, protect against the key not having a '_' which is used to split the string.
	• Add the full account name to the saved register settings If you need to delete the layout for a register in the settings file, the only thing identifying it is the account guid. To make it easier for humans, add the full account name also.
	• When register pages are restored it uses the full account name. When register pages are restored, the account is found from the full name so if the separator changes it will fail. Instead, also save the account guid and use that as default to find the account falling back to the full name.
	• Fix misplaced try block that caused unhandled exception if year out of range.
	• Fix permanent storage of vendor details: Since the data types did not match for the billterms and taxtable, those references/guids were not saved to the database.
	• Update invoice reports to use totals calculate by gncInvoice. This should give a consistent representation of invoice data across the application.
	• Ensure gncEntry rounding is consistent. Internally calculated values in the entry are never rounded. Consumers of gncEntry's calculated values can request them either rounded or not. Next use a pragmatical approach for calculating values on invoices based on the entry values: do the rounding such that we never create an unbalanced transaction while posting. That means:
		• round each entry's net value before summing them in net total
		• accumulate all tax totals on invoice level per tax account before rounding
and round before before summing them in a global tax total Hopefully this will catch a few more rounding issues in this area. A complete solution can only offered if we allow users to manually correct tax entries. This requires changes to user interface and data format so that's not going to happen in gnucash 3.x.
	• Use Scheme SRFI-64 test framework for new Scheme unit tests.
	• New compilers (gcc-8.0 and Xcode 9) bring new warnings, so several fixups to mollify them.
	• Lowercase all cmake commands for better readability.
	• Metadate migration (2.6.x->3.x) fixes for Windows.
	• Ensure timezone is set correctly in FreeBSD.
The following translations are updated: Dutch
2018-06-25 08:02:36 +00:00
adam
70f19a62f4 py-braintree: updated to 3.46.0
3.46.0:
Allow payee ID to be passed in options params for transaction create
Add merchant_id alias to ConnectedMerchantStatusTransitioned and ConnectedMerchantPayPalStatusChanged Auth webhooks
2018-05-23 07:46:23 +00:00
wiz
eded44b72e ledger: remove TODO 2018-05-20 08:39:11 +00:00
wiz
64a5c74e5f ledger: fix python detection after py-boost installs a versioned library 2018-05-20 08:38:47 +00:00
minskim
82a88df368 Add QuantLib 2018-05-14 00:07:09 +00:00
minskim
13631dd6b8 finance/QuantLib: Import version 1.12.1
The QuantLib project is aimed at providing a comprehensive software
framework for quantitative finance. QuantLib is a free/open-source
library for modeling, trading, and risk management in real-life.

QuantLib is written in C++ with a clean object model, and is then
exported to different languages such as C#, Objective Caml, Java,
Perl, Python, GNU R, Ruby, and Scheme. An AAD-enabled version is also
available. The reposit project facilitates deployment of object
libraries to end user platforms and is used to generate QuantLibXL, an
Excel addin for QuantLib, and QuantLibAddin, QuantLib addins for other
platforms such as LibreOffice Calc. Bindings to other languages and
porting to Gnumeric, Matlab/Octave, S-PLUS/R, Mathematica,
COM/CORBA/SOAP architectures, FpML, are under consideration.
2018-05-14 00:06:44 +00:00
minskim
ab4fa0ecc0 finance/py-bracktrader: Add a patch to fix a typo 2018-05-12 22:07:47 +00:00
minskim
994531f8b1 finance/Makefile: Add py-backtrader 2018-05-12 22:06:55 +00:00
minskim
044f09adde finance/py-backtrader: Import version 1.9.58.122
Backtrader is a feature-rich Python framework for backtesting and
trading. It allows you to focus on writing reusable trading
strategies, indicators and analyzers instead of having to spend time
building infrastructure.
2018-05-12 22:06:53 +00:00
wiz
60cc9e1d61 gnucash-docs: update to 3.1.
3.1    - 28 April 2018
        o Update supported platforms for version 3.x.
2018-05-07 08:57:33 +00:00
wiz
210c7b2116 gnucash: update to 3.1.
3.1    - 29 April 2018
The second release of the 3.0 stable series.

The following bugs have been fixed:
    Bug 118391 - Long currency names untranslated
    Bug 769686 - Notes not imported when using update and reconcile in
                 import transactions from CSV
    Bug 772776 - VERY large queries (over 11000 fields in IN clause) slow
                 down GnuCash
    Bug 782144 - git-master - Save Corrupts Data File / Not Open Data File
    Bug 792105 - Startup takes several minutes
    Bug 793461 - Transaction matcher window blank when importing QFX
    Bug 794767 - Dates default to 01/01/1970
    Bug 794916 - Fails to find environment file at startup when installation
                 prefix is '/opt'
    Bug 794936 - 3.0 does not open previously saved sqlite3 files properly
                 - corrupted business data
    Bug 794941 - Both print icons export to pdf
    Bug 794953 - Ellipsize on short tab labels
                 Correct error on when to ellipsize tab labels. Also as this
                 is used in two places separate out this to new function so
                 it is not duplicated.
    Bug 794990 - Double click does not work on saved reports
                 When you double click on the saved report description nothing
                 happens. This was down to a conflict on a couple of call
                 backs and one of them was incorrectly setup.
    Bug 794994 - Display Alphavantage key in full
                 Set the entry to expand so all the space is used to display.
    Bug 795031 - 3.0 Crashes on loading when opening 2.6.19 file
    Bug 795039 - Crash on startup using Technicolor Style sheet in report
    Bug 795040 - GnuCash crashes when searching for a newly created bill
    Bug 795049 - GnuCash 2.6.20-1 (Fedora Linux package) is unable to open
                 MariaDB.
    Bug 795064 - Enable subtotal-only if either sortkeys are dates
                 This will allow 'show subtotals only' if sortkeys are
                 date-types. This allows, for example, prime-sortkey=date,
                 yearly. sec-sortkey=date, monthly.
    Bug 795068 - src/optional/python-bindings missing several files
    Bug 795080 - Some dates reset to 01/01/1970
                 An odd corner case: BST apparently came off of DST at 23:00
                 26 Oct 2014, so midnight that day was ambiguous about being
                 DST or not; that causes the local_date_time constructor to
                 throw in spite of the tm.is_dst element being 0 (meaning pick
                 standard time). Instead of just failing in that case, try
                 constructing a local_date_time three hours later then adjust
                 it back three hours. If *that* doesn't work then throw a
                 std::invalid argument.
    Bug 795082 - CSV import crashes if a transaction's 'Account' field is
                 empty and no default Account set
    Bug 795101 - Scrollbar floats and covers toggle buttons
                 When the scrollbar appears for the reconcile windows it can
                 float above the reconcile toggle button which make it
                 difficult to toggle. Move this column to the start which has
                 the advantage of aligning the amount column above the Total
                 value.
    Bug 795142 - Unable to enter account codes in business sheets
                 In Bills, Invoices and Expense vouchers you can not enter an
                 account code in an account field like you can on a normal
                 register, enable this.
    Bug 795155 - CSV import does not distinguish between deposit and withdrawal
    Bug 795347 - Australian (GMT+10) OFX transactions imported have previous
                 days date
    Bug 795377 - Reads and saves Gnucash 2.6.19 XML file, then can't reread
                 it, due to bad date in old file
    Bug 795389 - Hard to see figures in the budget window
                 The budget view had hard coded black for normal values and
                 dark grey for other values. Changed this so normal values
                 are reset to default color and adjusted the grey based on
                 default color for theme.
    Bug 795405 - All Dates in Price Database Off-By-One After 3.0 Upgrade
    Bug 795446 - On Windows there is a blank tip of the day
                 When the tip_of_the_day.list is created a new line is
                 appended to the list file and on Windows this causes a blank
                 tip so remove the adding of the extra line.
    Bug 795471 - Budget window scrolls edited cell out of site
                  When editing cells that have been revealed on the right by
                  scrolling the window snaps back to the left hiding the cell
                  being edited. This may be due to an underlying gtk issue
                  but these changes fix the issue visually.

Other repairs or enhancements not marked as bugs:
    On Windows the tooltip for saved reports was incorrect
        When the mouse was placed over a saved report description on Windows an
        empty tooltip was displayed. Setup the query tooltip callback so it does
        not display a tooltip for description column.
    Fix crash when loading sql book with posted transactions
    Add ability to recognize and use a pre-compiled libgmock.so.
    html-font: add default font family
        Windows ships with GTK2 in which the default font styles are named
        "Sans" "Sans Bold" "Sans Normal" etc. There is no "Sans" font in
        Windows; I vote to add a default "Sans-Serif" font-family which is
        valid CSS. This ensures exported reports are shown as intended.
    Several improvements to the Transaction and GST reports.
    csv-impport - Allow empty amount fields
        Treat empty amount fields as 0. This is necessary for example in
        the case the csv import file has both a deposit and a withdrawal
        column.
    Remove the set transient parent setting for Reconcile window
        The Reconcile option is already a window so it is not necessary to set
        this value which allows the jump to transaction to work properly.
    Date Format dialog flashes up when file/properties used
        When you select the File/Properties dialog, in the construction of that
        a 'Date Format' dialog flashes up while the date component is moved to
        the properties dialog. Can mainly be seen on Windows so remove the
        visible setting in glade file.
    Prevent throw in gnc-pricedb.
        If a price lookup is given an invalid time64/timespec (i.e. INT64_MAX)
        then just return NULL instead of trying to find the nearest price.
    Set GNC_VCS at build time instead of when making the tarball.
        Because the tarball is always made from a VCS repo.
    If there are no prices in the db, critical errors are flagged
        When dialog transfer is used between two commodities and there are no
        prices in the db a critical error is logged. Test for price object
        being NULL before retrieving the price for the error message.

The following translations are updated: Slovak, Spanish

Known Problems:
    It is not possible to overwrite SQL Databases from within GnuCash, even
        though GnuCash will ask if you want to. Bug 789594
    Several dates, including Accounting Period, are subject to change with
        time zone and daylight-time changes. Bug 791825
    Some HBCI information is not loaded correctly so the first transaction
        download will re-retrieve transactions unless the beginning date is
        set explicitly. Bug 792397.
    The new CSV importer's Price of Shares column doesn't work. Bug 793306
    The new CSV importer's numeric parser can't parse numbers of the form
        x + y/z. Bug 793556.
    Python bindings may not work in some installations because the bindings
        are unable to find the backend modules (libgncmod-backend-dbi and
        libgncmod-backend-xml). Bug 794526
    Get Quotes can be slow if one has a large number of saved prices.
        Bug 794644.
    The Mac localization code can set the wrong encoding for strftime causing
        the register's date picker to label months "Null" in some locales.
        Bug 794807
    On Mac, the File Open dialog will crash if one types anything.
        (This is a Gtk+ bug). Bug 794809
    An open register is not immediately updated when the Since Last Run
        dialog creates transaction splits in the register's account. Bug 794854
    GnuCash asks if one wants to save changes when quitting or opening a file
        even if there's no book open. Bug 794870
    Windows Defender falsly identifies the GnuCash installer as a Trojan.
        Bug 794967
    Some Windows users have trouble using Chinese input methods on the
        Register; other controls work. Bug 795253
    On Microsoft Windows the Tab key does not work in the register if the
        caps-lock key is on. Bug 795294
    GnuCash will crash if one attempts to import a CSV file with more than
        1400 transactions. Bug 795383
    Invalid input into a formula (Debit/Credit) field is inconsistent
        depending on the input. Bug 795614.
2018-04-30 06:06:07 +00:00
adam
35aa3efc12 revbump for boost-libs update 2018-04-29 21:31:17 +00:00
adam
ece401a313 py-braintree: updated to 3.45.0
3.45.0
Add support for US Bank Account verifications API
2018-04-26 13:25:32 +00:00
minskim
184ac4f350 finance/py-alpha_vantage: Update to 2.0.0
Notable changes since 1.8.0:

* From version 1.9.0 onwards, the urllib was substituted by pythons
  request library that is thread safe. If you have any error, post an
  issue.
2018-04-22 17:01:33 +00:00
wiz
8eb7e45e4c gnucash: add TEST_TARGET
37% tests passed, 67 tests failed out of 107
2018-04-21 10:22:56 +00:00
wiz
8ee21bdcf0 Recursive bump for new fribidi dependency in pango. 2018-04-16 14:33:44 +00:00
wiz
ceb0382e43 gnucash-docs: update to 3.0.
3.0    - 1 April 2018
        o Correct field format in python-import-fields.
        o German translation of Transactions chapter.
        o Bug 122895 - general ledger should be named journal
        o Bug 634181 - Inserting Part designations overall
        o Bug 608098 - Document Transaction Rpt, including how to handle splits
        o Clarify that creating a postponed SX will use the original date.
        o Remove 'Remainder To' from loan assistant page 2.
        o Bug 760407 - Note account separator isn't always a colon.
        o Update partial date entry documentation based on new default behaviour
        o Bug 762088 - Remove Section 9.4.3 From Guide
        o New Russian translation o fthe guide.
        o Fix chm mapfile target and cleanfiles.
             The mapfile target would fail if the directory was already built,
             apparently not recognizing that its target was complete.
             Cleanfiles was missing several build targets.
        o New Transaction Report section in Guide
        o Replace some screenshots with new ones reflecting Gtk3.
2018-04-15 07:38:42 +00:00
adam
299d329d51 revbump after icu update 2018-04-14 07:33:52 +00:00
adam
bab3269732 py-braintree: updated to 3.44.0
3.44.0
Add Dispute error ValidEvidenceRequiredToFinalize
2018-04-13 07:36:25 +00:00
wiz
e3da7e1788 gnucash: update to 2.6.21.
The GnuCash development team announces GnuCash 2.6.21, the twenty-second and final, final maintenance release in the 2.6-stable series.

Between 2.6.19 and 2.6.21, the following bugfixes were accomplished:

    * Bug 795049 - GnuCash 2.6.20-1 (Fedora Linux package) is unable to open MariaDB database.
    * Bug 795068 - src/optional/python-bindings missing several files.
    * Bug 795078 - missing _inflateValidate symbol has recurred in 2.6.20 on MacOS.

Between 2.6.19 and 2.6.20, the following bugfixes were accomplished:

    * Bug 765846 - Expense Over Time for subaccounts: An error occurred while running the report: Fix crash if acc-depth too low.
    * Bug 791848 - GC 2.6.x does not handle ISO dates introduced with GC 2.7 Enable reading ISO-formatted dates, recognize GNC_FEATURE_SQLITE3_ISO_DATES.
    * Bug 792008 - gnucash 2.6.19 fails to build Replace g_assert_true with g_assert for now
    * Bug 793278 - wrong data in charts with accumulated values (like "net-linechart", "net-barchart" and "liabilities barchart")
    * Bug 794030 - relative date functions compute wrong day of month
    * Bug 790526 - Mathematical bug This change will fix 'num-of-weeks-since-1/jan/1970' which formerly used quotient to remove the fractional part of the division. For negative values of num-of-weeks, the number is truncated in the wrong direction (i.e. towards 0). This change uses floor instead to ensure the num-of-weeks found is the nearest integer LESS than the fractional number.

Some other fixes not associated with reported bugs:

    * Online HBCI actions: Remove outdated non-SEPA menu items.
    * Add XML namespaces for all Account Hierarchy Templates.
    * General cleanup of Account Hierarchy Templates.
    * Fix auto-selection of splits in reconcile. Really use all splits of any given day. Up to now usually the splits of the given date were not or not all included, as the time comparison didn't correctly ignore any given time-of-day of the splits. Instead, all possible time-of-days should be included.
    * Properly detect git in case of linked worktree.
    * Account Hierarchy for India: Set LANGUAGE=hi and LANG=en_IN to access it.
    * Improve Import menu entries Customer & vendors use same menu label as others, replace template by tooltip, add ellipsis to entry, add comments to distinguish "Import" as verb and substantive.
    * Provide preference panel to set the Alpha Vantage API key needed for Finance::Quote.
    * Correct the appstream definition to match the current spec.
    * Fix collectors and min-date handling in reports.
2018-04-11 07:38:07 +00:00
wiz
57f9e3510d gnucash: add some missing PLISTs for 3.0 2018-04-09 08:47:54 +00:00
wiz
004f463b9e gnucash: update to 3.0.
The GnuCash development team proudly announces GnuCash 3.0, the
first release in our new 3.x stable series.

New Features for Users:

    The headline item for this release is that GnuCash now uses
    the Gtk+-3.0 Toolkit and the WebKit2Gtk API. This change was
    forced on us by some major Linux distributions dropping support
    for the WebKit1 API. Unfortunately the Webkit project doesn't
    support Microsoft Windows so that platform will continue to
    use the WebKit1 API, though with Gtk3. We've selected Gtk+-3.14.0
    as the minimum version because it fully supports CSS theming.

    New editors to remove outdated or incorrect match data from
    the import maps, a new user interfacs for managing files
    associated with transactions, an improved facility for removing
    old prices from the price database, and a way to remove deleted
    files from the history list in the file menu.

    New Reports: A Reconciliation Report based on the Transaction
    Report,a Income GST Report, and a Cashflow Barchart report.

    A new CSV importer largely rewritten in C++, adding new features
    including the ability to re-import CSV files exported from
    GnuCash, along with a separate CSV price importer.

    A new preference panel for the Alphavantage API key so that
    Finance::Quote users need not edit /etc/gnucash/environment.
    We've removed all references to the various Yahoo! quote sources
    and made Alphavantage the default.

    Data file directories are now located appropriately to the operating system's conventions by default:
        Windows: CSIDL_APPDATA/Gnucash
        MacOS: $HOME/Application Support/Gnucash
        Linux: $XDG_CONFIG_HOME/gnucash (or the default $HOME/.config/gnucash)
    It's still possible to overried with the environment variable GNC_DOC_PATH, which replaces GNC_DOT_DIR in earlier versions of GnuCash.

    Accounts in the Bayes import map are now linked by GUID instead
    of names so that the matcher won't have to be retrained if you
    rename an account. The Bayesian import maps are also stored in
    a flatter structure to allow faster access, especially in SQL.
    These changes mean that if you have Bayesian mapping data, once
    converted your database will be loadable only by GnuCash 2.6.20
    and later.

    MySQL and SQLite3 date storage has changed a bit. Once converted,
    MySQL and SQLite3 database will be loadable only by GnuCash
    2.6.19 and later.

    Numerics are rewritten to allow for more significant digits.
    The old 6-digit-maximum fraction is now 9-digits, and prices
    may have up to 18 digit precision.

    Chart Reports appearance is improved, including more modern
    chart colours as suggested by http://clrs.cc/.

    Transaction Report improvements, including regular expression
    filtering and many more options and features including a
    "Subtotal Summary Grid" The subtotal summary-grid will tabulate
    subtotals - prime-sortkey vertically, sec-sortkey horizontally.
    For example, with prime-sortkey = accounts, sec-sortkey = date,
    sec-subtotal = monthly will produce a monthly time series table.

    The About dialog box layout is improved and now includes the
    detected Finance::Quote version.

    GnuCash will always build the locale-specific tax modules. This
    was optional when building with autotools and never enabled
    when building with cmake. Note that the only supported tax
    locales are en_US and de_DE.

    On Macs the Reconcile Window's menu moved to the menubar.

    GnuCash no longer supports Guile-1.8 and now does support Guile-2.2
2018-04-09 08:47:35 +00:00
wiz
4253bc2992 finance/Makefile: + gnucash2 2018-04-09 08:41:32 +00:00
wiz
5c3bfe6cc0 finance/gnucash2: import gnucash-2.6.19nb1
From finance/gnucash, to make space for new major version 3.

GnuCash is a personal finance manager. A check-book like register
GUI allows you to enter and track bank accounts, stocks, income
and even currency trades. A full set of reports allow you to see
the state of your finances. The interface is designed to be simple
and easy to use, but is backed with double-entry accounting principles
to ensure balanced books.  Features include:
  - Scheduled Transactions
  - Small Business Accounting Features
  - OFX and Quicken File Import and HBCI Support
  - Reconcile window with running reconciled and cleared balances
  - Stock/Mutual Fund Portfolios
  - Get Stock & Mutual Fund quotes from various web sites, update
    portfolio automatically (more funds being added regularly).
  - Reports
  - Multiple Currencies & Currency Trading
  - New Multi-Currency Transaction Handling
  - Chart of Accounts
  - Split Transactions
  - Double Entry
  - Income/Expense Account Types (Categories)
  - General Ledger
  - International date handling, many different translations.

This package contains the old major version 2 of gnucash.
2018-04-09 08:40:53 +00:00
adam
a1ea55c604 py-braintree: updated to 3.43.0
3.43.0
Add oauth_access_revocation to WebhookNotifications
Add support for customer_id, disbursement_date and history_event_effective_date in DisputeSearch
Remove sepa_mandate_type and sepa_mandate_acceptance_location params from ClientToken
Add support for VCR compelling evidence dispute representment
2018-04-05 08:15:56 +00:00
wiz
9b08ca4abc ledger: Fix build with gcc-6.
From upstream via Roberto Oliveira.
2018-03-14 13:59:52 +00:00
wiz
c57215a7b2 Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
minskim
6294dbd899 finance/Makefile: Add R-tseries 2018-03-07 19:23:25 +00:00
minskim
a3d53e588c finance/R-tseries: Import version 0.10.43
Time series analysis and computational finance.
2018-03-07 19:23:21 +00:00
minskim
7402cb8357 finance/Makefile: Add R-fAsianOptions 2018-03-02 18:49:03 +00:00
minskim
8de556faaf finance/R-fAsianOptions: Import version 3042.82
Provides functions for pricing and valuating Asian Options together
with tools for analyzing and modeling Exponential Brownian Motion
(EBM).
2018-03-02 18:49:00 +00:00
minskim
7b127b1e8f "finance/Makefile: Add R-fOptions" 2018-03-02 18:38:22 +00:00
minskim
8f2c0021c2 finance/R-fOptions: Import version 3042.86
This package provides a collection of functions to valuate basic
options. This includes the generalized Black-Scholes option, options
on futures and options on commodity futures.
2018-03-02 18:38:19 +00:00
adam
4d85e36a38 py-braintree: updated to 3.42.0
3.42.0:
Add support for association_filter_id in Customer#find
2018-03-01 08:03:51 +00:00
minskim
8fa6bf3a20 finance/Makefile: Add R-fBasics 2018-02-27 17:47:12 +00:00
minskim
7bdc56acc1 finance/R-fBasic: Import version 3042.89
This package provides a collection of functions to explore and to
investigate basic properties of financial returns and related
quantities. The covered fields include techniques of explorative data
analysis and the investigation of distributional properties, including
parameter estimation and hypothesis testing. Even more there are
several utility functions for data handling and management.
2018-02-27 17:46:19 +00:00
minskim
285ed23d85 finance/Makefile: Add R-timeSeries 2018-02-26 17:17:32 +00:00
minskim
3f009f7d56 finance/R-timeSeries: Import version 3042.102
This package provides a class and various tools for financial time
series. This includes basic functions such as scaling and sorting,
subsetting, mathematical operations and statistical functions.
2018-02-26 17:17:00 +00:00
adam
64badae97e py-braintree: updated to 3.41.0
3.41.0
Deprecated LineItem/DiscountAmountMustBeGreaterThanZero error in favor of DiscountAmountCannotBeNegative
Deprecated LineItem/UnitTaxAmountMustBeGreaterThanZero error in favor of UnitTaxAmountCannotBeNegative
Add support for tax_amount field on transaction line_items
Add support for source_merchant_id on webhooks
Add find_all static method to TransactionLineItem class
2018-02-12 08:34:00 +00:00
minskim
ade3614f92 finance/Makefile: Add R-quantmod 2018-02-04 23:41:56 +00:00
minskim
cb20d97872 finance/R-quantmod: Import version 0.4.12
quantmod specifies, builds, trades, and analyzes quantitative
financial trading strategies.
2018-02-04 23:41:34 +00:00
minskim
a06c46591a finance/Makefile: Add R-TTR 2018-02-04 23:40:29 +00:00
minskim
a5c01d0284 finance/R-TTR: Import version 0.23.3
Functions and data to construct technical trading rules with R.
2018-02-04 23:40:02 +00:00
minskim
1cc7b14835 finance/py-alphalens: Update to 0.2.1
New features since 0.1.0:
- Added event study analysis: an event study is a statistical method
  to assess the impact of a particular event on the value of equities
  and it is now possible to perform this analysis through the API
  alphalens.tears.create_event_study_tear_sheet. Check out the
  relative NoteBook in the example folder.
- Added support for group neutral factor analysis (group_neutral
  argument): this affects the return analysis that is now able to
  compute returns statistics for each group independently and
  aggregate them together assuming a portfolio where each group has
  equal weight.
- utils.get_clean_factor_and_forward_returns has a new parameter
  max_loss that controls how much data the function is allowed to drop
  due to not having enough price data or due to binning errors
  (pandas.qcut). This gives the users more control on what is
  happening and also avoid the function to raise an exception if the
  binning doesn't go well on some values.
- Greatly improved API documentation
2018-02-02 20:17:54 +00:00
minskim
48472a8725 finance/Makefile: Add py-alpha_vantage 2018-01-31 19:13:49 +00:00
minskim
17d7512524 finance/py-alpha_vantage: Import version 1.8.0
Alpha Vantage delivers a free API for real time financial data and
most used finance indicators in a simple json or pandas format. This
module implements a python interface to the free API provided by Alpha
Vantage (http://www.alphavantage.co/). It requires a free API key,
which can be requested on http://www.alphavantage.co/support/#api-key.
2018-01-31 19:13:17 +00:00
wiz
58a2a977a7 recursive bump after mpfr shlib major bump 2018-01-28 16:24:10 +00:00
adam
710ff96f11 py-braintree: updated to 3.40.0
3.40.0
Add level 3 fields to Transactions:
discount_amount
shipping_amount
ships_from_postal_code
Add support for transaction line items
Add support for tagged evidence in DisputeGateway#add_text_evidence (Beta release)
Update https certificate bundle
2018-01-21 12:17:25 +00:00
joerg
92d72bffcd Don't hard-code libstdc++. Depend on the compiler to add the STL. Bump
revision.
2018-01-07 20:59:40 +00:00
rillig
b381c6e2f3 Sort PLIST files.
Unsorted entries in PLIST files have generated a pkglint warning for at
least 12 years. Somewhat more recently, pkglint has learned to sort
PLIST files automatically. Since pkglint 5.4.23, the sorting is only
done in obvious, simple cases. These have been applied by running:

  pkglint -Cnone,PLIST -Wnone,plist-sort -r -F
2018-01-01 22:29:15 +00:00
adam
983847f667 Revbump after boost update 2018-01-01 21:18:06 +00:00
wiz
54669b0dde ledger: follow redirect 2017-12-24 09:53:06 +00:00
wiz
721da8c3a5 gnucash-docs: update to 2.6.19.
2.6.19 - 16 December 2017
         o Bug 782423 - Help 10.2. Setting Preferences is outdated #105
         o Changing text in Help to reflect changes in Preferences dialogs.
         o Translation of the german guides metafile

 2.6.18 - 24 September 2017
         o The Italian Help translation, which uniquely uses a PO file, is
           frozen at commit 78cfa76 because of lack of a translator to
           maintain it.
         o Bug 120940 - Document how automatic decimal points work.
         o Begin a Russian translation of the Guide by Dimitry Mangul.
         o Some spelling corrections in the German Guide.

 2.6.17 - 2 July 2017
         o Improve internationalization of the Tutorial and Concepts Guide.
	 o Bug 781711: Add reversing transaction definition
	 o Bug 781714: Add Reversing Transaction text for Help document

 2.6.16 - 26 March 2017
         o Remove section "Changing the Register View" as better handled in Guide
	          section 4.2
	 o Bug 755174 - How to handle commission when buying and selling securities
	 o Bug 769457 - More info re register views
	 o Bug 774658 - Add warning to delete lot before deleting a cap gain/loss
	                transaction
	 o Glossary: Transactions have at least 2 splits
	 o Bug 777318 - Restructure Business Features Chapters.
	 o Bug 777287 - add tips on changing reconcile status of all transactions
	                in reconcile window panes

 2.6.15 - 18 December 2016
        o Bug 397135 - Hidden Accounts Show in ComboBox.
	o Bug 633590 - Add a Reports Chapter to the Tutorial and
	               Guide.
	o Bug 743671 - Add glossary to Tutorial and Guide.
	o Bug 755174 - Document using Lots to create investment
	               capital gains transactions.
	o Bug 770371 - Add note to documentation regarding Sort order
	               options.
	o Bug 775592 - General Rewrite of Guide Chapter on Multiple
	               Currencies.
 	o Bug 775919 - Change Documentation of contributors
	o Update German Translation (Mechtilde Stehmann)
	o Fix resolution of screenshots.
2017-12-18 21:25:02 +00:00
wiz
20fc72ccd8 gnucash: update to 2.6.19.
Between 2.6.18 and 2.6.19, the following bugfixes were accomplished:

    Bug 787497 - Disabling OFX, AqBanking or python-bindings support
    cripples the dist build target. (Partial: The requisite files
    for AQB and OFX are provided. There remain ways to break the
    distribution.)
    Bug 789928 - FTBFS with libdbi 0.9.0-5 on Debian
    Failed to create file
    "/usr/share/glib-2.0/schemas/gschemas.compiled.XY789Y".

Some other fixes not associated with reported bugs:

    A better way to handle MySQL's 0000-00-00 invalid date indicator.
    Fix python build and test errors on Mac.
    Add translator hint comments to C and glade files.
    Improve type of bank accounts in SKR03
    Stop testing GObject's handling of invalid parameters
2017-12-18 20:55:27 +00:00
adam
83114e727c py-braintree: updated to 3.39.1
braintree 3.39.1
Fix spec to expect PayPal transactions to move to settling rather than settled
Fix AchMandate.acceptedAt attribute parsing
Fix regression for http_strategy.http_do
2017-12-15 07:50:42 +00:00
adam
1b427432fb py-ofxparse: updated to 0.17
0.17:
Bug fixes.
2017-12-01 10:35:17 +00:00
adam
8977d31a36 Revbump after textproc/icu update 2017-11-30 16:45:00 +00:00
wiz
20f7c989fe recursive bump for libxkbcommon removal from at-spi2-core 2017-11-23 17:19:40 +00:00
adam
9a7315108c py-braintree: updated to 3.39.0
3.39.0

Add support for upgrading a PayPal future payment refresh token to a billing agreement
Fix braintree.Dispute.search to take a list of search criteria
Add logic to remove deprecation warnings for encodestring and decodestring when used with python 3
Fix spec to expect PayPal transaction to settle immediately after successful capture
Add GrantedPaymentInstrumentUpdate webhook support
Add ability to create a transaction from a shared nonce
Add options -> paypal -> shipping for creating & updating customers as well as creating payment methods
Do not convert to Decimal if amount is None in AuthorizationAdjustement
Add device_data_captured field to risk_data
Add bin_data to payment_method_nonce
2017-11-23 10:22:15 +00:00
wiz
bd481e288a p5-Finance-Quote: update to 1.47.
1.47      2017-11-12 17:19:42+01:00 Europe/Brussels
        * Use AlphaVantage for currency quotes instead of Yahoo (Mike Alexander)

1.46      2017-11-12 17:13:15+01:00 Europe/Brussels
        * Drop long-obsolete debian directory (Florian Schlichting)
        * AlphaVantage:
          - added support for .IL => USD currency and division (Adriano Baldi)
          - graceful error catchup (Mike Alexander)
        * Yahoojson:
          - module adapted to new URL and returned json (Rafael Casali)
2017-11-14 09:45:44 +00:00
wiz
ab5f0e59f3 p5-Finance-Quote: update to 1.45.
1.45      2017-11-08 21:35:51+01:00 Europe/Brussels
        * alphavantage
          * more suffix - currency pairs added
          * GBP and GBX divided by 100
2017-11-13 15:19:41 +00:00
wiz
d361f1a2cd p5-Finance-Quote: update to 1.44.
1.44      2017-11-07 21:57:57+01:00 Europe/Brussels
        * Added currencies for .SA (Brazil) and .TO (Canada/Toronto) markets
        * Setup a pause of .7s between queries in AlphaVantage.pm to limit queries

1.43      2017-11-06 23:41:47+01:00 Europe/Brussels
        * Added currency for .DE market
        * BUGFIX in currency determination regex

1.42      2017-11-06 19:04:25+01:00 Europe/Brussels
        * more tests in alphavantage.t
        * BUG resolved: removed time from $last_refresh when markets are open

1.41      2017-11-06 16:06:41+01:00 Europe/Brussels
        * return symbol for AlphaVantage data

1.39
        * added AlphaVantage module (Matthew Patterson)
        * some other module changes: yahoojson, Morningstar, Bourso, TSX (not working)
2017-11-08 20:55:49 +00:00
adam
97f2d96b2d py-stripe: update to 1.67.0
1.67.0:
* Rename source `delete` to `detach` (and deprecate the former)
2017-10-12 08:06:47 +00:00
adam
e77743fae7 py-stripe: update to 1.66.0
1.66.0:
* Support length reads on list objects
2017-10-10 12:23:24 +00:00
khorben
a6242dacec Add cpuminer 2017-10-01 15:08:10 +00:00
khorben
37d7709345 Import cpuminer version 2.5.0
Multi-threaded CPU miner for Litecoin and Bitcoin, fork of Jeff Garzik's
reference cpuminer.
2017-10-01 15:07:14 +00:00
wiz
9eb907106f gnucash: update to 2.6.18.1.
2.6.18 - 24 September 2017

The following bugs are fixed:
     Bug 644898 - Calendar of upcoming SXes has various display issues
     Bug 647805 - Interdependent report options fail to change state after
                  using apply for a limited number of times.
     Bug 771246 - Set Invoice/Bill items date correctly from imported CSV.
     Bug 784284 - unifying "Clear the entry." tooltip on Loan Repayment
                  Calculator
     Bug 787479 - Persian currency symbol is doubled.

Other repairs not marked as bugs in git:
      Added Catalan Accounts for the New Account Assistant
      Fixed errors from loading init.py.
      Run the python bindings tests in a CMake build.
      Implement dist, distcheck, and uninstall targets for CMake build.

Updated Translations: Farsi, German, Japanese, Latvian, Serbian, Spanish
2017-09-30 08:21:25 +00:00
adam
7ff4553b98 ofxparse: update to 0.16
0.16:
Bug fixes.
2017-09-27 10:58:40 +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
maya
33ebf687dc revbump for requiring ICU 59.x 2017-09-18 09:52:56 +00:00
minskim
8792545dfc finance/Makefile: Add py-alphalens 2017-09-16 21:32:14 +00:00
minskim
ca861fd437 finance/py-alphalens: version 0.1.1
Alphalens is a Python Library for performance analysis of predictive
(alpha) stock factors. Alphalens works great with the Zipline open
source backtesting library, and Pyfolio which provides performance and
risk analysis of financial portfolios.
2017-09-16 21:31:35 +00:00
wiz
ef141a6b79 Reset maintainer 2017-09-16 19:26:41 +00:00
wiz
569927e1bd homebank: spelling fixes for DESCR 2017-09-16 16:17:05 +00:00
ryoon
0dfac2ddb7 Add homebank 2017-09-16 14:17:54 +00:00
ryoon
42f8d36b04 Import homebank-5.1.6 as finance/homebank from pkgsrc-wip/homebank.
HomeBank is the free software you have always wanted to manage your
personal accounts at home. The main concept is to be light, simple and
very easy to use. It brings you many features that allows you to analyze
your finances in adetailed way instantly and dynamically with powerfull
report tools based on filtering and graphical charts
2017-09-16 14:17:01 +00:00
wiz
e9e09641de py-fecon235: Fix DEPENDS lines to include "-[0-9]*" 2017-09-15 06:40:44 +00:00
minskim
15fd23f618 finance/Makefile: Add py-fecon235 2017-09-14 16:16:17 +00:00
minskim
a6ce0ef70b Import py-fecon235-5.17.0722 as finance/py-fecon235
fecon235 is a free open source project for software tools in financial
economics. It provides code for research notebooks which are
executable scripts capable of statistical computations, as well as,
collection of raw data in real-time. This serves to verify theoretical
ideas and practical methods interactively.
2017-09-14 16:15:45 +00:00
minskim
2b6af951c2 finance/Makefile: Add py-empyrical 2017-09-13 16:12:15 +00:00
minskim
f261d7abb9 Import py-empyrical-0.3.2 as finance/py-empyrical
empyrical is a Python library with performance and risk statistics
commonly used in quantitative finance.
2017-09-13 16:10:21 +00:00
wiz
8b491f4178 Simplify. Mark as only working with python-2.x, and enable python by
default.
Bump PKGREVISION.
2017-09-06 21:08:09 +00:00
wiz
3110a02dbc Comment out dead sites. 2017-09-06 10:40:25 +00:00
wiz
303dc564fb Update some URLs. 2017-09-04 18:55:07 +00:00
wiz
403535a932 Updated moneyguru to 2.11.0.
2.11.0 (2017-08-23)

    Avoid duplicate logging to both stderr and NSLog. [cocoa] #476
    Improve build process on Mac OS. [cocoa] #474
    Fixed year handling in macOS date formats. [cocoa] #477
    Fixed currency fetching for ranges greater than 30 days. #479
    Add an option to enter date elements from left to right instead of the default d -> m -> y order. #480
    Fix crash during pane drag & drop. [qt]
    Fix Bank of Canada currency fetching. It was broken.
    Fix quirks with edition mode during transaction addition. [qt]
    Add UTF-16 support to CSV imports. #486
    Improve autofill by allowing it to autofill more often.
    Improve build process.
2017-09-04 14:45:43 +00:00
wiz
42426a5a45 Follow some redirects. 2017-09-03 08:53:04 +00:00
adam
04fd938906 3.38.0
Add iDEAL webhook support
Add AuthorizationAdjustment class and authorization_adjustments to Transaction
Coinbase is no longer a supported payment method. PaymentMethodNoLongerSupported will be returned for Coinbase operations
Add facilitated details to Transaction if present
Add submit_for_settlement option to Subscription.retry_charge
Add options -> paypal -> description for creating and updating subscriptions
Add Braintree.Dispute.find
Add braintree.Dispute.accept
Add braintree.Dispute.add_file_evidence
Add braintree.Dispute.add_text_evidence
Add braintree.Dispute.finalize
Add braintree.Dispute.find
Add braintree.Dispute.remove_evidence
Add braintree.Dispute.search
Add braintree.DocumentUpload
2017-08-27 12:14:41 +00:00
adam
931d707fe2 Revbump for boost update 2017-08-24 20:03:08 +00:00
adam
d3de8ba7c3 The Braintree Python library provides integration access to the Braintree
Gateway.
2017-07-07 07:43:42 +00:00
wiz
143be29c4f Updated gnucash to 2.6.17.
2.6.17 - 2 July 2017

The following bugs are fixed:
      Bug 603379 - Prevent changing some Account Options if it has transactions
                   Followup: Relax the account type change restrictions again.
		   In the new implementation account types can'tz be changed
		   for an account with splits:
		   - if the change woud force a commodity change
		     (to/from normal accounts from/to stock related accounts)
		   - for immutable accounts
		   At the time of this commit the following account types are
		   considered immutable:
		   - Accounts Receivable
		   - Accounts Payable
		   - Trading accounts
      Bug 776396 - Foreign currency reports, amounts are not aligned correctly
                   Improve the styling of the table element used for foreign
		   currencies in the Balance sheet report so they end up
		   aligned with the other currencies.
      Bug 780845 - link in github repo README file needs correction/editing
      Bug 780889 - Split-register transactions result in invalid price:type
                   "transaction": Add 'transaction' to the schema and document
		   it in gnc-pricedb.h.
      Bug 781634 - Alert on missing account currency when opening account
      	  	   Also separate translatable commodity namespace strings
                   from those used in storage:
		   There is now a separate GNC_COMMODITY_NS_ISO_GUI
		   label to be used everywhere the user needs to read
		   'Currency namespace'. It's currently set to
		   'Currencies' and can be translated.

      Bug 782274 - Transactions produced by Transfer Funds or Process Payment
                   dialogs sort to beginning of day and do not honor NUM field
		   for custom sorting.
      Bug 782897 - Stock Split Assistant crashes GnuCash if you enter a New
                   Price and that already exists in the Price DB
      Bug 783095 - gnucash-2.6.16 segfaults on startup
      Bug 784317 - typo in 'import customers or vendors from text file' dialog

Other repairs not marked as bugs in git:
      Properly define the template namespace rather than using a local string
         everywhere
      Correctly store time64 0 in the SQL backend: The SQL backend ignored
         time64 0 when saving dates. time64 is a perfectly valid timestamp
	 (1970-01-01 00:00:00) and should be stored.
      Clamp time64 values passed to GDateTime functions to the valid range.
         Fixes a bug reported on the mailing list wherein a date of 0000-00-00
         in a MySql database would crash GnuCash. Such dates may come from a bad
         conversion of 1970-01-01 or from a crash.
      Add XSU to iso-4217-currencies
      Some banks include additional purpose information for a transaction in
         non-swift-section 17 (aka transaction text). If available, this
	 transaction text is put in front of the other purpose texts to provide
	 full transaction information. Adds a preference to control import
	 behaivour of transaction text.

Updated Translations: Arabic, Turkish
2017-07-03 11:49:37 +00:00
maya
acde551f94 Fix build with perl 5.26 2017-06-12 07:30:16 +00:00
ryoon
17cfb59fe1 Recursive revbump from lang/perl5 5.26.0 2017-06-05 14:23:47 +00:00
ryoon
76884737ca Recursive revbump from boost update 2017-04-30 01:21:19 +00:00
adam
75a9285105 Revbump after icu update 2017-04-22 21:03:07 +00:00
wiz
1da44da49a Updated gnucash to 2.6.16.
2.6.16 - 26 March 2017

The following bugs are fixed:
      Bug 516920 - Calendar Pop up disappears of the left side.
      Bug 603379 - Prevent changing some Account Options if it has transactions
      Bug 670731 - Future Value not working with Loan Scheduled transaction
      Bug 739571 - Matching imported transactions doesn't indicate previously
                   matched entries
      Bug 759934 - Tiny reports in HiDPI (workaround).
      Bug 766630 - gui dialog for sorting transactions to accounts after aqbanking
                   import broken
      Bug 767032 - Bad invoices from importing "posted" needing currency conversion
                   Only auto-post if the posted_to account name is valid, there's
		   no currency conversion, or the invoice customer's currency
		   matches the A/R account currency. Tell the user what happened
		   with a dialog.
      Bug 773945 - Select Security Dialog Not User Friendly:
                   Add a new namespace “ALL NON-CURRENCY” to the namespace (type)
		   selector lists on the security picker and price editor which
		   causes the commodity list to include all non-security
		   commodities.
      Bug 776247 - PriceEditor thinks Currency XXX is an actual currency and
                   tries to retrieve prices for it.
      Bug 776380 - Gross value of bills charged back instead of net value
      Bug 776494 - Wrong menu entry in Tip of the day
      Bug 776517 - Trial Balance Report: Total Debits Issue re $0 Commodity
                   Accounts and Price Source Mode Set to "Nearest in Time" or
		   "Most Recent"
      Bug 776564 - Creating a scheduled transaction from an existing transaction
                   does not include the notes field.
      Bug 778208 - Scheduling 2nd, 3rd or 4th Wed doesn't seem to work.
      Bug 779217 - Transactions rounded to 5 decimal places when opening file.
      Bug 779411 - jqplot fixes for piechart and syntax error.
      Bug 777875 - Reports with charts are flickering in certain circumstances
      Bug 777949 - Accounts implicitly created in ledger attempt creation twice

Other repairs not marked as bugs in git:
      Use "Billing Information" as in other biz modules
      Update local symbol for MUR.
      Online banking: Add output of bank messages that might occasionally be
             received.
      Allow only date entry for opening balances on new accounts.
      Enable taxinvoice to show net price: Add gncEntryGetNetPrice. Create an
             option in taxinvoice to either use gncEntryGetNetPrice or
             gncEntryGetPrice
      Make SQL full-DB sync safer and clean up automatically if it's interrupted
             by a system or network failure.
      Extend account color to all columns in the account hierarchy page
      Localize the word “CURRENCY” used in the commodity namespace selectors.

The following translations have been updated: Catalan, Dutch, Finnish, German. Portuguese, Russian, Serbian.
2017-04-05 16:45:47 +00:00
fhajny
2d1e7331a3 Remove traces of textproc/php-dom which is not needed anymore, now that dom is built into PHP. Bump resp. PKGREVISION. 2017-04-05 12:33:47 +00:00
darcy
3b1a9887de Add missing DEPENDS on devel/py-rauth. 2017-03-17 20:46:51 +00:00
wiz
8767f16a69 Fix MASTER_SITES. 2017-03-17 08:42:37 +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
ryoon
50aefac5f6 Recursive revbump from graphics/libwebp 2017-02-28 15:19:58 +00:00
wiz
42e32098a1 Switch py-dateutils to plain DEPENDS.
It supports both python 2 and 3 nowadays.
2017-02-20 17:00:35 +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
ryoon
72c3cb198b Recursive revbump from fonts/harfbuzz 2017-02-12 06:24:36 +00:00
wiz
7ac05101c6 Recursive bump for harfbuzz's new graphite2 dependency. 2017-02-06 13:54:36 +00:00
rodent
e30b53ad7d Update Tryton to 4.2.1. No aggregated changelog, but this fixes some bugs
that I submitted upstream. Fix variable expansion in trytond's MESSAGE.
2017-01-10 23:07:41 +00:00
rodent
2237be0dee MAINTAIN, since i imported these. Anyone else can have them at any time if
desired.
2017-01-04 23:45:27 +00:00
adam
76632718ac Revbump after boost update 2017-01-01 16:05:55 +00:00
wiz
7f84153239 Add python-3.6 to incompatible versions. 2017-01-01 14:43:22 +00:00
wiz
49f2f6eab4 Some dependency (sphinx?) changed their behaviour -- update PLIST.
Bump PKGREVISION.
2016-12-25 12:47:44 +00:00
ryoon
6d1185a3c5 Remove duplicate --disable-dbi option 2016-12-24 11:05:15 +00:00
wiz
631eb164a8 Updated gnucash to 2.6.15.
GnuCash 2.6.15 Release 2016-12-18

The GnuCash development team proudly announces GnuCash 2.6.15, the
fifteenth maintenance release in the 2.6-stable series.

The following bugs are fixed:

      Bug 340991 - Default price source for reports not good.
      Bug 516920 - Scheduled trasaction calendar popup off screen.
      Bug 685329 - Crashes on non-existent date.
      Bug 769124 - Australian (GMT-10) OFX transactions imported have
                   previous day's date.
      Bug 770364 - Sign of Value in Lots in Account window seems inconsistent.
      Bug 771246 - Set Invoice/Bill items date correctly from imported CSV.
      Bug 771617 - Build fails because test test-report-utilities is
    	           sensitive to time of day/timezone.
      Bug 772313 - Invalid DOCTYPE in report generation.
      Bug 772369 - Replace use of guile's internal date/time functions.
      Bug 772382 - Date off-by-one after DST change.
      Bug 772484 - Segfault on Transaction edit.
      Bug 773808 - Export Report Crash.
      Bug 774237 - FTBFS under some timezones (eg. GMT-14).
      Bug 775368 - "Average cost" price source problem.
      Bug 775385 - Confusing error message which includes the text "file file".
      Bug 775567 - Importing QIF file from PayPal crashes GnuCash 2.6.14
                   on Windows XP service pack 3/
      Bug 775912 - Tips of the Day shows content only once very 3 times.

Other repairs that weren't marked as bugs in git:
      Fix report html header
      Changed the default value for date format in Business Options
      Change report resizing when not in view
      Add an image for the report tab
      Show empty business splits in lot viewer
      Business check & repair - correct lot invoice state
      When juggling business splits while scrubbing set both value and amount
      Update progress bar while running Check & Repair
      Remove lot from account while deleting the lot
      Ensure that the Namespace combo box is initialized to a valid iter.
      Fix CSV importer to handle GMT + 13 Timezone (New Zealand Daylight
      Fix broken german account template 'Kontenrahmen für
           Wohnungswirtschaft'.Time).

Translation Updates: Danish, German, Serbian
2016-12-19 10:19:22 +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
ryoon
36ed025474 Recursive revbump from textproc/icu 58.1 2016-12-04 05:17:03 +00:00
adam
3b88bd43a5 Revbump post boost update 2016-10-07 18:25:29 +00:00
wiz
f9be0f25cc Updated moneyguru to 2.10.2.
2.10.2 (2016-08-28)

    Fix crash when opening panels on some versions of PyQt. [qt] #456
    Fix misalignment of bold figures in networth/profit sheets. [cocoa] #459
2016-10-02 18:43:20 +00:00
wiz
70bc7ade29 Updated gnucash to 2.6.14.
The GnuCash development team announces GnuCash 2.6.14, the fourteenth maintenance release in the 2.6-stable series.

Changes

Between 2.6.13 and 2.6.14, the following bugfixes were accomplished:

    Bug 643025 - RFE: Ability to select and open multiple invoices.
    Bug 733153 - Ambiguous view of buttons in search dialog Linux version.
    Bug 742461 - SQL backend doesn't update customer info.
    Bug 756416 - CSV data with Posted information will always have last invoice not posted
    Bug 761667 - Crash opening associated location that has no scheme.
    Bug 762901 - [PATCH] Fix saving Account Treeview sort order.
    Bug 769730 - Investments: Lots in This Account, Closed column shows date 25/11/1833 instead of Open.
    Bug 769746 - Zero interest loan formula fails.
    Bug 770113 - compiling issue with libdbi.
    Bug 770136 - 'Reverse Order' in 'View'->'Sort by' is not saved.
    Bug 770181 - gnc-fq-dump incorrectly says "quote cannot be used...
    Bug 770196 - cppcheck va_list not closed.
    Bug 770303 - Incorrect commodity match during import OFX and possible solution.
    Bug 771246 - Set Invoice/Bill items date correctly from imported CSV.
    Bug 771379 - GnuCash doesn't support Russian Ruble Symbol.

Some other fixes not associated with reported bugs:

    Build improvements with CMake, accomodation for Guile-2.0.12 on Gentoo.
    Change the date_posted timestamp from midnight local to 11:00 AM GMT, which will be the same date in nearly all timezones.
    SX - Recalculate all occurrences of all SX if the calendar is updated to start on another month
    SX Window: correctly show first sx on calendar when it is moved to next weekday.
    Work around libofx bug which caused OFX imports to have the wrong date_posted when in an eastern-hemisphere timezone and not daylight time.
    Indicate in the register when a transaction has an associated file or URI. The indicator will appear in the "reconciled" column in the second transaction line (enable double-line view to see it).

Translation Updates: Dutch, German, Serbian, Spanish
2016-09-18 11:00:02 +00:00
wiz
4830d2040a Updated gnucash-docs to 2.6.14.
Concurrent with the release of Gnucash 2.6.14 we're pleased to also release a new version 2.6.14 of the companion Help and Tutorial and Concepts Guide.

    Bug 115461 - Highlight need to select Account Type when adding new stock account.
    Bug 687290 - Add new chapter for expense type accounts.
    Bug 769457 - Add note to 4.3 of Guide.
    Bug 769746 - Zero interest loan formula fails.
    Bug 771230 - Modify Windows portion of 8.6.3 of Guide.
    Bug 769663 - Link update on Tutorial and concepts guide
    Updated german translation of the F::Q appendix.
    Update the list of Finance::Quote methods to 1.38.
2016-09-18 10:53:21 +00:00
wiz
f7f55d1014 Depend on guile-slib now that it's possible again.
It does not seem to be a hard dependency, but other distributions
like Debian depend on it as well.

Bump PKGREVISION.
2016-09-15 16:25:52 +00:00
wiz
e4025746ee After guile's and guile20's installation prefixes have changed, it's time
to bump their dependencies (except those that were bumped in the last 24
hours already).
2016-09-15 14:32:39 +00:00
taca
5f84ee3fc6 Drop "55" (php55) from PHP_VERSIONS_ACCEPTED. 2016-09-11 17:03:25 +00:00
jnemeth
ead65a5bf5 Add libdbi option and enable it by default. libdbi is similar to
p5-DBI in that it provides a database independent interface that
can be use to access a variety of different types of database
servers.

Approved By: wiz
2016-08-30 04:13:13 +00:00
wiz
1682c6507d Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided
by the infrastructure.

Mark a couple more packages as not ready for python-3.x.
2016-08-28 15:48:28 +00:00
wiz
6e4ce25369 Updated moneyguru to 2.10.1.
2.10.1 (2016-07-30)

    Fix crash on exporting. [qt] #461
    Fix destination path on “Save as”. [qt] #466
    Fix crash when using filters. [qt] #464
2016-08-21 12:07:51 +00:00
richard
2ec9b8c33d update to py-vatnumber-1.2
Version 1.2 - 2014-06-25
* Use python-stdnum
* Add support for proxy

This permits to remove the option 'suds' which
prevented py3 support.
2016-08-18 20:48:43 +00:00
adam
77b8ed74db Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
wen
753541fe5b Update to 1.35
No upstream changelog found.
2016-07-29 04:19:56 +00:00
wen
8a73917f44 Add LICENSE 2016-07-28 06:58:32 +00:00
wen
e2362ae5fc Update to 1.02
Upstream changes:
1.02 2014-06-30 NEILB
    - Updated github repo URL after changing my github username
    - Added Algorithm::Damm and Math::CheckDigits to SEE ALSO
    - Fixed errors in pod: using c<...> instead of C<...> and
      not escaping the > character.
    - Added [MetaJSON] to dist.ini so META.json is included in releases

1.01 2014-06-30 NEILB

    - Added SEE ALSO section with links to other LUHN modules.
    - Renamed CHANGES to Changes and reformatted as per CPAN::Changes::Spec
    - Moved LUHN.pm to lib/Algorithm/LUHN.pm, as per convention
    - Switched to Dist::Zilla and set min perl version to 5.006
    - Improved doc for is_valid(), in response to RT#43842
2016-07-28 06:57:07 +00:00
wiz
ad0031c15e Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
wiz
2b0a009d0e Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:37:46 +00:00
wiz
8f6a6ff62d Updated moneyguru to 2.10.0.
2.10.0 (2016-03-13)

    From now on, the changelog is going to be a bit more developer-oriented.
    Drop Windows support, maybe temporarily. Details
    Add plugin management view. #451
    Refuse to load moneyguru files with unsupported currencies. #451
    Add “inactive” flag to accounts. #412
    Fix transaction duplication bug on undo. #438
    Fix crash on CSV import [qt]. #440
    Fix debit/credit preference so it’s properly restored on startup. #421
    Fix “Show Account” for transactions having multiple splits to the same account.
    Make all panels instantiate on-the-fly rather than on startup. #434
    Various minor refactorings. See git log.
    Improve build process, notably on OS X. See git log.
    Convert to Qt5.
    Remove dependency on sgmllib3k.
    Bump Python requirement to 3.4+.
2016-07-03 11:50:29 +00:00
wiz
72311f8cf8 Updated gnucash-docs to 2.6.13.
Concurrent with the release of Gnucash 2.6.13 we're pleased to also release a new version 2.6.13 of the companion Help and Tutorial and Concepts Guide.

    Fix the very stale Release Schedule link in the Guide.
    Bug 637004 - Document Payable/Receivable Aging Rpts and new options for allowing customer and vendor address info to display.
    Fix unclear statement re docbook stylesheets in README.
    Bug 712764 - Clarify Account type designations in the Tutorial.
    Bug 751686 - Explain how to use Find Transaction to report per-employee.
    Bug 754239 - Fix order of Report menu items.
    Bug 754239 - Update Report menu item names to Save Report Configuration.
    Bug 765131 - Document Investment Return of Capital in the Guide.
2016-06-30 17:43:43 +00:00
wiz
79930ef1c8 Updated gnucash to 2.6.13.
Between 2.6.12 and 2.6.13, the following bugfixes were accomplished:

    Bug 637004 - Optionally allow customer and vendor address info to display.
    Bug 736352 - Expense Voucher adds tax automatically.
    Bug 748983 - Crash after opening money transfer dialog twice.
    Bug 760021 - File "Save As" to an existing file...overwrites without warning.
    Bug 761672 - Transfer made to placeholder account.
    Bug 764248 - saved-reports-2.4-backup line endings unconventional.
    Bug 764871 - Crash starting gnu cash.
    Bug 765859 - The budget reports missing in Hungarian edition
    Bug 766028 - crash on manual addition of price entry in Price Editor.
    Bug 766200 - Three-up printing does not position the third check properly. A few bugs in the calculation of check positions while printing checks have been corrected. If you manually edited the check formats to compensate for these positioning errors in previous versions of gnucash, you may have to undo these changes. Please check this before printing your next check.
    Bug 766688 - Minimal fraction of BYN should be 1/100.
    Bug 766960 - gnucash-make-guids fails to run due to hardcoded paths.
    Bug 767824 - Some UTC timezones incorrectly recognized on Windows 7

Some other fixes not associated with reported bugs:

    The gnc_gui_refresh_all statement in gnc_book_options_dialog_apply_cb causes the 'apply' and 'OK' buttons to be set to sensitive on the open Book Options dialog in some circumstances; this commit causes them to be reset to insensitive, as they should be.
    Check printing: make logic easier to follow.
    Fix adjust_sql_option_string test on Windows.
    Don't try to compile test_adjust_sql_options on windows, it won't link.
    Fix the CMake build by linking gnc-backend-dbi for test-backend-dbi.
    Improved adjust_sql_options_string, added tests.
    Improve quickfill performance on huge registers.
    Mac Localization: Prefer the country to the language for fall-back locales, on the theory that in countries where multiple languages are in use similar date and number formats will apply regardless of language, and especially that the default currency will be the same regardless of language. Also ensure that the specified language is in the list passed to gettext; the net effect of which is that the user will effectively get the requested localization behavior.
    Update README to refer to wiki Submitting_Patches and regarding pull request policy.

Translation Updates: Dutch, Russian, Serbian

Standard Chart-of-Accounts Localizations Updates: Finnish, Sweden_Finnish, and Åland Islands Finnish.
2016-06-30 17:43:22 +00:00
wiz
86a78fce2e Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
wiz
57199de455 Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
prlw1
104960e18b revbump for libsoup's ABI issue 2016-05-03 11:40:00 +00:00
ryoon
ac20a93574 Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
wiz
b2e9b65e6c Update gnucash-docs to 2.6.12.
Concurrent with the release of Gnucash 2.6.12 we're pleased to also release a new version 2.6.12 of the companion Help and Tutorial and Concepts Guide.

   New Portuguese Translations from Pedro Albuquerque!
   Bug 639776 - Update instructions for updating quote prices by cron.
   Bug 649283 - Add links to where common report preferences are set.
   Bug 728722 - Setting number format details appear wrong in Help, section 10.3.4. Counters Book Options Tab
   Bug 729265 - Update documentation for Invoice and Bill payments to reflect the new features.
   Bug 761025 - Add missing sect Guide ch2.8: New book options in New Acct Hierarchy.
   Bug 762088 - Remove Section 9.4.3 From Guide that offered simplistic advice about money and life that does nothing to explain GnuCash functionality or use.
   Bug 762656 - Add note to Guide section 2.3.3 For Column Widths
2016-04-09 05:55:46 +00:00
wiz
7d41ee030e Update gnucash to 2.6.12.
GnuCash 2.6.12 released

The GnuCash development team announces GnuCash 2.6.12, the twelfth maintenance release in the 2.6-stable series. Please take the tour of all the new features.
Changes

Between 2.6.11 and 2.6.12, the following bugfixes were accomplished:

   Bug 482186 - Customer and vendor report for partners who get invoiced/paid in foreign currency show total labeled with the symbol of the default currency
   Bug 620281 - Adding reversing transaction to bill transactions creates undeleteable transactions
   Bug 642292 - General Ledger report - 'Primary Sort Key' value is not persistent
   Bug 687504 - Not possible to reset an invoice/bill counter format
   Bug 693342 - Print (bottom) prints to middle for 3-check pages
   Bug 719904 - Decide payment type only based on the account type involved
   Bug 720934 - Barcharts with many data points have overlapping x-axis labels
   Bug 722996 - Cannot add stock price on Price Editor
   Bug 723689 - Splash screen doesn't set the floating hint.
   Bug 728074 - Posting bill converts currency to itself using 0 rate
   Bug 728722 - Setting number format details appear wrong in Help, section 10.3.4. Counters Book Options Tab
   Bug 733164 - [MacOSX] Command-H Invokes Help->Help Contents
   Bug 742352 - Budget Summary section does not show expense totals
   Bug 744157 - Tip about subaccount is confusing
   Bug 754209 - Bills can be posted from "find bill" search results even if bill is already posted and results in extra $ posted to A/P
   Bug 754856 - scheduled transaction fails without warning
   Bug 756469 - CSV Invoice Import - Items with double quote escape not imported.
   Bug 760015 - guile support is automagic
   Bug 760529 - Get Quotes updates value just once per day
   Bug 760711 - Non-ASCII characters not shown in Report Name when a report is created with 2.6.12
   Bug 762971 - Duplicating multiple invoices results in invoices without an ID number
   Bug 763111 - commodities prices editor creates hidden db entries
   Bug 763146 - Invalid exchange rate is recorded when entering multi-currency transaction
   Bug 763279 - GnuCash has empty reports in recent Gentoo builds.

Some other fixes not associated with reported bugs:

   Various memory leaks.
   More multi-currency fixes related to bug 763146.
   Be more liberal in accepting business counter custom formats: li, lli, I64i, and whatever is defined to G_GINT_64 or PRIx64 on the system on which GnuCash is compiled.
   Correctly re-value splits when the transaction currency is changed.
   Reset the transaction currency to match the currently open account when auto-completing.
   Refine the MacOS X localization when the system-generated POSIX locale isn't a supported locale: Prefer the country to language when selecting an alternate locale, but still pass the original language to gettext.
   Check printing: extract address from invoice/bill for payment transactions.

Robert Fewell has contributed changes needed to allow the 2.6 series to read files from future major versions which use GUIDs instead of names to identify matched accounts with the Bayesian import matcher.

Translations Updated:Azeri, Basque, Catalan, Chinese (Simplified), Czech, Danish, Dutch, Farsi, Japanese, Kinyarwandan, Portuguese, Slovak, Serbian, Swedish, Turkish, Ukrainian.
Important update notification
2016-04-08 22:00:40 +00:00
jperkin
17661ff9a5 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
wiz
5c86faa14e Fix default-on libofx option.
Bump PKGREVISION.
2016-02-01 13:51:47 +00:00
wiz
f9624fda2c Update moneyguru to 2.9.4:
2.9.4 (2015-12-24)

    Fix crash on loading files with inconsistent currencies. (#442)
    Fix Account Lookup up/down keys. [Linux, Windows] (#444)
    Fix crash on saving file to non-existing folder. (#445)

2.9.3 (2015-07-14)

    Fix crash on startup. [Mac] (#437)

2.9.2 (2015-07-09)

    Fix broken currency rates fetching. (#435)
    Fix broken date editing widget [Linux, Windows] (#436)

2.9.1 (2015-07-06)

    Fix import regression introduced in v2.9.0 (#432)
    Fix visual glitch in schedule panel [Linux, Windows] (#430)
    Fix keyboard bindings in all panels [Linux, Windows] (#433)

2.9.0 (2015-07-01)

    Add “+” button in the tab bar [Linux, Windows] (#424)
    Add API for import plugins (#420)
    Add Russian localization (with documentation!) (Igor Fokusov)
    Improve plugin system by introducing a “core plugins” concept (#429)
    Improve currency rates fetching by diversifying sources (#415)
    Improve reliability of automated tests [Windows] (#417)
    Optimize amount column sizes in single-currency cases [Linux, Windows] (#414)
    Remember panels position and size [Linux, Windows] (#364)
    Make Schedule Panel’s stop date field clearable (#400)
    Fix various UI glitches [Linux, Windows] (#418, #413, #411)
    Fix crash when importing empty files (#416)
2016-02-01 13:32:10 +00:00
wiz
67732d419b Add two files installed with latest py-sphinx, and depend on it.
Bump PKGREVISION.
2016-01-17 19:05:09 +00:00
wiz
bdbdb19e62 Update gnucash-docs to 2.6.11:
More German Translation work from Mechtilde Stehmann.
New German illustrations from Mechtilde Stehmann.
Use letter size paper only in US or C locales. The rest of the
world uses metric A4 paper. The locale detection is done at configure.
Clarify that creating a postponed SX will use the original date.
Bug 759859 - Reconcilation does not convert transactions' currency
to the main one making reconcilation impossible.
Bug 760016 - 2.6.10 and master dump script error while running configure.
Bug 760407 - Note account separator isn't always a colon.
2016-01-12 11:48:43 +00:00
wiz
a20e958d5e Update gnucash to 2.6.11:
Between 2.6.10 and 2.6.11, the following bugfixes were accomplished:

    Bug 680104 - Scheduled Tranaction formula not calculated when variables are mixed with constants.
    Bug 756335 - When importing, date selection causes exit crash.
    Bug 759570 - Postponing a repeating SX skips over the instance.
    Bug 759674 - GNUCash crashes when importing invoices or bills with delimited import.
    Bug 759859 - Reconcilation does not convert transactions' currency to the main one making reconcilation impossible.
    Bug 760052 - missing flag translatable in Custom Report.
    Bug 760079 - Translations comments: Remove translatable flag from placeholder labels in dialog date-close.
    Bug 760398 - Cancelling the creation of a duplicate bill or invoice doesn't reset the invoice number counter

Some other fixes not associated with reported bugs:

    Add Account.AssignLots to python bindings.
    Allow panel that provides information about TXF categories to be adjusted by the user in the Income Tax Information dialog under Edit->Tax Report Options.
    Minor improvement to information provided about TXF categories in the Income Tax Information dialog under Edit->Tax Report Options.

Translations Updated: German.
2016-01-12 10:33:45 +00:00
adam
011bef3059 Revbump after updating graphics/libwebp 2016-01-06 10:46:49 +00:00