diff options
author | Johannes Huber <johu@gentoo.org> | 2012-11-14 20:00:20 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2012-11-14 20:00:20 +0000 |
commit | bdb105fd80c603dafaf0de20f003d3ed463cf871 (patch) | |
tree | df29a883de0b798e108547764b90bc11a40523c4 /app-office/kmymoney/files | |
parent | Stable for x86, wrt bug #438566 (diff) | |
download | gentoo-2-bdb105fd80c603dafaf0de20f003d3ed463cf871.tar.gz gentoo-2-bdb105fd80c603dafaf0de20f003d3ed463cf871.tar.bz2 gentoo-2-bdb105fd80c603dafaf0de20f003d3ed463cf871.zip |
Remove old.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)
Diffstat (limited to 'app-office/kmymoney/files')
3 files changed, 0 insertions, 73 deletions
diff --git a/app-office/kmymoney/files/kmymoney-4.6.1-qt48.patch b/app-office/kmymoney/files/kmymoney-4.6.1-qt48.patch deleted file mode 100644 index eb4b83552135..000000000000 --- a/app-office/kmymoney/files/kmymoney-4.6.1-qt48.patch +++ /dev/null @@ -1,30 +0,0 @@ -commit 8324cfb9657d8c03f83691402386e8c5bfb29981 -Author: Christoph Feck <christoph@maxiom.de> -Date: Thu Nov 10 12:34:20 2011 +0100 - - Fix compile with Qt 4.8 - - Sideported commits f42a0a3d878afebb298609c9886851858c56cc15 and - fe74b25bf3b78c42e95569fe467a397876bc9c04 from massif-visualizer - -diff --git a/libkdchart/src/KDChartBackgroundAttributes.cpp b/libkdchart/src/KDChartBackgroundAttributes.cpp -index f9f1520..3b86000 100644 ---- a/libkdchart/src/KDChartBackgroundAttributes.cpp -+++ b/libkdchart/src/KDChartBackgroundAttributes.cpp -@@ -22,6 +22,7 @@ - - #include "KDChartBackgroundAttributes.h" - #include <QPixmap> -+#include <QVariant> - - #include <KDABLibFakes> - -@@ -150,7 +151,7 @@ QDebug operator<<(QDebug dbg, const KDChart::BackgroundAttributes& ba) - << "visible="<<ba.isVisible() - << "brush="<<ba.brush() - << "pixmapmode="<<ba.pixmapMode() -- << "pixmap="<<ba.pixmap() -+ << "pixmap="<<QVariant(ba.pixmap()) - << ")"; - return dbg; - } diff --git a/app-office/kmymoney/files/kmymoney-4.6.2-fix-parallel-build.patch b/app-office/kmymoney/files/kmymoney-4.6.2-fix-parallel-build.patch deleted file mode 100644 index 15ea2e4d9a4c..000000000000 --- a/app-office/kmymoney/files/kmymoney-4.6.2-fix-parallel-build.patch +++ /dev/null @@ -1,21 +0,0 @@ -commit 25ee292b205e6085ba624b8ac8a45fe11a99e5cc -Author: Cristian Oneț <onet.cristian@gmail.com> -Date: Tue Apr 10 20:25:26 2012 +0300 - - The kmymoney_base target must depend on the kmm_config config target to avoid build failures when aggresive parallel make is used. - - BUG: 297008 - -diff --git a/kmymoney/widgets/CMakeLists.txt b/kmymoney/widgets/CMakeLists.txt -index 20d910d..5c6d28d 100644 ---- a/kmymoney/widgets/CMakeLists.txt -+++ b/kmymoney/widgets/CMakeLists.txt -@@ -89,6 +89,8 @@ ADD_CUSTOM_TARGET(generate_base_ui_srcs DEPENDS - # We can compile the uncritical sources without KMM_DESIGNER flags - KDE4_ADD_LIBRARY(kmymoney_base STATIC ${_uncritial_common_sources}) - -+ADD_DEPENDENCIES(kmymoney_base kmm_config) -+ - ########### QtDesigner Widget Library (kmymoneywidgets) ################# - # we never link against this library, - # but it is needed for uic and QtDesigner diff --git a/app-office/kmymoney/files/kmymoney-4.6.2-sqlite-crash.patch b/app-office/kmymoney/files/kmymoney-4.6.2-sqlite-crash.patch deleted file mode 100644 index a7d49389147e..000000000000 --- a/app-office/kmymoney/files/kmymoney-4.6.2-sqlite-crash.patch +++ /dev/null @@ -1,22 +0,0 @@ -commit 227cba74b84c55c3d8677f0c10e3f8e35c84e04e -Author: Fernando Vilas <fvilas@iname.com> -Date: Fri Mar 2 22:25:43 2012 -0600 - - BUG: 295235 - - Fix crash on opening SQLite database. - (cherry picked from commit 6af4b33df2476f568db852d96b99eb45eaa2e21f) - -diff --git a/kmymoney/mymoney/storage/mymoneystoragesql.cpp b/kmymoney/mymoney/storage/mymoneystoragesql.cpp -index ab5ed4c..4a170b1 100644 ---- a/kmymoney/mymoney/storage/mymoneystoragesql.cpp -+++ b/kmymoney/mymoney/storage/mymoneystoragesql.cpp -@@ -3348,8 +3348,6 @@ const QMap<QString, MyMoneySchedule> MyMoneyStorageSql::fetchSchedules(const QSt - if (forUpdate) - queryString += m_driver->forUpdateString(); - -- queryString += ';'; -- - q.prepare(queryString); - - if (! idList.empty()) { |