pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/finance/gnucash



Module Name:    pkgsrc
Committed By:   wiz
Date:           Mon Jun 25 08:02:36 UTC 2018

Modified Files:
        pkgsrc/finance/gnucash: Makefile PLIST distinfo

Log Message:
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


To generate a diff of this commit:
cvs rdiff -u -r1.259 -r1.260 pkgsrc/finance/gnucash/Makefile
cvs rdiff -u -r1.67 -r1.68 pkgsrc/finance/gnucash/PLIST
cvs rdiff -u -r1.86 -r1.87 pkgsrc/finance/gnucash/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/finance/gnucash/Makefile
diff -u pkgsrc/finance/gnucash/Makefile:1.259 pkgsrc/finance/gnucash/Makefile:1.260
--- pkgsrc/finance/gnucash/Makefile:1.259       Mon Apr 30 06:06:07 2018
+++ pkgsrc/finance/gnucash/Makefile     Mon Jun 25 08:02:36 2018
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.259 2018/04/30 06:06:07 wiz Exp $
+# $NetBSD: Makefile,v 1.260 2018/06/25 08:02:36 wiz Exp $
 
-DISTNAME=              gnucash-3.1
+DISTNAME=              gnucash-3.2
 CATEGORIES=            finance
 MASTER_SITES=          ${MASTER_SITE_SOURCEFORGE:=gnucash/}
 EXTRACT_SUFX=          .tar.bz2

Index: pkgsrc/finance/gnucash/PLIST
diff -u pkgsrc/finance/gnucash/PLIST:1.67 pkgsrc/finance/gnucash/PLIST:1.68
--- pkgsrc/finance/gnucash/PLIST:1.67   Mon Apr 30 06:06:07 2018
+++ pkgsrc/finance/gnucash/PLIST        Mon Jun 25 08:02:36 2018
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.67 2018/04/30 06:06:07 wiz Exp $
+@comment $NetBSD: PLIST,v 1.68 2018/06/25 08:02:36 wiz Exp $
 bin/gnc-fq-check
 bin/gnc-fq-dump
 bin/gnc-fq-helper
@@ -241,7 +241,6 @@ lib/gnucash/libgncmod-ledger-core.so
 lib/gnucash/libgncmod-locale-reports-us.so
 lib/gnucash/libgncmod-log-replay.so
 lib/gnucash/libgncmod-qif-import.so
-lib/gnucash/libgncmod-qif.so
 lib/gnucash/libgncmod-register-core.so
 lib/gnucash/libgncmod-register-gnome.so
 lib/gnucash/libgncmod-report-gnome.so
@@ -265,6 +264,7 @@ lib/gnucash/scm/ccache/2.2/gnucash/baz.g
 lib/gnucash/scm/ccache/2.2/gnucash/business-core.go
 lib/gnucash/scm/ccache/2.2/gnucash/core-utils.go
 lib/gnucash/scm/ccache/2.2/gnucash/engine.go
+lib/gnucash/scm/ccache/2.2/gnucash/engine/test/srfi64-extras.go
 lib/gnucash/scm/ccache/2.2/gnucash/engine/test/test-extras.go
 lib/gnucash/scm/ccache/2.2/gnucash/foo.go
 lib/gnucash/scm/ccache/2.2/gnucash/gettext.go
@@ -301,13 +301,12 @@ lib/gnucash/scm/ccache/2.2/gnucash/repor
 lib/gnucash/scm/ccache/2.2/gnucash/report/report-gnome.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/report-system.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/report-system/collectors.go
-lib/gnucash/scm/ccache/2.2/gnucash/report/report-system/list-extras.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/report-system/report-collectors.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/report-system/test/test-collectors.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/report-system/test/test-extras.go
-lib/gnucash/scm/ccache/2.2/gnucash/report/report-system/test/test-list-extras.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/report-system/test/test-load-report-system-module.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/report-system/test/test-report-utilities.go
+lib/gnucash/scm/ccache/2.2/gnucash/report/report-system/test/test-test-extras.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/account-piecharts.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/account-summary.go
@@ -328,17 +327,13 @@ lib/gnucash/scm/ccache/2.2/gnucash/repor
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/general-ledger.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/income-gst-statement.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/income-statement.go
-lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/net-barchart.go
-lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/net-linechart.go
+lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/net-charts.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/portfolio.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/price-scatter.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/register.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/sx-summary.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/test/test-cash-flow.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/test/test-cashflow-barchart.go
-lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/test/test-generic-category-report.go
-lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/test/test-generic-net-barchart.go
-lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/test/test-generic-net-linechart.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/test/test-standard-category-report.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/test/test-standard-net-barchart.go
 lib/gnucash/scm/ccache/2.2/gnucash/report/standard-reports/test/test-standard-net-linechart.go
@@ -366,6 +361,7 @@ lib/gnucash/scm/ccache/2.2/gnucash/unitt
 lib/gnucash/scm/ccache/2.2/gnucash/utilities.go
 lib/gnucash/scm/ccache/2.2/hooks.go
 lib/gnucash/scm/ccache/2.2/html-acct-table.go
+lib/gnucash/scm/ccache/2.2/html-anytag.go
 lib/gnucash/scm/ccache/2.2/html-barchart.go
 lib/gnucash/scm/ccache/2.2/html-document.go
 lib/gnucash/scm/ccache/2.2/html-fonts.go
@@ -377,6 +373,10 @@ lib/gnucash/scm/ccache/2.2/html-style-sh
 lib/gnucash/scm/ccache/2.2/html-table.go
 lib/gnucash/scm/ccache/2.2/html-text.go
 lib/gnucash/scm/ccache/2.2/html-utilities.go
+lib/gnucash/scm/ccache/2.2/json.go
+lib/gnucash/scm/ccache/2.2/json/builder.go
+lib/gnucash/scm/ccache/2.2/json/parser.go
+lib/gnucash/scm/ccache/2.2/json/syntax.go
 lib/gnucash/scm/ccache/2.2/migrate-prefs.go
 lib/gnucash/scm/ccache/2.2/options-utilities.go
 lib/gnucash/scm/ccache/2.2/options.go
@@ -1023,6 +1023,7 @@ share/gnucash/scm/gnucash/baz.scm
 share/gnucash/scm/gnucash/business-core.scm
 share/gnucash/scm/gnucash/core-utils.scm
 share/gnucash/scm/gnucash/engine.scm
+share/gnucash/scm/gnucash/engine/test/srfi64-extras.scm
 share/gnucash/scm/gnucash/engine/test/test-extras.scm
 share/gnucash/scm/gnucash/foo.scm
 share/gnucash/scm/gnucash/gettext.scm
@@ -1063,13 +1064,12 @@ share/gnucash/scm/gnucash/report/receiva
 share/gnucash/scm/gnucash/report/report-gnome.scm
 share/gnucash/scm/gnucash/report/report-system.scm
 share/gnucash/scm/gnucash/report/report-system/collectors.scm
-share/gnucash/scm/gnucash/report/report-system/list-extras.scm
 share/gnucash/scm/gnucash/report/report-system/report-collectors.scm
 share/gnucash/scm/gnucash/report/report-system/test/test-collectors.scm
 share/gnucash/scm/gnucash/report/report-system/test/test-extras.scm
-share/gnucash/scm/gnucash/report/report-system/test/test-list-extras.scm
 share/gnucash/scm/gnucash/report/report-system/test/test-load-report-system-module.scm
 share/gnucash/scm/gnucash/report/report-system/test/test-report-utilities.scm
+share/gnucash/scm/gnucash/report/report-system/test/test-test-extras.scm
 share/gnucash/scm/gnucash/report/standard-reports.scm
 share/gnucash/scm/gnucash/report/standard-reports/account-piecharts.scm
 share/gnucash/scm/gnucash/report/standard-reports/account-summary.scm
@@ -1090,17 +1090,13 @@ share/gnucash/scm/gnucash/report/standar
 share/gnucash/scm/gnucash/report/standard-reports/general-ledger.scm
 share/gnucash/scm/gnucash/report/standard-reports/income-gst-statement.scm
 share/gnucash/scm/gnucash/report/standard-reports/income-statement.scm
-share/gnucash/scm/gnucash/report/standard-reports/net-barchart.scm
-share/gnucash/scm/gnucash/report/standard-reports/net-linechart.scm
+share/gnucash/scm/gnucash/report/standard-reports/net-charts.scm
 share/gnucash/scm/gnucash/report/standard-reports/portfolio.scm
 share/gnucash/scm/gnucash/report/standard-reports/price-scatter.scm
 share/gnucash/scm/gnucash/report/standard-reports/register.scm
 share/gnucash/scm/gnucash/report/standard-reports/sx-summary.scm
 share/gnucash/scm/gnucash/report/standard-reports/test/test-cash-flow.scm
 share/gnucash/scm/gnucash/report/standard-reports/test/test-cashflow-barchart.scm
-share/gnucash/scm/gnucash/report/standard-reports/test/test-generic-category-report.scm
-share/gnucash/scm/gnucash/report/standard-reports/test/test-generic-net-barchart.scm
-share/gnucash/scm/gnucash/report/standard-reports/test/test-generic-net-linechart.scm
 share/gnucash/scm/gnucash/report/standard-reports/test/test-standard-category-report.scm
 share/gnucash/scm/gnucash/report/standard-reports/test/test-standard-net-barchart.scm
 share/gnucash/scm/gnucash/report/standard-reports/test/test-standard-net-linechart.scm
@@ -1130,6 +1126,7 @@ share/gnucash/scm/gnucash/unittest-suppo
 share/gnucash/scm/gnucash/utilities.scm
 share/gnucash/scm/hooks.scm
 share/gnucash/scm/html-acct-table.scm
+share/gnucash/scm/html-anytag.scm
 share/gnucash/scm/html-barchart.scm
 share/gnucash/scm/html-document.scm
 share/gnucash/scm/html-fonts.scm
@@ -1141,6 +1138,10 @@ share/gnucash/scm/html-style-sheet.scm
 share/gnucash/scm/html-table.scm
 share/gnucash/scm/html-text.scm
 share/gnucash/scm/html-utilities.scm
+share/gnucash/scm/json.scm
+share/gnucash/scm/json/builder.scm
+share/gnucash/scm/json/parser.scm
+share/gnucash/scm/json/syntax.scm
 share/gnucash/scm/migrate-prefs.scm
 share/gnucash/scm/options-utilities.scm
 share/gnucash/scm/options.scm

Index: pkgsrc/finance/gnucash/distinfo
diff -u pkgsrc/finance/gnucash/distinfo:1.86 pkgsrc/finance/gnucash/distinfo:1.87
--- pkgsrc/finance/gnucash/distinfo:1.86        Mon Apr 30 06:06:07 2018
+++ pkgsrc/finance/gnucash/distinfo     Mon Jun 25 08:02:36 2018
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.86 2018/04/30 06:06:07 wiz Exp $
+$NetBSD: distinfo,v 1.87 2018/06/25 08:02:36 wiz Exp $
 
-SHA1 (gnucash-3.1.tar.bz2) = db4e266337ef83eae451d284cb21482db5406f4a
-RMD160 (gnucash-3.1.tar.bz2) = 706d574f6050c49e08ff5bd9300fc416050ed976
-SHA512 (gnucash-3.1.tar.bz2) = 1ca28c042e8d1a25ea29cba73a3f694b40b4db3bbb90a42c0b4d3a6b41cc63e42152406fd95bef6328d382a7ede2d9848486653f704595b24d6bbfafd3451c0c
-Size (gnucash-3.1.tar.bz2) = 13374489 bytes
+SHA1 (gnucash-3.2.tar.bz2) = 91a2dbed3e08026e6d2765851361d698e377e4d3
+RMD160 (gnucash-3.2.tar.bz2) = 9cd51ace65afb30a65aabd28ffd32b0703161a46
+SHA512 (gnucash-3.2.tar.bz2) = 2283f7cc3426b012297f654376a369021cce0f2de2354350d05cbd6a8610f512d418e4fedab15c811e11841d01bd47c5a1458c05dd14eaad3bfc0bafd7ed7cb0
+Size (gnucash-3.2.tar.bz2) = 13384008 bytes



Home | Main Index | Thread Index | Old Index