Hello community, here is the log from the commit of package vim for openSUSE:Factory checked in at 2013-10-31 10:12:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/vim (Old) and /work/SRC/openSUSE:Factory/.vim.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "vim" Changes: -------- --- /work/SRC/openSUSE:Factory/vim/vim.changes 2013-10-21 15:16:33.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.vim.new/vim.changes 2013-10-31 10:12:23.000000000 +0100 @@ -1,0 +2,6 @@ +Mon Oct 28 10:12:29 UTC 2013 - schwab@suse.de + +- vim-7.4-python-decl.patch: Use correct return type of + PyObject_SetAttrString + +------------------------------------------------------------------- New: ---- vim-7.4-python-decl.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vim.spec ++++++ --- /var/tmp/diff_new_pack.gxKXU6/_old 2013-10-31 10:12:24.000000000 +0100 +++ /var/tmp/diff_new_pack.gxKXU6/_new 2013-10-31 10:12:24.000000000 +0100 @@ -102,6 +102,7 @@ Patch19: %{name}-7.3-diff_check.patch Patch21: %{name}-7.3-filetype_changes.patch Patch22: %{name}-7.4-filetype_mine.patch +Patch23: %{name}-7.4-python-decl.patch Patch100: vim-7.1.314-CVE-2009-0316-debian.patch Patch101: vim73-no-static-libpython.patch %{perl_requires} @@ -190,6 +191,7 @@ %patch19 -p1 %patch21 -p1 %patch22 -p1 +%patch23 -p1 %patch100 -p1 %patch101 cp %{SOURCE3} %{SOURCE4} %{SOURCE5} %{SOURCE8} %{SOURCE10} . ++++++ vim-7.4-python-decl.patch ++++++ Index: vim74/src/if_python.c =================================================================== --- vim74.orig/src/if_python.c +++ vim74/src/if_python.c @@ -359,7 +359,7 @@ static int(*dll_PyRun_SimpleString)(char static PyObject *(*dll_PyRun_String)(char *, int, PyObject *, PyObject *); static PyObject* (*dll_PyObject_GetAttrString)(PyObject *, const char *); static int (*dll_PyObject_HasAttrString)(PyObject *, const char *); -static PyObject* (*dll_PyObject_SetAttrString)(PyObject *, const char *, PyObject *); +static int (*dll_PyObject_SetAttrString)(PyObject *, const char *, PyObject *); static PyObject* (*dll_PyObject_CallFunctionObjArgs)(PyObject *, ...); static PyObject* (*dll_PyObject_CallFunction)(PyObject *, char *, ...); static PyObject* (*dll_PyObject_Call)(PyObject *, PyObject *, PyObject *); Index: vim74/src/if_python3.c =================================================================== --- vim74.orig/src/if_python3.c +++ vim74/src/if_python3.c @@ -302,7 +302,7 @@ static int (*py3_PyRun_SimpleString)(cha static PyObject* (*py3_PyRun_String)(char *, int, PyObject *, PyObject *); static PyObject* (*py3_PyObject_GetAttrString)(PyObject *, const char *); static int (*py3_PyObject_HasAttrString)(PyObject *, const char *); -static PyObject* (*py3_PyObject_SetAttrString)(PyObject *, const char *, PyObject *); +static int (*py3_PyObject_SetAttrString)(PyObject *, const char *, PyObject *); static PyObject* (*py3_PyObject_CallFunctionObjArgs)(PyObject *, ...); static PyObject* (*py3__PyObject_CallFunction_SizeT)(PyObject *, char *, ...); static PyObject* (*py3_PyObject_Call)(PyObject *, PyObject *, PyObject *); -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de