summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Shvetsov <alexxy@gentoo.org>2009-06-14 12:27:01 +0000
committerAlexey Shvetsov <alexxy@gentoo.org>2009-06-14 12:27:01 +0000
commit0dcdabb0b3ae6355311d937c97e5ff4ef4223419 (patch)
tree6ae15f1f80d7182bae2442ccad142d4723b7ac2f /kde-base/dcoppython/files
parent[kde-base/artsplugin-xine] Clean unneded patches (diff)
downloadhistorical-0dcdabb0b3ae6355311d937c97e5ff4ef4223419.tar.gz
historical-0dcdabb0b3ae6355311d937c97e5ff4ef4223419.tar.bz2
historical-0dcdabb0b3ae6355311d937c97e5ff4ef4223419.zip
[kde-base/dcoppython] Clean unneded patches
Package-Manager: portage-2.2_rc33/cvs/Linux x86_64
Diffstat (limited to 'kde-base/dcoppython/files')
-rw-r--r--kde-base/dcoppython/files/dcoppython-3.5.5-python-2.5-compat.diff11
-rw-r--r--kde-base/dcoppython/files/dcoppython-3.5.6-python-2.4.patch24
2 files changed, 0 insertions, 35 deletions
diff --git a/kde-base/dcoppython/files/dcoppython-3.5.5-python-2.5-compat.diff b/kde-base/dcoppython/files/dcoppython-3.5.5-python-2.5-compat.diff
deleted file mode 100644
index 2b3060710719..000000000000
--- a/kde-base/dcoppython/files/dcoppython-3.5.5-python-2.5-compat.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- dcoppython/shell/marshaller.cpp 2005/07/26 18:54:59 438982
-+++ dcoppython/shell/marshaller.cpp 2006/10/03 15:28:22 592000
-@@ -124,7 +124,7 @@
- if (!PyDict_Check(obj)) return false;
-
-
-- int c=0;
-+ ssize_t c=0;
- PyObject *key, *val;
- while (PyDict_Next(obj, &c, &key, &val)==1)
- if (!key_type.isMarshallable(key) ||
diff --git a/kde-base/dcoppython/files/dcoppython-3.5.6-python-2.4.patch b/kde-base/dcoppython/files/dcoppython-3.5.6-python-2.4.patch
deleted file mode 100644
index e6ba4409b881..000000000000
--- a/kde-base/dcoppython/files/dcoppython-3.5.6-python-2.4.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Index: kdebindings/dcoppython/shell/marshaller.cpp
-===================================================================
---- kdebindings/dcoppython/shell/marshaller.cpp (revision 626831)
-+++ kdebindings/dcoppython/shell/marshaller.cpp (revision 626832)
-@@ -24,6 +24,10 @@
-
- #include <kurl.h>
-
-+#if PY_VERSION_HEX < 0x02050000
-+typedef int Py_ssize_t;
-+#endif
-+
- namespace PythonDCOP {
-
- #include "marshal_funcs.h"
-@@ -124,7 +128,7 @@
- if (!PyDict_Check(obj)) return false;
-
-
-- ssize_t c=0;
-+ Py_ssize_t c=0;
- PyObject *key, *val;
- while (PyDict_Next(obj, &c, &key, &val)==1)
- if (!key_type.isMarshallable(key) ||