diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2006-04-30 00:47:21 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2006-04-30 00:47:21 +0000 |
commit | 798e9bed2a389dce8a970e15b68176fd49f442db (patch) | |
tree | 9dc5597aab073298ec381964f72cd853b3dd366c /x11-toolkits/py-gnome-extras/files/patch-gda_gda.override | |
parent | - Update port 0.1.6 (diff) |
Presenting GNOME 2.14.1 for FreeBSD! Checkout
http://www.gnome.org/start/2.14/ for the official release notes, and a list
of all the gooides in this new release. In particular, GNOME 2.14 focused
on performance, and they did not miss the mark. There's some new eye candy,
but most of the big things are waiting until GNOME 2.16. On the FreeBSD
side, we tried to clean up all the crashers we could. In particular, we
really improved GNOME's 64-bit support.
The good news is that this release does not bring any big shared library
version bumps, so you can almost do a simple portupgrade to get to 2.14.
There are a few minor gotchas that will be documented in UPDATING shortly.
The FreeBSD GNOME Team would like th thank the following users for their
patches, feedback, and sometimes incessant complaing about crashes (you
know who you are).
Yasuda Keisuke <kysd@po.harenet.ne.jp>
Pascal Hofstee <caelian@gmail.com>
rmgls@wanadoo.fr
tmclaugh
Yuri Pankov <yuri.pankov@gmail.com>
sajd on #freebsd-gnome
ade
ankon on #FreeBSD-Gnome
mux
Pascal Hofstee <caelian@gmail.com>
QuiRK on #freebsd-gnome
Vladimir Timofeev <vovkasm@gmail.com>
Diffstat (limited to 'x11-toolkits/py-gnome-extras/files/patch-gda_gda.override')
-rw-r--r-- | x11-toolkits/py-gnome-extras/files/patch-gda_gda.override | 102 |
1 files changed, 0 insertions, 102 deletions
diff --git a/x11-toolkits/py-gnome-extras/files/patch-gda_gda.override b/x11-toolkits/py-gnome-extras/files/patch-gda_gda.override deleted file mode 100644 index 1fa283a57d13..000000000000 --- a/x11-toolkits/py-gnome-extras/files/patch-gda_gda.override +++ /dev/null @@ -1,102 +0,0 @@ ---- gda/gda.override.orig Wed Apr 20 16:10:31 2005 -+++ gda/gda.override Wed Apr 20 16:12:56 2005 -@@ -59,13 +59,14 @@ override gda_config_get_data_source_list - static PyObject* - _wrap_gda_config_get_data_source_list (PyObject* self) { - PyObject* plist = PyList_New (0); -+ GList *tmp, *list; - - if (!plist) { - Py_INCREF (Py_None); - return Py_None; - } - -- GList *tmp, *list = gda_config_get_data_source_list(); -+ list = gda_config_get_data_source_list(); - - for (tmp = list; tmp != NULL; tmp = tmp->next) { - PyObject* obj = pyg_boxed_new (GDA_TYPE_DATA_SOURCE_INFO, tmp->data, FALSE, FALSE); -@@ -81,13 +82,14 @@ override gda_config_get_provider_list kw - static PyObject* - _wrap_gda_config_get_provider_list (PyObject* self) { - PyObject* plist = PyList_New (0); -+ GList *tmp, *list; - - if (!plist) { - Py_INCREF (Py_None); - return Py_None; - } - -- GList *tmp, *list = gda_config_get_provider_list(); -+ list = gda_config_get_provider_list(); - - for (tmp = list; tmp != NULL; tmp = tmp->next) { - PyObject* obj = pyg_boxed_new (GDA_TYPE_PROVIDER_INFO, tmp->data, FALSE, FALSE); -@@ -174,20 +176,22 @@ static PyObject* - _wrap_gda_config_list_keys (PyObject* self, PyObject* fargs, PyObject* kwargs) { - static char* kwlist[] = { "path", NULL }; - gchar* path = "/"; -+ PyObject *plist; -+ GList *tmp, *list; - - if (!PyArg_ParseTupleAndKeywords (fargs, kwargs, "|s:config_list_keys", kwlist, &path)) { - Py_INCREF (Py_None); - return Py_None; - } - -- PyObject* plist = PyList_New (0); -+ plist = PyList_New (0); - - if (!plist) { - Py_INCREF (Py_None); - return Py_None; - } - -- GList *tmp, *list = gda_config_list_keys (path); -+ list = gda_config_list_keys (path); - - for (tmp = list; tmp != NULL; tmp = tmp->next) { - PyList_Append (plist, PyString_FromString (tmp->data)); -@@ -201,7 +205,8 @@ override gda_connection_execute_command - static PyObject* - _wrap_gda_connection_execute_command (PyGObject* self, PyObject* fargs, PyObject* kwargs) { - static char* kwlist[] = { "cmd", "params", NULL }; -- PyGObject *cmd, *params; -+ PyGObject *cmd, *params, *plist; -+ GList *tmp, *list; - - /* TODO: - if (!PyArg_ParseTupleAndKeywords (fargs, kwargs, "O!O!:GdaConnection.execute_command", -@@ -211,14 +216,14 @@ _wrap_gda_connection_execute_command (Py - } - */ - -- PyObject* plist = PyList_New (0); -+ plist = PyList_New (0); - - if (!plist) { - Py_INCREF (Py_None); - return Py_None; - } - -- GList *tmp, *list = gda_connection_execute_command (GDA_CONNECTION (self->obj), -+ list = gda_connection_execute_command (GDA_CONNECTION (self->obj), - GDA_COMMAND (cmd->obj), GDA_PARAMETER_LIST (params->obj)); - - for (tmp = list; tmp != NULL; tmp = tmp->next) { -@@ -235,13 +240,14 @@ override gda_connection_get_errors kwarg - static PyObject* - _wrap_gda_connection_get_errors (PyGObject* self) { - PyObject* plist = PyList_New (0); -+ GList *tmp, *list; - - if (!plist) { - Py_INCREF (Py_None); - return Py_None; - } - -- GList *tmp, *list = (GList*) gda_connection_get_errors (GDA_CONNECTION (self->obj)); -+ list = (GList*) gda_connection_get_errors (GDA_CONNECTION (self->obj)); - - for (tmp = list; tmp != NULL; tmp = tmp->next) { - PyObject* obj = pygobject_new (G_OBJECT (tmp->data)); |