diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-08-01 04:29:44 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-08-01 04:29:44 +0000 |
commit | 2e6cabfa170ebe3c08ebd4c3f2fc7e23ba2f0f18 (patch) | |
tree | 8e6c4f2cceeabf768a42f84d0f1914bd45cb93f4 /databases/py-MySQL/files/patch-aa | |
parent | Bye bye abandonwares (diff) |
Bye bye abandonwares (part 2)
2011-08-01 benchmarks/rawio: Looks like an abandonware, no more public distfiles
2011-08-01 benchmarks/tmetric: Looks like abandonware, no more public distfiles
2011-08-01 biology/L-Breeder: Looks like an abandonware, no more public distfile
2011-08-01 biology/crimap: Looks like an abandonware, no more public distfile
2011-08-01 biology/distribfold: No more upstream, looks like an abandonware
2011-08-01 biology/kinemage: Looks like an abandonware, no more public distfile
2011-08-01 biology/lsysexp: Looks like an abandonware, no more public distfile
2011-08-01 chinese/chm2html: Looks like an abandonware, no more public distfile
2011-08-01 chinese/ntuttf: No more public distfiles available
2011-08-01 chinese/reciteword: Looks like an abandonware, no more public distfile
2011-08-01 chinese/tocps: No more pulic distfiles
2011-08-01 chinese/xttmgr: Looks like an abandonware, no more public distfile
2011-08-01 comms/mserver: Looks like an abandonware, no more public distfiles
2011-08-01 comms/qicosi: Looks like an abandonware, no more public distfile
2011-08-01 comms/sms_client: Looks like an abandonware, no more public distfile
2011-08-01 comms/smstools: Looks like an abandonware, no more public distfile
2011-08-01 converters/siconv: Looks like an abandonware, no more public distfiles
2011-08-01 converters/utf8conv: Looks like an abandonware, no more public distfile
2011-08-01 databases/pgcluster: Looks like an abandonware, no more public distfile
2011-08-01 databases/py-MySQL: Please use databases/py-MySQLdb instead
2011-08-01 databases/py-SQLDict: Looks like an abandonware, no more public distfile
2011-08-01 databases/py-rrdpipe: Looks like an abandonware, no more public distfile
2011-08-01 databases/sybase_ase: no more public distfiles available
Notes
Notes:
svn path=/head/; revision=278678
Diffstat (limited to 'databases/py-MySQL/files/patch-aa')
-rw-r--r-- | databases/py-MySQL/files/patch-aa | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/databases/py-MySQL/files/patch-aa b/databases/py-MySQL/files/patch-aa deleted file mode 100644 index df4306bda77f..000000000000 --- a/databases/py-MySQL/files/patch-aa +++ /dev/null @@ -1,38 +0,0 @@ ---- MySQLmodule.c.orig Sat Oct 3 05:14:18 1998 -+++ MySQLmodule.c Fri Jan 14 08:40:00 2000 -@@ -232,7 +232,7 @@ - PyObject *rowlist, *fieldobj; - MYSQL_FIELD *tf; - int i, n; -- unsigned int *lengths; -+ unsigned long *lengths; - - n = mysql_num_fields(res); - lengths = mysql_fetch_lengths(res); -@@ -381,7 +381,7 @@ - if (reslist == NULL) return NULL; - n = mysql_num_fields(res); - for (i = 0; i < n; i++) { -- tf = &(mysql_fetch_field_direct(res, i)); -+ tf = mysql_fetch_field_direct(res, i); - if (tf == NULL) { - if (res->handle && mysql_error(res->handle)[0] != 0) { - PyErr_SetString(MySQLError,mysql_error(res->handle)); -@@ -1122,7 +1122,7 @@ - if (rows > 0) { - cols = mysql_num_fields(self->res); - for (j=0; j<cols; j++) { -- tf = &(mysql_fetch_field_direct(self->res,j)); -+ tf = mysql_fetch_field_direct(self->res,j); - if (tf == NULL) { - if (self->res->handle && mysql_error(self->res->handle)[0] != 0) { - PyErr_SetString(MySQLError,mysql_error(self->res->handle)); -@@ -1144,7 +1144,7 @@ - rowlist = PyList_GetItem(datalist,i); - if (rowlist == NULL) goto error; - for (j=0; j<cols; j++) { -- tf = &(mysql_fetch_field_direct(self->res,j)); -+ tf = mysql_fetch_field_direct(self->res,j); - if (tf == NULL) { - if (self->res->handle && mysql_error(self->res->handle)[0] != 0) { - PyErr_SetString(MySQLError,mysql_error(self->res->handle)); |