Mon Feb 1 13:32:10 2016 UTC ()
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)


(wiz)
diff -r1.13 -r1.14 pkgsrc/finance/moneyguru/Makefile
diff -r1.10 -r1.11 pkgsrc/finance/moneyguru/PLIST
diff -r1.5 -r1.6 pkgsrc/finance/moneyguru/distinfo

cvs diff -r1.13 -r1.14 pkgsrc/finance/moneyguru/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/finance/moneyguru/Attic/Makefile 2016/01/17 19:05:09 1.13
+++ pkgsrc/finance/moneyguru/Attic/Makefile 2016/02/01 13:32:10 1.14
@@ -1,19 +1,18 @@ @@ -1,19 +1,18 @@
1# $NetBSD: Makefile,v 1.13 2016/01/17 19:05:09 wiz Exp $ 1# $NetBSD: Makefile,v 1.14 2016/02/01 13:32:10 wiz Exp $
2# 2#
3# any of ~* is fine, they are the same and just there for Ubuntu 3# any of ~* is fine, they are the same and just there for Ubuntu
4# so moneyguru's built for all releases 4# so moneyguru's built for all releases
5DISTNAME= moneyguru-2.8.2 5DISTNAME= moneyguru-2.9.4
6PKGREVISION= 1 
7CATEGORIES= finance 6CATEGORIES= finance
8MASTER_SITES= ${MASTER_SITE_GITHUB:=hsoft/} 7MASTER_SITES= ${MASTER_SITE_GITHUB:=hsoft/}
9 8
10MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://www.hardcoded.net/moneyguru/ 10HOMEPAGE= http://www.hardcoded.net/moneyguru/
12COMMENT= Personal finance management application 11COMMENT= Personal finance management application
13LICENSE= modified-bsd 12LICENSE= modified-bsd
14 13
15DEPENDS+= ${PYPKGPREFIX}-polib-[0-9]*:../../devel/py-polib 14DEPENDS+= ${PYPKGPREFIX}-polib-[0-9]*:../../devel/py-polib
16DEPENDS+= ${PYPKGPREFIX}-qt4-[0-9]*:../../x11/py-qt4 15DEPENDS+= ${PYPKGPREFIX}-qt4-[0-9]*:../../x11/py-qt4
17DEPENDS+= ${PYPKGPREFIX}-sphinx>=1.3.4nb1:../../textproc/py-sphinx 16DEPENDS+= ${PYPKGPREFIX}-sphinx>=1.3.4nb1:../../textproc/py-sphinx
18DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3 17DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
19DEPENDS+= ${PYPKGPREFIX}-cElementTree-[0-9]*:../../textproc/py-cElementTree 18DEPENDS+= ${PYPKGPREFIX}-cElementTree-[0-9]*:../../textproc/py-cElementTree
@@ -46,21 +45,21 @@ BASE_ARCH= amd64 @@ -46,21 +45,21 @@ BASE_ARCH= amd64
46BASE_ARCH= ${MACHINE_ARCH} 45BASE_ARCH= ${MACHINE_ARCH}
47.endif 46.endif
48 47
49PLIST_SUBST+= BASE_ARCH=${BASE_ARCH:Q} 48PLIST_SUBST+= BASE_ARCH=${BASE_ARCH:Q}
50 49
51do-configure: 50do-configure:
52 cd ${WRKSRC} && ${PYTHONBIN} configure.py 51 cd ${WRKSRC} && ${PYTHONBIN} configure.py
53 52
54do-build: 53do-build:
55 cd ${WRKSRC} && ${PYTHONBIN} build.py 54 cd ${WRKSRC} && ${PYTHONBIN} build.py
56 ${CHMOD} +x ${WRKSRC}/run.py 55 ${CHMOD} +x ${WRKSRC}/run.py
57 56
58do-install: 57do-install:
59 cd ${WRKSRC} && pax -pp -rw ambuttonbar build cocoa cocoalib core data help hscommon images locale plugin_examples psmtabbarcontrol qt qtlib run.py ${DESTDIR}${PREFIX}/share/moneyguru 58 cd ${WRKSRC} && pax -pp -rw ambuttonbar build cocoa cocoalib core data help hscommon images locale psmtabbarcontrol qt qtlib run.py ${DESTDIR}${PREFIX}/share/moneyguru
60 ${INSTALL_DATA} ${WRKSRC}/debian/moneyguru.desktop ${DESTDIR}${PREFIX}/share/applications 59 ${INSTALL_DATA} ${WRKSRC}/debian/moneyguru.desktop ${DESTDIR}${PREFIX}/share/applications
61 ${LN} -s ${DESTDIR}${PREFIX}/share/moneyguru/run.py ${DESTDIR}${PREFIX}/bin/moneyguru 60 ${LN} -s ${DESTDIR}${PREFIX}/share/moneyguru/run.py ${DESTDIR}${PREFIX}/bin/moneyguru
62 61
63.include "../../lang/python/application.mk" 62.include "../../lang/python/application.mk"
64.include "../../lang/python/extension.mk" 63.include "../../lang/python/extension.mk"
65.include "../../sysutils/desktop-file-utils/desktopdb.mk" 64.include "../../sysutils/desktop-file-utils/desktopdb.mk"
66.include "../../mk/bsd.pkg.mk" 65.include "../../mk/bsd.pkg.mk"

cvs diff -r1.10 -r1.11 pkgsrc/finance/moneyguru/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/finance/moneyguru/Attic/PLIST 2016/01/17 19:05:09 1.10
+++ pkgsrc/finance/moneyguru/Attic/PLIST 2016/02/01 13:32:10 1.11
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.10 2016/01/17 19:05:09 wiz Exp $ 1@comment $NetBSD: PLIST,v 1.11 2016/02/01 13:32:10 wiz Exp $
2bin/moneyguru 2bin/moneyguru
3share/applications/moneyguru.desktop 3share/applications/moneyguru.desktop
4share/moneyguru/ambuttonbar/AMButtonBar.h 4share/moneyguru/ambuttonbar/AMButtonBar.h
5share/moneyguru/ambuttonbar/AMButtonBar.m 5share/moneyguru/ambuttonbar/AMButtonBar.m
6share/moneyguru/ambuttonbar/AMButtonBarCell.h 6share/moneyguru/ambuttonbar/AMButtonBarCell.h
7share/moneyguru/ambuttonbar/AMButtonBarCell.m 7share/moneyguru/ambuttonbar/AMButtonBarCell.m
8share/moneyguru/ambuttonbar/AMButtonBarItem.h 8share/moneyguru/ambuttonbar/AMButtonBarItem.h
9share/moneyguru/ambuttonbar/AMButtonBarItem.m 9share/moneyguru/ambuttonbar/AMButtonBarItem.m
10share/moneyguru/ambuttonbar/LICENSE 10share/moneyguru/ambuttonbar/LICENSE
11share/moneyguru/ambuttonbar/NSBezierPath_AMAdditons.h 11share/moneyguru/ambuttonbar/NSBezierPath_AMAdditons.h
12share/moneyguru/ambuttonbar/NSBezierPath_AMAdditons.m 12share/moneyguru/ambuttonbar/NSBezierPath_AMAdditons.m
13share/moneyguru/ambuttonbar/NSColor_AMAdditions.h 13share/moneyguru/ambuttonbar/NSColor_AMAdditions.h
14share/moneyguru/ambuttonbar/NSColor_AMAdditions.m 14share/moneyguru/ambuttonbar/NSColor_AMAdditions.m
@@ -230,26 +230,30 @@ share/moneyguru/build/locale/es/LC_MESSA @@ -230,26 +230,30 @@ share/moneyguru/build/locale/es/LC_MESSA
230share/moneyguru/build/locale/es/LC_MESSAGES/ui.mo 230share/moneyguru/build/locale/es/LC_MESSAGES/ui.mo
231share/moneyguru/build/locale/fr/LC_MESSAGES/columns.mo 231share/moneyguru/build/locale/fr/LC_MESSAGES/columns.mo
232share/moneyguru/build/locale/fr/LC_MESSAGES/core.mo 232share/moneyguru/build/locale/fr/LC_MESSAGES/core.mo
233share/moneyguru/build/locale/fr/LC_MESSAGES/qtlib.mo 233share/moneyguru/build/locale/fr/LC_MESSAGES/qtlib.mo
234share/moneyguru/build/locale/fr/LC_MESSAGES/ui.mo 234share/moneyguru/build/locale/fr/LC_MESSAGES/ui.mo
235share/moneyguru/build/locale/it/LC_MESSAGES/columns.mo 235share/moneyguru/build/locale/it/LC_MESSAGES/columns.mo
236share/moneyguru/build/locale/it/LC_MESSAGES/core.mo 236share/moneyguru/build/locale/it/LC_MESSAGES/core.mo
237share/moneyguru/build/locale/it/LC_MESSAGES/qtlib.mo 237share/moneyguru/build/locale/it/LC_MESSAGES/qtlib.mo
238share/moneyguru/build/locale/it/LC_MESSAGES/ui.mo 238share/moneyguru/build/locale/it/LC_MESSAGES/ui.mo
239share/moneyguru/build/locale/nl/LC_MESSAGES/columns.mo 239share/moneyguru/build/locale/nl/LC_MESSAGES/columns.mo
240share/moneyguru/build/locale/nl/LC_MESSAGES/core.mo 240share/moneyguru/build/locale/nl/LC_MESSAGES/core.mo
241share/moneyguru/build/locale/nl/LC_MESSAGES/qtlib.mo 241share/moneyguru/build/locale/nl/LC_MESSAGES/qtlib.mo
242share/moneyguru/build/locale/nl/LC_MESSAGES/ui.mo 242share/moneyguru/build/locale/nl/LC_MESSAGES/ui.mo
 243share/moneyguru/build/locale/ru/LC_MESSAGES/columns.mo
 244share/moneyguru/build/locale/ru/LC_MESSAGES/core.mo
 245share/moneyguru/build/locale/ru/LC_MESSAGES/qtlib.mo
 246share/moneyguru/build/locale/ru/LC_MESSAGES/ui.mo
243share/moneyguru/build/temp.${LOWER_OPSYS}-${OS_VERSION}-${BASE_ARCH}-${PYVERSSUFFIX}/core/modules/amount.o 247share/moneyguru/build/temp.${LOWER_OPSYS}-${OS_VERSION}-${BASE_ARCH}-${PYVERSSUFFIX}/core/modules/amount.o
244share/moneyguru/cocoa/InfoTemplate.plist 248share/moneyguru/cocoa/InfoTemplate.plist
245share/moneyguru/cocoa/MGConst.h 249share/moneyguru/cocoa/MGConst.h
246share/moneyguru/cocoa/controllers/MGAccountLookup.h 250share/moneyguru/cocoa/controllers/MGAccountLookup.h
247share/moneyguru/cocoa/controllers/MGAccountLookup.m 251share/moneyguru/cocoa/controllers/MGAccountLookup.m
248share/moneyguru/cocoa/controllers/MGAccountProperties.h 252share/moneyguru/cocoa/controllers/MGAccountProperties.h
249share/moneyguru/cocoa/controllers/MGAccountProperties.m 253share/moneyguru/cocoa/controllers/MGAccountProperties.m
250share/moneyguru/cocoa/controllers/MGAccountReassignPanel.h 254share/moneyguru/cocoa/controllers/MGAccountReassignPanel.h
251share/moneyguru/cocoa/controllers/MGAccountReassignPanel.m 255share/moneyguru/cocoa/controllers/MGAccountReassignPanel.m
252share/moneyguru/cocoa/controllers/MGAccountSheetView.h 256share/moneyguru/cocoa/controllers/MGAccountSheetView.h
253share/moneyguru/cocoa/controllers/MGAccountSheetView.m 257share/moneyguru/cocoa/controllers/MGAccountSheetView.m
254share/moneyguru/cocoa/controllers/MGAppDelegate.h 258share/moneyguru/cocoa/controllers/MGAppDelegate.h
255share/moneyguru/cocoa/controllers/MGAppDelegate.m 259share/moneyguru/cocoa/controllers/MGAppDelegate.m
@@ -646,28 +650,38 @@ share/moneyguru/core/model/entry.pyc @@ -646,28 +650,38 @@ share/moneyguru/core/model/entry.pyc
646share/moneyguru/core/model/oven.py 650share/moneyguru/core/model/oven.py
647share/moneyguru/core/model/oven.pyc 651share/moneyguru/core/model/oven.pyc
648share/moneyguru/core/model/recurrence.py 652share/moneyguru/core/model/recurrence.py
649share/moneyguru/core/model/recurrence.pyc 653share/moneyguru/core/model/recurrence.pyc
650share/moneyguru/core/model/sort.py 654share/moneyguru/core/model/sort.py
651share/moneyguru/core/model/sort.pyc 655share/moneyguru/core/model/sort.pyc
652share/moneyguru/core/model/transaction.py 656share/moneyguru/core/model/transaction.py
653share/moneyguru/core/model/transaction.pyc 657share/moneyguru/core/model/transaction.pyc
654share/moneyguru/core/model/transaction_list.py 658share/moneyguru/core/model/transaction_list.py
655share/moneyguru/core/model/transaction_list.pyc 659share/moneyguru/core/model/transaction_list.pyc
656share/moneyguru/core/model/undo.py 660share/moneyguru/core/model/undo.py
657share/moneyguru/core/model/undo.pyc 661share/moneyguru/core/model/undo.pyc
658share/moneyguru/core/modules/amount.c 662share/moneyguru/core/modules/amount.c
659share/moneyguru/core/plugin.py 663share/moneyguru/core/plugin/__init__.py
660share/moneyguru/core/plugin.pyc 664share/moneyguru/core/plugin/__init__.pyc
 665share/moneyguru/core/plugin/account_list.py
 666share/moneyguru/core/plugin/api.py
 667share/moneyguru/core/plugin/api.pyc
 668share/moneyguru/core/plugin/base_import_actions.py
 669share/moneyguru/core/plugin/base_import_bind.py
 670share/moneyguru/core/plugin/boc_currency_provider.py
 671share/moneyguru/core/plugin/currency_rates.py
 672share/moneyguru/core/plugin/payee_breakdown.py
 673share/moneyguru/core/plugin/stale_currency_provider.py
 674share/moneyguru/core/plugin/yahoo_currency_provider.py
661share/moneyguru/core/saver/__init__.py 675share/moneyguru/core/saver/__init__.py
662share/moneyguru/core/saver/__init__.pyc 676share/moneyguru/core/saver/__init__.pyc
663share/moneyguru/core/saver/csv.py 677share/moneyguru/core/saver/csv.py
664share/moneyguru/core/saver/native.py 678share/moneyguru/core/saver/native.py
665share/moneyguru/core/saver/native.pyc 679share/moneyguru/core/saver/native.pyc
666share/moneyguru/core/saver/qif.py 680share/moneyguru/core/saver/qif.py
667share/moneyguru/core/tests/__init__.py 681share/moneyguru/core/tests/__init__.py
668share/moneyguru/core/tests/account_test.py 682share/moneyguru/core/tests/account_test.py
669share/moneyguru/core/tests/base.py 683share/moneyguru/core/tests/base.py
670share/moneyguru/core/tests/budget_test.py 684share/moneyguru/core/tests/budget_test.py
671share/moneyguru/core/tests/completion_test.py 685share/moneyguru/core/tests/completion_test.py
672share/moneyguru/core/tests/conftest.py 686share/moneyguru/core/tests/conftest.py
673share/moneyguru/core/tests/currency_test.py 687share/moneyguru/core/tests/currency_test.py
@@ -720,51 +734,54 @@ share/moneyguru/core/tests/import_test.p @@ -720,51 +734,54 @@ share/moneyguru/core/tests/import_test.p
720share/moneyguru/core/tests/load_test.py 734share/moneyguru/core/tests/load_test.py
721share/moneyguru/core/tests/loader/__init__.py 735share/moneyguru/core/tests/loader/__init__.py
722share/moneyguru/core/tests/loader/base_test.py 736share/moneyguru/core/tests/loader/base_test.py
723share/moneyguru/core/tests/loader/csv_test.py 737share/moneyguru/core/tests/loader/csv_test.py
724share/moneyguru/core/tests/loader/native_test.py 738share/moneyguru/core/tests/loader/native_test.py
725share/moneyguru/core/tests/loader/ofx_test.py 739share/moneyguru/core/tests/loader/ofx_test.py
726share/moneyguru/core/tests/loader/qif_test.py 740share/moneyguru/core/tests/loader/qif_test.py
727share/moneyguru/core/tests/main_test.py 741share/moneyguru/core/tests/main_test.py
728share/moneyguru/core/tests/model/__init__.py 742share/moneyguru/core/tests/model/__init__.py
729share/moneyguru/core/tests/model/account_test.py 743share/moneyguru/core/tests/model/account_test.py
730share/moneyguru/core/tests/model/amount_test.py 744share/moneyguru/core/tests/model/amount_test.py
731share/moneyguru/core/tests/model/currency_test.py 745share/moneyguru/core/tests/model/currency_test.py
732share/moneyguru/core/tests/model/date_test.py 746share/moneyguru/core/tests/model/date_test.py
 747share/moneyguru/core/tests/plugin_test.py
733share/moneyguru/core/tests/pref_test.py 748share/moneyguru/core/tests/pref_test.py
734share/moneyguru/core/tests/reconciliation_test.py 749share/moneyguru/core/tests/reconciliation_test.py
735share/moneyguru/core/tests/recurrence_test.py 750share/moneyguru/core/tests/recurrence_test.py
736share/moneyguru/core/tests/split_test.py 751share/moneyguru/core/tests/split_test.py
737share/moneyguru/core/tests/testdata/csv/ambiguous_date.csv 752share/moneyguru/core/tests/testdata/csv/ambiguous_date.csv
738share/moneyguru/core/tests/testdata/csv/amount_with_dollar_sign.csv 753share/moneyguru/core/tests/testdata/csv/amount_with_dollar_sign.csv
739share/moneyguru/core/tests/testdata/csv/comments.csv 754share/moneyguru/core/tests/testdata/csv/comments.csv
740share/moneyguru/core/tests/testdata/csv/date_field_with_garbage.csv 755share/moneyguru/core/tests/testdata/csv/date_field_with_garbage.csv
741share/moneyguru/core/tests/testdata/csv/fortis.csv 756share/moneyguru/core/tests/testdata/csv/fortis.csv
742share/moneyguru/core/tests/testdata/csv/fortis_with_r_linesep.csv 757share/moneyguru/core/tests/testdata/csv/fortis_with_r_linesep.csv
743share/moneyguru/core/tests/testdata/csv/increase_decrease.csv 758share/moneyguru/core/tests/testdata/csv/increase_decrease.csv
744share/moneyguru/core/tests/testdata/csv/invalid_utf8_char.csv 759share/moneyguru/core/tests/testdata/csv/invalid_utf8_char.csv
745share/moneyguru/core/tests/testdata/csv/lots_of_noise.csv 760share/moneyguru/core/tests/testdata/csv/lots_of_noise.csv
746share/moneyguru/core/tests/testdata/csv/mixed_linesep.csv 761share/moneyguru/core/tests/testdata/csv/mixed_linesep.csv
747share/moneyguru/core/tests/testdata/csv/null_character.csv 762share/moneyguru/core/tests/testdata/csv/null_character.csv
748share/moneyguru/core/tests/testdata/csv/quoted_sep.csv 763share/moneyguru/core/tests/testdata/csv/quoted_sep.csv
749share/moneyguru/core/tests/testdata/csv/short_dates.csv 764share/moneyguru/core/tests/testdata/csv/short_dates.csv
750share/moneyguru/core/tests/testdata/csv/simple.csv 765share/moneyguru/core/tests/testdata/csv/simple.csv
751share/moneyguru/core/tests/testdata/csv/unquoted_with_footer.csv 766share/moneyguru/core/tests/testdata/csv/unquoted_with_footer.csv
752share/moneyguru/core/tests/testdata/csv/utf8_encoded.csv 767share/moneyguru/core/tests/testdata/csv/utf8_encoded.csv
753share/moneyguru/core/tests/testdata/csv/weird_sep.csv 768share/moneyguru/core/tests/testdata/csv/weird_sep.csv
754share/moneyguru/core/tests/testdata/moneyguru/account_in_group.moneyguru 769share/moneyguru/core/tests/testdata/moneyguru/account_in_group.moneyguru
755share/moneyguru/core/tests/testdata/moneyguru/invalid_account_type.moneyguru 770share/moneyguru/core/tests/testdata/moneyguru/invalid_account_type.moneyguru
756share/moneyguru/core/tests/testdata/moneyguru/multi_currency.moneyguru 771share/moneyguru/core/tests/testdata/moneyguru/multi_currency.moneyguru
757share/moneyguru/core/tests/testdata/moneyguru/multiple_transfer_references.moneyguru 772share/moneyguru/core/tests/testdata/moneyguru/multiple_transfer_references.moneyguru
 773share/moneyguru/core/tests/testdata/moneyguru/no_balance_account.moneyguru
 774share/moneyguru/core/tests/testdata/moneyguru/off_currency_reconciliations.moneyguru
758share/moneyguru/core/tests/testdata/moneyguru/payee_description.moneyguru 775share/moneyguru/core/tests/testdata/moneyguru/payee_description.moneyguru
759share/moneyguru/core/tests/testdata/moneyguru/simple.moneyguru 776share/moneyguru/core/tests/testdata/moneyguru/simple.moneyguru
760share/moneyguru/core/tests/testdata/moneyguru/with_references1.moneyguru 777share/moneyguru/core/tests/testdata/moneyguru/with_references1.moneyguru
761share/moneyguru/core/tests/testdata/moneyguru/with_references2.moneyguru 778share/moneyguru/core/tests/testdata/moneyguru/with_references2.moneyguru
762share/moneyguru/core/tests/testdata/moneyguru/with_references3.moneyguru 779share/moneyguru/core/tests/testdata/moneyguru/with_references3.moneyguru
763share/moneyguru/core/tests/testdata/ofx/blank_first_line.ofx 780share/moneyguru/core/tests/testdata/ofx/blank_first_line.ofx
764share/moneyguru/core/tests/testdata/ofx/ccstmtrs.ofx 781share/moneyguru/core/tests/testdata/ofx/ccstmtrs.ofx
765share/moneyguru/core/tests/testdata/ofx/desjardins.ofx 782share/moneyguru/core/tests/testdata/ofx/desjardins.ofx
766share/moneyguru/core/tests/testdata/ofx/desjardins2.ofx 783share/moneyguru/core/tests/testdata/ofx/desjardins2.ofx
767share/moneyguru/core/tests/testdata/ofx/desjardins3.ofx 784share/moneyguru/core/tests/testdata/ofx/desjardins3.ofx
768share/moneyguru/core/tests/testdata/ofx/fortis.ofx 785share/moneyguru/core/tests/testdata/ofx/fortis.ofx
769share/moneyguru/core/tests/testdata/ofx/ing.qfx 786share/moneyguru/core/tests/testdata/ofx/ing.qfx
770share/moneyguru/core/tests/testdata/ofx/invalid.ofx 787share/moneyguru/core/tests/testdata/ofx/invalid.ofx
@@ -941,26 +958,39 @@ share/moneyguru/help/image_win/import_ma @@ -941,26 +958,39 @@ share/moneyguru/help/image_win/import_ma
941share/moneyguru/help/image_win/import_window.png 958share/moneyguru/help/image_win/import_window.png
942share/moneyguru/help/image_win/reconciliation_checkmark.png 959share/moneyguru/help/image_win/reconciliation_checkmark.png
943share/moneyguru/help/it/basics.rst 960share/moneyguru/help/it/basics.rst
944share/moneyguru/help/it/cash.rst 961share/moneyguru/help/it/cash.rst
945share/moneyguru/help/it/changelog.tmpl 962share/moneyguru/help/it/changelog.tmpl
946share/moneyguru/help/it/credits.tmpl 963share/moneyguru/help/it/credits.tmpl
947share/moneyguru/help/it/currencies.rst 964share/moneyguru/help/it/currencies.rst
948share/moneyguru/help/it/editing.rst 965share/moneyguru/help/it/editing.rst
949share/moneyguru/help/it/faq.rst 966share/moneyguru/help/it/faq.rst
950share/moneyguru/help/it/forecast.rst 967share/moneyguru/help/it/forecast.rst
951share/moneyguru/help/it/import.rst 968share/moneyguru/help/it/import.rst
952share/moneyguru/help/it/index.rst 969share/moneyguru/help/it/index.rst
953share/moneyguru/help/it/reconciliation.rst 970share/moneyguru/help/it/reconciliation.rst
 971share/moneyguru/help/ru/basics.rst
 972share/moneyguru/help/ru/cash.rst
 973share/moneyguru/help/ru/changelog.tmpl
 974share/moneyguru/help/ru/contribute.rst
 975share/moneyguru/help/ru/credits.tmpl
 976share/moneyguru/help/ru/currencies.rst
 977share/moneyguru/help/ru/editing.rst
 978share/moneyguru/help/ru/faq.rst
 979share/moneyguru/help/ru/forecast.rst
 980share/moneyguru/help/ru/import.rst
 981share/moneyguru/help/ru/index.rst
 982share/moneyguru/help/ru/plugins.rst
 983share/moneyguru/help/ru/reconciliation.rst
954share/moneyguru/hscommon/.gitignore 984share/moneyguru/hscommon/.gitignore
955share/moneyguru/hscommon/LICENSE 985share/moneyguru/hscommon/LICENSE
956share/moneyguru/hscommon/README 986share/moneyguru/hscommon/README
957share/moneyguru/hscommon/__init__.py 987share/moneyguru/hscommon/__init__.py
958share/moneyguru/hscommon/__init__.pyc 988share/moneyguru/hscommon/__init__.pyc
959share/moneyguru/hscommon/build.py 989share/moneyguru/hscommon/build.py
960share/moneyguru/hscommon/build.pyc 990share/moneyguru/hscommon/build.pyc
961share/moneyguru/hscommon/conflict.py 991share/moneyguru/hscommon/conflict.py
962share/moneyguru/hscommon/currency.py 992share/moneyguru/hscommon/currency.py
963share/moneyguru/hscommon/currency.pyc 993share/moneyguru/hscommon/currency.pyc
964share/moneyguru/hscommon/debug.py 994share/moneyguru/hscommon/debug.py
965share/moneyguru/hscommon/desktop.py 995share/moneyguru/hscommon/desktop.py
966share/moneyguru/hscommon/desktop.pyc 996share/moneyguru/hscommon/desktop.pyc
@@ -1092,32 +1122,34 @@ share/moneyguru/locale/it/LC_MESSAGES/co @@ -1092,32 +1122,34 @@ share/moneyguru/locale/it/LC_MESSAGES/co
1092share/moneyguru/locale/it/LC_MESSAGES/columns.po 1122share/moneyguru/locale/it/LC_MESSAGES/columns.po
1093share/moneyguru/locale/it/LC_MESSAGES/core.mo 1123share/moneyguru/locale/it/LC_MESSAGES/core.mo
1094share/moneyguru/locale/it/LC_MESSAGES/core.po 1124share/moneyguru/locale/it/LC_MESSAGES/core.po
1095share/moneyguru/locale/it/LC_MESSAGES/qtlib.mo 1125share/moneyguru/locale/it/LC_MESSAGES/qtlib.mo
1096share/moneyguru/locale/it/LC_MESSAGES/ui.mo 1126share/moneyguru/locale/it/LC_MESSAGES/ui.mo
1097share/moneyguru/locale/it/LC_MESSAGES/ui.po 1127share/moneyguru/locale/it/LC_MESSAGES/ui.po
1098share/moneyguru/locale/nl/LC_MESSAGES/columns.mo 1128share/moneyguru/locale/nl/LC_MESSAGES/columns.mo
1099share/moneyguru/locale/nl/LC_MESSAGES/columns.po 1129share/moneyguru/locale/nl/LC_MESSAGES/columns.po
1100share/moneyguru/locale/nl/LC_MESSAGES/core.mo 1130share/moneyguru/locale/nl/LC_MESSAGES/core.mo
1101share/moneyguru/locale/nl/LC_MESSAGES/core.po 1131share/moneyguru/locale/nl/LC_MESSAGES/core.po
1102share/moneyguru/locale/nl/LC_MESSAGES/qtlib.mo 1132share/moneyguru/locale/nl/LC_MESSAGES/qtlib.mo
1103share/moneyguru/locale/nl/LC_MESSAGES/ui.mo 1133share/moneyguru/locale/nl/LC_MESSAGES/ui.mo
1104share/moneyguru/locale/nl/LC_MESSAGES/ui.po 1134share/moneyguru/locale/nl/LC_MESSAGES/ui.po
 1135share/moneyguru/locale/ru/LC_MESSAGES/columns.mo
 1136share/moneyguru/locale/ru/LC_MESSAGES/columns.po
 1137share/moneyguru/locale/ru/LC_MESSAGES/core.mo
 1138share/moneyguru/locale/ru/LC_MESSAGES/core.po
 1139share/moneyguru/locale/ru/LC_MESSAGES/qtlib.mo
 1140share/moneyguru/locale/ru/LC_MESSAGES/ui.mo
 1141share/moneyguru/locale/ru/LC_MESSAGES/ui.po
1105share/moneyguru/locale/ui.pot 1142share/moneyguru/locale/ui.pot
1106share/moneyguru/plugin_examples/__init__.py 
1107share/moneyguru/plugin_examples/account_list.py 
1108share/moneyguru/plugin_examples/currency_rates.py 
1109share/moneyguru/plugin_examples/payee_breakdown.py 
1110share/moneyguru/plugin_examples/yahoo_currency_provider.py 
1111share/moneyguru/psmtabbarcontrol/.gitignore 1143share/moneyguru/psmtabbarcontrol/.gitignore
1112share/moneyguru/psmtabbarcontrol/Info.plist 1144share/moneyguru/psmtabbarcontrol/Info.plist
1113share/moneyguru/psmtabbarcontrol/NSBezierPath_AMShading.h 1145share/moneyguru/psmtabbarcontrol/NSBezierPath_AMShading.h
1114share/moneyguru/psmtabbarcontrol/NSBezierPath_AMShading.m 1146share/moneyguru/psmtabbarcontrol/NSBezierPath_AMShading.m
1115share/moneyguru/psmtabbarcontrol/PSMAquaTabStyle.h 1147share/moneyguru/psmtabbarcontrol/PSMAquaTabStyle.h
1116share/moneyguru/psmtabbarcontrol/PSMAquaTabStyle.m 1148share/moneyguru/psmtabbarcontrol/PSMAquaTabStyle.m
1117share/moneyguru/psmtabbarcontrol/PSMMetalTabStyle.h 1149share/moneyguru/psmtabbarcontrol/PSMMetalTabStyle.h
1118share/moneyguru/psmtabbarcontrol/PSMMetalTabStyle.m 1150share/moneyguru/psmtabbarcontrol/PSMMetalTabStyle.m
1119share/moneyguru/psmtabbarcontrol/PSMOverflowPopUpButton.h 1151share/moneyguru/psmtabbarcontrol/PSMOverflowPopUpButton.h
1120share/moneyguru/psmtabbarcontrol/PSMOverflowPopUpButton.m 1152share/moneyguru/psmtabbarcontrol/PSMOverflowPopUpButton.m
1121share/moneyguru/psmtabbarcontrol/PSMProgressIndicator.h 1153share/moneyguru/psmtabbarcontrol/PSMProgressIndicator.h
1122share/moneyguru/psmtabbarcontrol/PSMProgressIndicator.m 1154share/moneyguru/psmtabbarcontrol/PSMProgressIndicator.m
1123share/moneyguru/psmtabbarcontrol/PSMRolloverButton.h 1155share/moneyguru/psmtabbarcontrol/PSMRolloverButton.h
@@ -1148,27 +1180,26 @@ share/moneyguru/psmtabbarcontrol/images/ @@ -1148,27 +1180,26 @@ share/moneyguru/psmtabbarcontrol/images/
1148share/moneyguru/psmtabbarcontrol/images/TabClose_Front.tif 1180share/moneyguru/psmtabbarcontrol/images/TabClose_Front.tif
1149share/moneyguru/psmtabbarcontrol/images/TabClose_Front_Pressed.tif 1181share/moneyguru/psmtabbarcontrol/images/TabClose_Front_Pressed.tif
1150share/moneyguru/psmtabbarcontrol/images/TabClose_Front_Rollover.tif 1182share/moneyguru/psmtabbarcontrol/images/TabClose_Front_Rollover.tif
1151share/moneyguru/psmtabbarcontrol/images/TabControlRep.tif 1183share/moneyguru/psmtabbarcontrol/images/TabControlRep.tif
1152share/moneyguru/psmtabbarcontrol/images/TabIcon.tif 1184share/moneyguru/psmtabbarcontrol/images/TabIcon.tif
1153share/moneyguru/psmtabbarcontrol/images/TabNewMetal.png 1185share/moneyguru/psmtabbarcontrol/images/TabNewMetal.png
1154share/moneyguru/psmtabbarcontrol/images/TabNewMetalPressed.png 1186share/moneyguru/psmtabbarcontrol/images/TabNewMetalPressed.png
1155share/moneyguru/psmtabbarcontrol/images/TabNewMetalRollover.png 1187share/moneyguru/psmtabbarcontrol/images/TabNewMetalRollover.png
1156share/moneyguru/psmtabbarcontrol/images/overflowImage.tiff 1188share/moneyguru/psmtabbarcontrol/images/overflowImage.tiff
1157share/moneyguru/psmtabbarcontrol/images/overflowImagePressed.tif 1189share/moneyguru/psmtabbarcontrol/images/overflowImagePressed.tif
1158share/moneyguru/psmtabbarcontrol/images/pi.png 1190share/moneyguru/psmtabbarcontrol/images/pi.png
1159share/moneyguru/psmtabbarcontrol/waf 1191share/moneyguru/psmtabbarcontrol/waf
1160share/moneyguru/psmtabbarcontrol/wscript 1192share/moneyguru/psmtabbarcontrol/wscript
1161share/moneyguru/qt/ABOUT_LICENSE 
1162share/moneyguru/qt/__init__.py 1193share/moneyguru/qt/__init__.py
1163share/moneyguru/qt/app.py 1194share/moneyguru/qt/app.py
1164share/moneyguru/qt/const.py 1195share/moneyguru/qt/const.py
1165share/moneyguru/qt/controller/__init__.py 1196share/moneyguru/qt/controller/__init__.py
1166share/moneyguru/qt/controller/account/__init__.py 1197share/moneyguru/qt/controller/account/__init__.py
1167share/moneyguru/qt/controller/account/filter_bar.py 1198share/moneyguru/qt/controller/account/filter_bar.py
1168share/moneyguru/qt/controller/account/table.py 1199share/moneyguru/qt/controller/account/table.py
1169share/moneyguru/qt/controller/account/view.py 1200share/moneyguru/qt/controller/account/view.py
1170share/moneyguru/qt/controller/account_panel.py 1201share/moneyguru/qt/controller/account_panel.py
1171share/moneyguru/qt/controller/account_reassign_panel.py 1202share/moneyguru/qt/controller/account_reassign_panel.py
1172share/moneyguru/qt/controller/account_sheet.py 1203share/moneyguru/qt/controller/account_sheet.py
1173share/moneyguru/qt/controller/account_sheet_view.py 1204share/moneyguru/qt/controller/account_sheet_view.py
1174share/moneyguru/qt/controller/base_view.py 1205share/moneyguru/qt/controller/base_view.py

cvs diff -r1.5 -r1.6 pkgsrc/finance/moneyguru/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/finance/moneyguru/Attic/distinfo 2015/11/03 00:12:12 1.5
+++ pkgsrc/finance/moneyguru/Attic/distinfo 2016/02/01 13:32:10 1.6
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.5 2015/11/03 00:12:12 agc Exp $ 1$NetBSD: distinfo,v 1.6 2016/02/01 13:32:10 wiz Exp $
2 2
3SHA1 (moneyguru-2.8.2.tar.gz) = 09598cdde924612bf37ce34c56e785d0406ba14c 3SHA1 (moneyguru-2.9.4.tar.gz) = 7936001e25aa45b62503e512dc1e3b803e32be98
4RMD160 (moneyguru-2.8.2.tar.gz) = f3a5d922ff08841727d9809ef51ee11e4f543a24 4RMD160 (moneyguru-2.9.4.tar.gz) = a1117d15dc43a8e8b1ef5af49d8562599c2be2c3
5SHA512 (moneyguru-2.8.2.tar.gz) = f7d72254e259b0ffa7f16b809d66f430c0306dd0a06d35a6216767bada3e21a4129314dfa317a37cc89914ae2597167caffe95057d7c9df087bccb8eca101ed1 5SHA512 (moneyguru-2.9.4.tar.gz) = 9a5a7e748353ee7a156599fa31e092ad1943dde045655cd0eb001d08f0cf66cf01576a4b14686d94e736e7e7831848bd1b781fc764d62a23155ddf0b5a75c27f
6Size (moneyguru-2.8.2.tar.gz) = 4124870 bytes 6Size (moneyguru-2.9.4.tar.gz) = 4191381 bytes