Date: Saturday, April 10, 2021 @ 08:40:28
  Author: arojas
Revision: 915417

archrelease: copy trunk to community-x86_64

Added:
  kmymoney/repos/community-x86_64/PKGBUILD
    (from rev 915416, kmymoney/trunk/PKGBUILD)
  kmymoney/repos/community-x86_64/kmymoney-qsortfilterproxymodel-crash.patch
    (from rev 915416, kmymoney/trunk/kmymoney-qsortfilterproxymodel-crash.patch)
  kmymoney/repos/community-x86_64/kmymoney.changelog
    (from rev 915416, kmymoney/trunk/kmymoney.changelog)
Deleted:
  kmymoney/repos/community-x86_64/PKGBUILD
  kmymoney/repos/community-x86_64/kmymoney.changelog

--------------------------------------------+
 PKGBUILD                                   |   96 ++++++------
 kmymoney-qsortfilterproxymodel-crash.patch |  154 +++++++++++++++++++
 kmymoney.changelog                         |  210 +++++++++++++--------------
 3 files changed, 310 insertions(+), 150 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2021-04-10 08:40:16 UTC (rev 915416)
+++ PKGBUILD    2021-04-10 08:40:28 UTC (rev 915417)
@@ -1,45 +0,0 @@
-# Maintainer: Jaroslav Lichtblau <[email protected]>
-# Contributor: Laurent Carlier <[email protected]>
-# Contributor: Vamp898 <[email protected]>
-# Contributor: Jaroslaw Swierczynski <[email protected]>
-# Contributor: Eric Belanger <[email protected]>
-# Contributor: Todd Maynard <[email protected]>
-
-pkgname=kmymoney
-pkgver=5.1.1
-pkgrel=1
-pkgdesc="Personal finance manager for KDE which operates similarly to MS-Money 
or Quicken"
-arch=('x86_64')
-url="https://kmymoney.org/";
-license=('GPL')
-depends=('aqbanking' 'gwenhywfar' 'boost-libs' 'libalkimia' 'sqlcipher' 
'qt5-base' 'qgpgme' 'karchive'
-         'kcoreaddons' 'kconfig' 'kwidgetsaddons' 'ki18n' 'kcompletion' 
'kcmutils' 'kitemmodels'
-         'kitemviews' 'kservice' 'kwallet' 'kiconthemes' 'kxmlgui' 
'kidentitymanagement'
-         'ktextwidgets' 'knotifications' 'kio' 'kdoctools' 'kholidays' 'kross' 
'kactivities'
-         'kqtquickcharts' 'kdiagram' 'kdewebkit' 'kcontacts' 'libical' 
'libakonadi' 'shared-mime-info')
-makedepends=('boost' 'extra-cmake-modules' 'doxygen')
-optdepends=('perl: for financequote.pl')
-changelog=$pkgname.changelog
-source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
-validpgpkeys=('D69A745A55331F44F404D8258D4DE062AA2EB01C')
-sha256sums=('df7b9f78e8596f99d28295ca738708f0655ee057789dfd921c7b1bab96578298'
-            'SKIP')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  mkdir build
-  cd build
-
-  cmake ../ \
-    -DCMAKE_INSTALL_LIBDIR=lib \
-    -DCMAKE_SKIP_RPATH=YES \
-    -Wno-dev
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver/build
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: kmymoney/repos/community-x86_64/PKGBUILD (from rev 915416, 
kmymoney/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2021-04-10 08:40:28 UTC (rev 915417)
@@ -0,0 +1,51 @@
+# Maintainer: Jaroslav Lichtblau <[email protected]>
+# Contributor: Laurent Carlier <[email protected]>
+# Contributor: Vamp898 <[email protected]>
+# Contributor: Jaroslaw Swierczynski <[email protected]>
+# Contributor: Eric Belanger <[email protected]>
+# Contributor: Todd Maynard <[email protected]>
+
+pkgname=kmymoney
+pkgver=5.1.1
+pkgrel=2
+pkgdesc="Personal finance manager for KDE which operates similarly to MS-Money 
or Quicken"
+arch=('x86_64')
+url="https://kmymoney.org/";
+license=('GPL')
+depends=('aqbanking' 'gwenhywfar' 'boost-libs' 'libalkimia' 'sqlcipher' 
'qt5-base' 'qgpgme' 'karchive'
+         'kcoreaddons' 'kconfig' 'kwidgetsaddons' 'ki18n' 'kcompletion' 
'kcmutils' 'kitemmodels'
+         'kitemviews' 'kservice' 'kwallet' 'kiconthemes' 'kxmlgui' 
'kidentitymanagement'
+         'ktextwidgets' 'knotifications' 'kio' 'kdoctools' 'kholidays' 'kross' 
'kactivities'
+         'kqtquickcharts' 'kdiagram' 'kdewebkit' 'kcontacts' 'libical' 
'libakonadi' 'shared-mime-info')
+makedepends=('boost' 'extra-cmake-modules' 'doxygen')
+optdepends=('perl: for financequote.pl')
+changelog=$pkgname.changelog
+source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig}
+        kmymoney-qsortfilterproxymodel-crash.patch)
+validpgpkeys=('D69A745A55331F44F404D8258D4DE062AA2EB01C')
+sha256sums=('df7b9f78e8596f99d28295ca738708f0655ee057789dfd921c7b1bab96578298'
+            'SKIP'
+            'c21c3c6d2c9af63b7d2dd63b51cd9746a9b3952d2230b19bd59569ce8fb0fe55')
+
+prepare() {
+  patch -d $pkgname-$pkgver -p1 < kmymoney-qsortfilterproxymodel-crash.patch # 
FS#70367
+}
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  mkdir build
+  cd build
+
+  cmake ../ \
+    -DCMAKE_INSTALL_LIBDIR=lib \
+    -DCMAKE_SKIP_RPATH=YES \
+    -Wno-dev
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver/build
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: 
kmymoney/repos/community-x86_64/kmymoney-qsortfilterproxymodel-crash.patch 
(from rev 915416, kmymoney/trunk/kmymoney-qsortfilterproxymodel-crash.patch)
===================================================================
--- kmymoney-qsortfilterproxymodel-crash.patch                          (rev 0)
+++ kmymoney-qsortfilterproxymodel-crash.patch  2021-04-10 08:40:28 UTC (rev 
915417)
@@ -0,0 +1,154 @@
+diff --git a/kmymoney/converter/mymoneystatementreader.cpp 
b/kmymoney/converter/mymoneystatementreader.cpp
+index 5de39e146..8a03ebac9 100644
+--- a/kmymoney/converter/mymoneystatementreader.cpp
++++ b/kmymoney/converter/mymoneystatementreader.cpp
+@@ -1055,8 +1055,8 @@ void 
MyMoneyStatementReader::processTransactionEntry(const MyMoneyStatement::Tra
+           filterProxyModel->addAccountGroup(QVector<Account::Type> 
{Account::Type::Asset, Account::Type::Liability, Account::Type::Equity, 
Account::Type::Income, Account::Type::Expense});
+ 
+           auto const model = Models::instance()->accountsModel();
+-          filterProxyModel->setSourceModel(model);
+           filterProxyModel->setSourceColumns(model->getColumns());
++          filterProxyModel->setSourceModel(model);
+           filterProxyModel->sort((int)eAccountsModel::Column::Account);
+ 
+           QPointer<KMyMoneyAccountCombo> accountCombo = new 
KMyMoneyAccountCombo(filterProxyModel);
+diff --git a/kmymoney/dialogs/kaccountselectdlg.cpp 
b/kmymoney/dialogs/kaccountselectdlg.cpp
+index c051611a6..67cdbe120 100644
+--- a/kmymoney/dialogs/kaccountselectdlg.cpp
++++ b/kmymoney/dialogs/kaccountselectdlg.cpp
+@@ -135,8 +135,8 @@ KAccountSelectDlg::KAccountSelectDlg(const 
eDialogs::Category accountType, const
+   filterProxyModel->addAccountGroup(accountTypes);
+ 
+   auto model = Models::instance()->accountsModel();
+-  filterProxyModel->setSourceModel(model);
+   filterProxyModel->setSourceColumns(model->getColumns());
++  filterProxyModel->setSourceModel(model);
+   filterProxyModel->sort((int)eAccountsModel::Column::Account);
+ 
+   d->ui->m_accountSelector->setModel(filterProxyModel);
+diff --git a/kmymoney/dialogs/knewaccountdlg.cpp 
b/kmymoney/dialogs/knewaccountdlg.cpp
+index ef5dc84aa..65455982a 100644
+--- a/kmymoney/dialogs/knewaccountdlg.cpp
++++ b/kmymoney/dialogs/knewaccountdlg.cpp
+@@ -136,8 +136,8 @@ public:
+     m_filterProxyModel->addAccountGroup(filterAccountGroup);
+     m_filterProxyModel->setCurrentAccountId(m_account.id());
+     auto const model = Models::instance()->accountsModel();
+-    m_filterProxyModel->setSourceModel(model);
+     m_filterProxyModel->setSourceColumns(model->getColumns());
++    m_filterProxyModel->setSourceModel(model);
+     m_filterProxyModel->setDynamicSortFilter(true);
+ 
+     ui->m_parentAccounts->setModel(m_filterProxyModel);
+diff --git a/kmymoney/views/kgloballedgerview_p.h 
b/kmymoney/views/kgloballedgerview_p.h
+index 156a3cd0d..1104910bd 100644
+--- a/kmymoney/views/kgloballedgerview_p.h
++++ b/kmymoney/views/kgloballedgerview_p.h
+@@ -283,8 +283,8 @@ public:
+     m_filterProxyModel = new AccountNamesFilterProxyModel(q);
+     m_filterProxyModel->addAccountGroup(QVector<eMyMoney::Account::Type> 
{eMyMoney::Account::Type::Asset, eMyMoney::Account::Type::Liability, 
eMyMoney::Account::Type::Equity});
+     auto const model = Models::instance()->accountsModel();
+-    m_filterProxyModel->setSourceModel(model);
+     m_filterProxyModel->setSourceColumns(model->getColumns());
++    m_filterProxyModel->setSourceModel(model);
+     m_filterProxyModel->sort((int)eAccountsModel::Column::Account);
+ 
+     // create the toolbar frame at the top of the view
+diff --git a/kmymoney/views/kinvestmentview_p.h 
b/kmymoney/views/kinvestmentview_p.h
+index 288c76817..5d879d9d4 100644
+--- a/kmymoney/views/kinvestmentview_p.h
++++ b/kmymoney/views/kinvestmentview_p.h
+@@ -116,8 +116,8 @@ public:
+     m_accountsProxyModel->addAccountType(eMyMoney::Account::Type::Investment);
+     m_accountsProxyModel->setHideEquityAccounts(false);
+     auto const model = Models::instance()->accountsModel();
+-    m_accountsProxyModel->setSourceModel(model);
+     m_accountsProxyModel->setSourceColumns(model->getColumns());
++    m_accountsProxyModel->setSourceModel(model);
+     m_accountsProxyModel->sort((int)eAccountsModel::Column::Account);
+     ui->m_accountComboBox->setModel(m_accountsProxyModel);
+     ui->m_accountComboBox->expandAll();
+diff --git a/kmymoney/views/kpayeesview_p.h b/kmymoney/views/kpayeesview_p.h
+index 9156b570f..b47779f6a 100644
+--- a/kmymoney/views/kpayeesview_p.h
++++ b/kmymoney/views/kpayeesview_p.h
+@@ -157,8 +157,8 @@ public:
+     m_filterProxyModel->addAccountGroup(QVector<eMyMoney::Account::Type> 
{eMyMoney::Account::Type::Asset, eMyMoney::Account::Type::Liability, 
eMyMoney::Account::Type::Income, eMyMoney::Account::Type::Expense, 
eMyMoney::Account::Type::Equity});
+ 
+     auto const model = Models::instance()->accountsModel();
+-    m_filterProxyModel->setSourceModel(model);
+     m_filterProxyModel->setSourceColumns(model->getColumns());
++    m_filterProxyModel->setSourceModel(model);
+     m_filterProxyModel->sort((int)eAccountsModel::Column::Account);
+     ui->comboDefaultCategory->setModel(m_filterProxyModel);
+ 
+diff --git a/kmymoney/views/newspliteditor.cpp 
b/kmymoney/views/newspliteditor.cpp
+index 6ba378f4b..edd8a445e 100644
+--- a/kmymoney/views/newspliteditor.cpp
++++ b/kmymoney/views/newspliteditor.cpp
+@@ -212,8 +212,8 @@ NewSplitEditor::NewSplitEditor(QWidget* parent, const 
QString& counterAccountId)
+   d->accountsModel->addAccountGroup(QVector<eMyMoney::Account::Type> 
{eMyMoney::Account::Type::Asset, eMyMoney::Account::Type::Liability, 
eMyMoney::Account::Type::Income, eMyMoney::Account::Type::Expense, 
eMyMoney::Account::Type::Equity});
+   d->accountsModel->setHideEquityAccounts(false);
+   auto const model = Models::instance()->accountsModel();
+-  d->accountsModel->setSourceModel(model);
+   d->accountsModel->setSourceColumns(model->getColumns());
++  d->accountsModel->setSourceModel(model);
+   d->accountsModel->sort((int)eAccountsModel::Column::Account);
+   d->ui->accountCombo->setModel(d->accountsModel);
+ 
+diff --git a/kmymoney/views/newtransactioneditor.cpp 
b/kmymoney/views/newtransactioneditor.cpp
+index 6f52b7a73..39e2eab0a 100644
+--- a/kmymoney/views/newtransactioneditor.cpp
++++ b/kmymoney/views/newtransactioneditor.cpp
+@@ -368,8 +368,8 @@ NewTransactionEditor::NewTransactionEditor(QWidget* 
parent, const QString& accou
+ 
+   d->accountsModel->addAccountGroup(QVector<eMyMoney::Account::Type> 
{eMyMoney::Account::Type::Asset, eMyMoney::Account::Type::Liability, 
eMyMoney::Account::Type::Income, eMyMoney::Account::Type::Expense, 
eMyMoney::Account::Type::Equity});
+   d->accountsModel->setHideEquityAccounts(false);
+-  d->accountsModel->setSourceModel(model);
+   d->accountsModel->setSourceColumns(model->getColumns());
++  d->accountsModel->setSourceModel(model);
+   d->accountsModel->sort((int)eAccountsModel::Column::Account);
+   d->ui->accountCombo->setModel(d->accountsModel);
+ 
+diff --git a/kmymoney/views/simpleledgerview.cpp 
b/kmymoney/views/simpleledgerview.cpp
+index 3b79e0e2b..44427f112 100644
+--- a/kmymoney/views/simpleledgerview.cpp
++++ b/kmymoney/views/simpleledgerview.cpp
+@@ -107,8 +107,8 @@ public:
+ 
+     accountsModel->setHideEquityAccounts(false);
+     auto const model = Models::instance()->accountsModel();
+-    accountsModel->setSourceModel(model);
+     accountsModel->setSourceColumns(model->getColumns());
++    accountsModel->setSourceModel(model);
+     accountsModel->sort((int)eAccountsModel::Column::Account);
+     ui->accountCombo->setModel(accountsModel);
+ 
+diff --git a/kmymoney/widgets/kmymoneyaccounttreeview.cpp 
b/kmymoney/widgets/kmymoneyaccounttreeview.cpp
+index 12a199c9b..665925ce4 100644
+--- a/kmymoney/widgets/kmymoneyaccounttreeview.cpp
++++ b/kmymoney/widgets/kmymoneyaccounttreeview.cpp
+@@ -179,8 +179,8 @@ AccountsViewProxyModel *KMyMoneyAccountTreeView::init(View 
view)
+     institutionsModel->setColumnVisibility(column, true);
+   }
+ 
+-  d->m_model->setSourceModel(sourceModel);
+   d->m_model->setSourceColumns(sourceModel->getColumns());
++  d->m_model->setSourceModel(sourceModel);
+   d->m_model->setFilterCaseSensitivity(Qt::CaseInsensitive);
+   d->m_model->setSortLocaleAware(true);
+   setModel(d->m_model);
+diff --git a/kmymoney/wizards/newaccountwizard/khierarchypage.cpp 
b/kmymoney/wizards/newaccountwizard/khierarchypage.cpp
+index d9c83ae73..bd863c2d7 100644
+--- a/kmymoney/wizards/newaccountwizard/khierarchypage.cpp
++++ b/kmymoney/wizards/newaccountwizard/khierarchypage.cpp
+@@ -65,8 +65,8 @@ namespace NewAccountWizard
+     
d->m_filterProxyModel->setHideEquityAccounts(!KMyMoneySettings::expertMode());
+     d->m_filterProxyModel->addAccountGroup(QVector<Account::Type> 
{Account::Type::Asset, Account::Type::Liability});
+     auto const model = Models::instance()->accountsModel();
+-    d->m_filterProxyModel->setSourceModel(model);
+     d->m_filterProxyModel->setSourceColumns(model->getColumns());
++    d->m_filterProxyModel->setSourceModel(model);
+     d->m_filterProxyModel->setDynamicSortFilter(true);
+ 
+     d->ui->m_parentAccounts->setModel(d->m_filterProxyModel);

Deleted: kmymoney.changelog
===================================================================
--- kmymoney.changelog  2021-04-10 08:40:16 UTC (rev 915416)
+++ kmymoney.changelog  2021-04-10 08:40:28 UTC (rev 915417)
@@ -1,105 +0,0 @@
-2020-12-25 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 5.1.1-1
-
-2020-07-09 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 5.1.0-1
-
-2020-03-29 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 5.0.8-2 - FS#66007 fix
-
-2020-01-25 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 5.0.8-1
-
-2019-09-30 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 5.0.7-1
-
-2019-01-29 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 5.0.3-1
-
-2018-11-05 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 5.0.2-1
-
-2018-04-02 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 5.0.1-1
-
-2018-02-14 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 5.0.0-3 aqbanking rebuild
-
-2018-02-09 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 5.0.0-2 dependencies ammended
-
-2018-02-07 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 5.0.0-1
-
-2017-12-27 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.8.1.1-1
-
-2017-10-18 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.8.1-2 FS#55997 fix
-
-2017-10-08 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.8.1-1
-
-2017-06-04 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.8.0-5 FS#54044 fix
-
-2016-09-01 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.8.0-3 aqbanking so name rebuild
-
-2016-06-18 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.8.0-2 #364355 fixed
-
-2016-06-15 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.8.0-1 x86_64
-       * i686 build fails https://bugs.kde.org/show_bug.cgi?id=364355
-
-2016-04-29 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.7.2-4 pacman hooks rebuild
-
-2016-01-09 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.7.2-3 libical rebuild
-
-2015-04-28 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.7.2-1
-
-2014-11-02 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.7.1-1
-
-2014-10-02 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.7.0-1
-
-2013-10-06 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.6.4-1
-
-2012-09-09 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.6.3-1
-
-2012-08-09  Eric Belanger  <[email protected]>
-    * kmymoney 4.6.2-2
-       * Rebuild against libofx 0.9.5
-
-2011-02-19 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.5.3
-
-2010-12-27 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.5.2
-
-2010-10-20 Jaroslav Lichtblau <[email protected]>
-       * kmymoney 4.5.1
-       * Added aqbanking dependency
-
-2010-08-22 Jaroslav Lichtblau <[email protected]>
-       * Update to major release 4.5
-       * Package renamed to 'kmymoney'
-
-2010-05-20 Jaroslav Lichtblau <[email protected]>
-       * Update to major release 1.0.5
-
-2010-04-09 Jaroslav Lichtblau <[email protected]>
-       * Update to major release 1.0.4
-
-2010-04-09 Jaroslav Lichtblau <[email protected]>
-       * FS#18974 broken OFX imported fixed in 1.0.3-2
-
-2010-03-27 Jaroslav Lichtblau <[email protected]>
-       * Update to major release 1.0.3

Copied: kmymoney/repos/community-x86_64/kmymoney.changelog (from rev 915416, 
kmymoney/trunk/kmymoney.changelog)
===================================================================
--- kmymoney.changelog                          (rev 0)
+++ kmymoney.changelog  2021-04-10 08:40:28 UTC (rev 915417)
@@ -0,0 +1,105 @@
+2020-12-25 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 5.1.1-1
+
+2020-07-09 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 5.1.0-1
+
+2020-03-29 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 5.0.8-2 - FS#66007 fix
+
+2020-01-25 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 5.0.8-1
+
+2019-09-30 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 5.0.7-1
+
+2019-01-29 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 5.0.3-1
+
+2018-11-05 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 5.0.2-1
+
+2018-04-02 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 5.0.1-1
+
+2018-02-14 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 5.0.0-3 aqbanking rebuild
+
+2018-02-09 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 5.0.0-2 dependencies ammended
+
+2018-02-07 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 5.0.0-1
+
+2017-12-27 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.8.1.1-1
+
+2017-10-18 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.8.1-2 FS#55997 fix
+
+2017-10-08 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.8.1-1
+
+2017-06-04 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.8.0-5 FS#54044 fix
+
+2016-09-01 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.8.0-3 aqbanking so name rebuild
+
+2016-06-18 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.8.0-2 #364355 fixed
+
+2016-06-15 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.8.0-1 x86_64
+       * i686 build fails https://bugs.kde.org/show_bug.cgi?id=364355
+
+2016-04-29 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.7.2-4 pacman hooks rebuild
+
+2016-01-09 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.7.2-3 libical rebuild
+
+2015-04-28 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.7.2-1
+
+2014-11-02 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.7.1-1
+
+2014-10-02 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.7.0-1
+
+2013-10-06 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.6.4-1
+
+2012-09-09 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.6.3-1
+
+2012-08-09  Eric Belanger  <[email protected]>
+    * kmymoney 4.6.2-2
+       * Rebuild against libofx 0.9.5
+
+2011-02-19 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.5.3
+
+2010-12-27 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.5.2
+
+2010-10-20 Jaroslav Lichtblau <[email protected]>
+       * kmymoney 4.5.1
+       * Added aqbanking dependency
+
+2010-08-22 Jaroslav Lichtblau <[email protected]>
+       * Update to major release 4.5
+       * Package renamed to 'kmymoney'
+
+2010-05-20 Jaroslav Lichtblau <[email protected]>
+       * Update to major release 1.0.5
+
+2010-04-09 Jaroslav Lichtblau <[email protected]>
+       * Update to major release 1.0.4
+
+2010-04-09 Jaroslav Lichtblau <[email protected]>
+       * FS#18974 broken OFX imported fixed in 1.0.3-2
+
+2010-03-27 Jaroslav Lichtblau <[email protected]>
+       * Update to major release 1.0.3

Reply via email to