diff options
author | perky <perky@FreeBSD.org> | 2006-08-12 12:24:42 +0800 |
---|---|---|
committer | perky <perky@FreeBSD.org> | 2006-08-12 12:24:42 +0800 |
commit | b78cd762d58e0959b6e01d0195277f7033d2cbea (patch) | |
tree | 1fdbfbd3278ae6f0e6749b61594a45b19cc80f18 /lang | |
parent | 92b418c3ba1c06b3ae52d776013be3541068f60b (diff) | |
download | freebsd-ports-gnome-b78cd762d58e0959b6e01d0195277f7033d2cbea.tar.gz freebsd-ports-gnome-b78cd762d58e0959b6e01d0195277f7033d2cbea.tar.zst freebsd-ports-gnome-b78cd762d58e0959b6e01d0195277f7033d2cbea.zip |
Remove a wrong patch which doesn't apply to Python 2.2.
PR: 90829
Submitted by: Mike Brown <mike@skew.org>
Diffstat (limited to 'lang')
-rw-r--r-- | lang/python22/Makefile | 2 | ||||
-rw-r--r-- | lang/python22/files/patch-Modules::fcntlmodule.c | 20 |
2 files changed, 1 insertions, 21 deletions
diff --git a/lang/python22/Makefile b/lang/python22/Makefile index d1fbf6aca702..094b1c6fe70d 100644 --- a/lang/python22/Makefile +++ b/lang/python22/Makefile @@ -7,7 +7,7 @@ PORTNAME= python PORTVERSION= 2.2.3 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= lang python ipv6 MASTER_SITES= ${PYTHON_MASTER_SITES} MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} diff --git a/lang/python22/files/patch-Modules::fcntlmodule.c b/lang/python22/files/patch-Modules::fcntlmodule.c deleted file mode 100644 index 7ff8e449cf0d..000000000000 --- a/lang/python22/files/patch-Modules::fcntlmodule.c +++ /dev/null @@ -1,20 +0,0 @@ ---- Modules/fcntlmodule.c.orig Sat Jan 12 20:13:23 2002 -+++ Modules/fcntlmodule.c Thu Jul 28 16:10:26 2005 -@@ -100,7 +100,7 @@ - int len; - char buf[1024]; - -- if (PyArg_ParseTuple(args, "O&is#:ioctl", -+ if (PyArg_ParseTuple(args, "O&Is#:ioctl", - conv_descriptor, &fd, &code, &str, &len)) { - if (len > sizeof buf) { - PyErr_SetString(PyExc_ValueError, -@@ -121,7 +121,7 @@ - PyErr_Clear(); - arg = 0; - if (!PyArg_ParseTuple(args, -- "O&i|i;ioctl requires a file or file descriptor," -+ "O&I|i;ioctl requires a file or file descriptor," - " an integer and optionally a third integer or a string", - conv_descriptor, &fd, &code, &arg)) { - return NULL; |