Hi,
lang/python/2.5 is broken on Zaurus and other ARM platforms because
the ctypes module isn't build there as libffi isn't fully supported on
ARM. The attached patch moves it to a PFRAG.ctypes. Ok?
-d
Index: Makefile.inc
===================================================================
RCS file: /cvs/ports/lang/python/Makefile.inc,v
retrieving revision 1.41
diff -u -p -r1.41 Makefile.inc
--- Makefile.inc 1 Nov 2006 21:11:55 -0000 1.41
+++ Makefile.inc 3 Nov 2006 21:09:21 -0000
@@ -173,6 +173,18 @@ PKG_ARGS+= -Dmm=0
PKG_ARGS+= -Dmm=1
.endif
+# The ctypes module is not supported on all platforms (in particular, ARM)
+.if ${VERSION} == "2.5"
+. if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64" || \
+ ${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64" || \
+ ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "m68k" || \
+ ${MACHINE_ARCH} == "powerpc"
+PKG_ARGS+= -Dctypes=1
+. else
+PKG_ARGS+= -Dctypes=0
+. endif
+.endif
+
CONFIGURE_ENV+= OPT='${CFLAGS} -DTHREAD_STACK_SIZE=${THREAD_STACK_SIZE} -fPIC'
\
LDFLAGS='-L${WRKSRC}'
MAKE_FLAGS+= LDLIBRARY=libpython${VERSION}.so.${LIBpython${VERSION}_VERSION}
\
Index: 2.5/files/CHANGES.OpenBSD
===================================================================
RCS file: /cvs/ports/lang/python/2.5/files/CHANGES.OpenBSD,v
retrieving revision 1.1
diff -u -p -r1.1 CHANGES.OpenBSD
--- 2.5/files/CHANGES.OpenBSD 1 Nov 2006 20:59:18 -0000 1.1
+++ 2.5/files/CHANGES.OpenBSD 3 Nov 2006 21:09:21 -0000
@@ -10,9 +10,9 @@ of changes made to this version of Pytho
3. OpenBSD threads are used for threading support.
-4. The interpreter is called "python2.4" in order to support multiple
+4. The interpreter is called "python2.5" in order to support multiple
versions of Python coexisting on the same system. If no "python"
- binary exists, a symlink to "python2.4" is created when package
+ binary exists, a symlink to "python2.5" is created when package
is installed.
Same process applies to IDLE binary (idle) and pydoc.
Index: 2.5/pkg/PFRAG.ctypes
===================================================================
RCS file: 2.5/pkg/PFRAG.ctypes
diff -N 2.5/pkg/PFRAG.ctypes
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ 2.5/pkg/PFRAG.ctypes 3 Nov 2006 21:09:21 -0000
@@ -0,0 +1,177 @@
[EMAIL PROTECTED] $OpenBSD$
+lib/python2.5/ctypes/
+lib/python2.5/ctypes/__init__.py
+lib/python2.5/ctypes/__init__.pyc
+lib/python2.5/ctypes/__init__.pyo
+lib/python2.5/ctypes/_endian.py
+lib/python2.5/ctypes/_endian.pyc
+lib/python2.5/ctypes/_endian.pyo
+lib/python2.5/ctypes/macholib/
+lib/python2.5/ctypes/macholib/README.ctypes
+lib/python2.5/ctypes/macholib/__init__.py
+lib/python2.5/ctypes/macholib/__init__.pyc
+lib/python2.5/ctypes/macholib/__init__.pyo
+lib/python2.5/ctypes/macholib/dyld.py
+lib/python2.5/ctypes/macholib/dyld.pyc
+lib/python2.5/ctypes/macholib/dyld.pyo
+lib/python2.5/ctypes/macholib/dylib.py
+lib/python2.5/ctypes/macholib/dylib.pyc
+lib/python2.5/ctypes/macholib/dylib.pyo
+lib/python2.5/ctypes/macholib/fetch_macholib
+lib/python2.5/ctypes/macholib/fetch_macholib.bat
+lib/python2.5/ctypes/macholib/framework.py
+lib/python2.5/ctypes/macholib/framework.pyc
+lib/python2.5/ctypes/macholib/framework.pyo
+lib/python2.5/ctypes/test/
+lib/python2.5/ctypes/test/__init__.py
+lib/python2.5/ctypes/test/__init__.pyc
+lib/python2.5/ctypes/test/__init__.pyo
+lib/python2.5/ctypes/test/runtests.py
+lib/python2.5/ctypes/test/runtests.pyc
+lib/python2.5/ctypes/test/runtests.pyo
+lib/python2.5/ctypes/test/test_anon.py
+lib/python2.5/ctypes/test/test_anon.pyc
+lib/python2.5/ctypes/test/test_anon.pyo
+lib/python2.5/ctypes/test/test_array_in_pointer.py
+lib/python2.5/ctypes/test/test_array_in_pointer.pyc
+lib/python2.5/ctypes/test/test_array_in_pointer.pyo
+lib/python2.5/ctypes/test/test_arrays.py
+lib/python2.5/ctypes/test/test_arrays.pyc
+lib/python2.5/ctypes/test/test_arrays.pyo
+lib/python2.5/ctypes/test/test_as_parameter.py
+lib/python2.5/ctypes/test/test_as_parameter.pyc
+lib/python2.5/ctypes/test/test_as_parameter.pyo
+lib/python2.5/ctypes/test/test_bitfields.py
+lib/python2.5/ctypes/test/test_bitfields.pyc
+lib/python2.5/ctypes/test/test_bitfields.pyo
+lib/python2.5/ctypes/test/test_buffers.py
+lib/python2.5/ctypes/test/test_buffers.pyc
+lib/python2.5/ctypes/test/test_buffers.pyo
+lib/python2.5/ctypes/test/test_byteswap.py
+lib/python2.5/ctypes/test/test_byteswap.pyc
+lib/python2.5/ctypes/test/test_byteswap.pyo
+lib/python2.5/ctypes/test/test_callbacks.py
+lib/python2.5/ctypes/test/test_callbacks.pyc
+lib/python2.5/ctypes/test/test_callbacks.pyo
+lib/python2.5/ctypes/test/test_cast.py
+lib/python2.5/ctypes/test/test_cast.pyc
+lib/python2.5/ctypes/test/test_cast.pyo
+lib/python2.5/ctypes/test/test_cfuncs.py
+lib/python2.5/ctypes/test/test_cfuncs.pyc
+lib/python2.5/ctypes/test/test_cfuncs.pyo
+lib/python2.5/ctypes/test/test_checkretval.py
+lib/python2.5/ctypes/test/test_checkretval.pyc
+lib/python2.5/ctypes/test/test_checkretval.pyo
+lib/python2.5/ctypes/test/test_errcheck.py
+lib/python2.5/ctypes/test/test_errcheck.pyc
+lib/python2.5/ctypes/test/test_errcheck.pyo
+lib/python2.5/ctypes/test/test_find.py
+lib/python2.5/ctypes/test/test_find.pyc
+lib/python2.5/ctypes/test/test_find.pyo
+lib/python2.5/ctypes/test/test_funcptr.py
+lib/python2.5/ctypes/test/test_funcptr.pyc
+lib/python2.5/ctypes/test/test_funcptr.pyo
+lib/python2.5/ctypes/test/test_functions.py
+lib/python2.5/ctypes/test/test_functions.pyc
+lib/python2.5/ctypes/test/test_functions.pyo
+lib/python2.5/ctypes/test/test_incomplete.py
+lib/python2.5/ctypes/test/test_incomplete.pyc
+lib/python2.5/ctypes/test/test_incomplete.pyo
+lib/python2.5/ctypes/test/test_init.py
+lib/python2.5/ctypes/test/test_init.pyc
+lib/python2.5/ctypes/test/test_init.pyo
+lib/python2.5/ctypes/test/test_integers.py
+lib/python2.5/ctypes/test/test_integers.pyc
+lib/python2.5/ctypes/test/test_integers.pyo
+lib/python2.5/ctypes/test/test_internals.py
+lib/python2.5/ctypes/test/test_internals.pyc
+lib/python2.5/ctypes/test/test_internals.pyo
+lib/python2.5/ctypes/test/test_keeprefs.py
+lib/python2.5/ctypes/test/test_keeprefs.pyc
+lib/python2.5/ctypes/test/test_keeprefs.pyo
+lib/python2.5/ctypes/test/test_libc.py
+lib/python2.5/ctypes/test/test_libc.pyc
+lib/python2.5/ctypes/test/test_libc.pyo
+lib/python2.5/ctypes/test/test_loading.py
+lib/python2.5/ctypes/test/test_loading.pyc
+lib/python2.5/ctypes/test/test_loading.pyo
+lib/python2.5/ctypes/test/test_macholib.py
+lib/python2.5/ctypes/test/test_macholib.pyc
+lib/python2.5/ctypes/test/test_macholib.pyo
+lib/python2.5/ctypes/test/test_memfunctions.py
+lib/python2.5/ctypes/test/test_memfunctions.pyc
+lib/python2.5/ctypes/test/test_memfunctions.pyo
+lib/python2.5/ctypes/test/test_numbers.py
+lib/python2.5/ctypes/test/test_numbers.pyc
+lib/python2.5/ctypes/test/test_numbers.pyo
+lib/python2.5/ctypes/test/test_objects.py
+lib/python2.5/ctypes/test/test_objects.pyc
+lib/python2.5/ctypes/test/test_objects.pyo
+lib/python2.5/ctypes/test/test_parameters.py
+lib/python2.5/ctypes/test/test_parameters.pyc
+lib/python2.5/ctypes/test/test_parameters.pyo
+lib/python2.5/ctypes/test/test_pointers.py
+lib/python2.5/ctypes/test/test_pointers.pyc
+lib/python2.5/ctypes/test/test_pointers.pyo
+lib/python2.5/ctypes/test/test_prototypes.py
+lib/python2.5/ctypes/test/test_prototypes.pyc
+lib/python2.5/ctypes/test/test_prototypes.pyo
+lib/python2.5/ctypes/test/test_python_api.py
+lib/python2.5/ctypes/test/test_python_api.pyc
+lib/python2.5/ctypes/test/test_python_api.pyo
+lib/python2.5/ctypes/test/test_random_things.py
+lib/python2.5/ctypes/test/test_random_things.pyc
+lib/python2.5/ctypes/test/test_random_things.pyo
+lib/python2.5/ctypes/test/test_refcounts.py
+lib/python2.5/ctypes/test/test_refcounts.pyc
+lib/python2.5/ctypes/test/test_refcounts.pyo
+lib/python2.5/ctypes/test/test_repr.py
+lib/python2.5/ctypes/test/test_repr.pyc
+lib/python2.5/ctypes/test/test_repr.pyo
+lib/python2.5/ctypes/test/test_returnfuncptrs.py
+lib/python2.5/ctypes/test/test_returnfuncptrs.pyc
+lib/python2.5/ctypes/test/test_returnfuncptrs.pyo
+lib/python2.5/ctypes/test/test_simplesubclasses.py
+lib/python2.5/ctypes/test/test_simplesubclasses.pyc
+lib/python2.5/ctypes/test/test_simplesubclasses.pyo
+lib/python2.5/ctypes/test/test_sizes.py
+lib/python2.5/ctypes/test/test_sizes.pyc
+lib/python2.5/ctypes/test/test_sizes.pyo
+lib/python2.5/ctypes/test/test_slicing.py
+lib/python2.5/ctypes/test/test_slicing.pyc
+lib/python2.5/ctypes/test/test_slicing.pyo
+lib/python2.5/ctypes/test/test_stringptr.py
+lib/python2.5/ctypes/test/test_stringptr.pyc
+lib/python2.5/ctypes/test/test_stringptr.pyo
+lib/python2.5/ctypes/test/test_strings.py
+lib/python2.5/ctypes/test/test_strings.pyc
+lib/python2.5/ctypes/test/test_strings.pyo
+lib/python2.5/ctypes/test/test_struct_fields.py
+lib/python2.5/ctypes/test/test_struct_fields.pyc
+lib/python2.5/ctypes/test/test_struct_fields.pyo
+lib/python2.5/ctypes/test/test_structures.py
+lib/python2.5/ctypes/test/test_structures.pyc
+lib/python2.5/ctypes/test/test_structures.pyo
+lib/python2.5/ctypes/test/test_unaligned_structures.py
+lib/python2.5/ctypes/test/test_unaligned_structures.pyc
+lib/python2.5/ctypes/test/test_unaligned_structures.pyo
+lib/python2.5/ctypes/test/test_unicode.py
+lib/python2.5/ctypes/test/test_unicode.pyc
+lib/python2.5/ctypes/test/test_unicode.pyo
+lib/python2.5/ctypes/test/test_values.py
+lib/python2.5/ctypes/test/test_values.pyc
+lib/python2.5/ctypes/test/test_values.pyo
+lib/python2.5/ctypes/test/test_varsize_struct.py
+lib/python2.5/ctypes/test/test_varsize_struct.pyc
+lib/python2.5/ctypes/test/test_varsize_struct.pyo
+lib/python2.5/ctypes/test/test_win32.py
+lib/python2.5/ctypes/test/test_win32.pyc
+lib/python2.5/ctypes/test/test_win32.pyo
+lib/python2.5/ctypes/util.py
+lib/python2.5/ctypes/util.pyc
+lib/python2.5/ctypes/util.pyo
+lib/python2.5/ctypes/wintypes.py
+lib/python2.5/ctypes/wintypes.pyc
+lib/python2.5/ctypes/wintypes.pyo
+lib/python2.5/lib-dynload/_ctypes.so
+lib/python2.5/lib-dynload/_ctypes_test.so
Index: 2.5/pkg/PLIST
===================================================================
RCS file: /cvs/ports/lang/python/2.5/pkg/PLIST,v
retrieving revision 1.1
diff -u -p -r1.1 PLIST
--- 2.5/pkg/PLIST 1 Nov 2006 20:59:18 -0000 1.1
+++ 2.5/pkg/PLIST 3 Nov 2006 21:09:21 -0000
@@ -370,180 +370,6 @@ lib/python2.5/copy_reg.pyo
lib/python2.5/csv.py
lib/python2.5/csv.pyc
lib/python2.5/csv.pyo
-lib/python2.5/ctypes/
-lib/python2.5/ctypes/__init__.py
-lib/python2.5/ctypes/__init__.pyc
-lib/python2.5/ctypes/__init__.pyo
-lib/python2.5/ctypes/_endian.py
-lib/python2.5/ctypes/_endian.pyc
-lib/python2.5/ctypes/_endian.pyo
-lib/python2.5/ctypes/macholib/
-lib/python2.5/ctypes/macholib/README.ctypes
-lib/python2.5/ctypes/macholib/__init__.py
-lib/python2.5/ctypes/macholib/__init__.pyc
-lib/python2.5/ctypes/macholib/__init__.pyo
-lib/python2.5/ctypes/macholib/dyld.py
-lib/python2.5/ctypes/macholib/dyld.pyc
-lib/python2.5/ctypes/macholib/dyld.pyo
-lib/python2.5/ctypes/macholib/dylib.py
-lib/python2.5/ctypes/macholib/dylib.pyc
-lib/python2.5/ctypes/macholib/dylib.pyo
-lib/python2.5/ctypes/macholib/fetch_macholib
-lib/python2.5/ctypes/macholib/fetch_macholib.bat
-lib/python2.5/ctypes/macholib/framework.py
-lib/python2.5/ctypes/macholib/framework.pyc
-lib/python2.5/ctypes/macholib/framework.pyo
-lib/python2.5/ctypes/test/
-lib/python2.5/ctypes/test/__init__.py
-lib/python2.5/ctypes/test/__init__.pyc
-lib/python2.5/ctypes/test/__init__.pyo
-lib/python2.5/ctypes/test/runtests.py
-lib/python2.5/ctypes/test/runtests.pyc
-lib/python2.5/ctypes/test/runtests.pyo
-lib/python2.5/ctypes/test/test_anon.py
-lib/python2.5/ctypes/test/test_anon.pyc
-lib/python2.5/ctypes/test/test_anon.pyo
-lib/python2.5/ctypes/test/test_array_in_pointer.py
-lib/python2.5/ctypes/test/test_array_in_pointer.pyc
-lib/python2.5/ctypes/test/test_array_in_pointer.pyo
-lib/python2.5/ctypes/test/test_arrays.py
-lib/python2.5/ctypes/test/test_arrays.pyc
-lib/python2.5/ctypes/test/test_arrays.pyo
-lib/python2.5/ctypes/test/test_as_parameter.py
-lib/python2.5/ctypes/test/test_as_parameter.pyc
-lib/python2.5/ctypes/test/test_as_parameter.pyo
-lib/python2.5/ctypes/test/test_bitfields.py
-lib/python2.5/ctypes/test/test_bitfields.pyc
-lib/python2.5/ctypes/test/test_bitfields.pyo
-lib/python2.5/ctypes/test/test_buffers.py
-lib/python2.5/ctypes/test/test_buffers.pyc
-lib/python2.5/ctypes/test/test_buffers.pyo
-lib/python2.5/ctypes/test/test_byteswap.py
-lib/python2.5/ctypes/test/test_byteswap.pyc
-lib/python2.5/ctypes/test/test_byteswap.pyo
-lib/python2.5/ctypes/test/test_callbacks.py
-lib/python2.5/ctypes/test/test_callbacks.pyc
-lib/python2.5/ctypes/test/test_callbacks.pyo
-lib/python2.5/ctypes/test/test_cast.py
-lib/python2.5/ctypes/test/test_cast.pyc
-lib/python2.5/ctypes/test/test_cast.pyo
-lib/python2.5/ctypes/test/test_cfuncs.py
-lib/python2.5/ctypes/test/test_cfuncs.pyc
-lib/python2.5/ctypes/test/test_cfuncs.pyo
-lib/python2.5/ctypes/test/test_checkretval.py
-lib/python2.5/ctypes/test/test_checkretval.pyc
-lib/python2.5/ctypes/test/test_checkretval.pyo
-lib/python2.5/ctypes/test/test_errcheck.py
-lib/python2.5/ctypes/test/test_errcheck.pyc
-lib/python2.5/ctypes/test/test_errcheck.pyo
-lib/python2.5/ctypes/test/test_find.py
-lib/python2.5/ctypes/test/test_find.pyc
-lib/python2.5/ctypes/test/test_find.pyo
-lib/python2.5/ctypes/test/test_funcptr.py
-lib/python2.5/ctypes/test/test_funcptr.pyc
-lib/python2.5/ctypes/test/test_funcptr.pyo
-lib/python2.5/ctypes/test/test_functions.py
-lib/python2.5/ctypes/test/test_functions.pyc
-lib/python2.5/ctypes/test/test_functions.pyo
-lib/python2.5/ctypes/test/test_incomplete.py
-lib/python2.5/ctypes/test/test_incomplete.pyc
-lib/python2.5/ctypes/test/test_incomplete.pyo
-lib/python2.5/ctypes/test/test_init.py
-lib/python2.5/ctypes/test/test_init.pyc
-lib/python2.5/ctypes/test/test_init.pyo
-lib/python2.5/ctypes/test/test_integers.py
-lib/python2.5/ctypes/test/test_integers.pyc
-lib/python2.5/ctypes/test/test_integers.pyo
-lib/python2.5/ctypes/test/test_internals.py
-lib/python2.5/ctypes/test/test_internals.pyc
-lib/python2.5/ctypes/test/test_internals.pyo
-lib/python2.5/ctypes/test/test_keeprefs.py
-lib/python2.5/ctypes/test/test_keeprefs.pyc
-lib/python2.5/ctypes/test/test_keeprefs.pyo
-lib/python2.5/ctypes/test/test_libc.py
-lib/python2.5/ctypes/test/test_libc.pyc
-lib/python2.5/ctypes/test/test_libc.pyo
-lib/python2.5/ctypes/test/test_loading.py
-lib/python2.5/ctypes/test/test_loading.pyc
-lib/python2.5/ctypes/test/test_loading.pyo
-lib/python2.5/ctypes/test/test_macholib.py
-lib/python2.5/ctypes/test/test_macholib.pyc
-lib/python2.5/ctypes/test/test_macholib.pyo
-lib/python2.5/ctypes/test/test_memfunctions.py
-lib/python2.5/ctypes/test/test_memfunctions.pyc
-lib/python2.5/ctypes/test/test_memfunctions.pyo
-lib/python2.5/ctypes/test/test_numbers.py
-lib/python2.5/ctypes/test/test_numbers.pyc
-lib/python2.5/ctypes/test/test_numbers.pyo
-lib/python2.5/ctypes/test/test_objects.py
-lib/python2.5/ctypes/test/test_objects.pyc
-lib/python2.5/ctypes/test/test_objects.pyo
-lib/python2.5/ctypes/test/test_parameters.py
-lib/python2.5/ctypes/test/test_parameters.pyc
-lib/python2.5/ctypes/test/test_parameters.pyo
-lib/python2.5/ctypes/test/test_pointers.py
-lib/python2.5/ctypes/test/test_pointers.pyc
-lib/python2.5/ctypes/test/test_pointers.pyo
-lib/python2.5/ctypes/test/test_prototypes.py
-lib/python2.5/ctypes/test/test_prototypes.pyc
-lib/python2.5/ctypes/test/test_prototypes.pyo
-lib/python2.5/ctypes/test/test_python_api.py
-lib/python2.5/ctypes/test/test_python_api.pyc
-lib/python2.5/ctypes/test/test_python_api.pyo
-lib/python2.5/ctypes/test/test_random_things.py
-lib/python2.5/ctypes/test/test_random_things.pyc
-lib/python2.5/ctypes/test/test_random_things.pyo
-lib/python2.5/ctypes/test/test_refcounts.py
-lib/python2.5/ctypes/test/test_refcounts.pyc
-lib/python2.5/ctypes/test/test_refcounts.pyo
-lib/python2.5/ctypes/test/test_repr.py
-lib/python2.5/ctypes/test/test_repr.pyc
-lib/python2.5/ctypes/test/test_repr.pyo
-lib/python2.5/ctypes/test/test_returnfuncptrs.py
-lib/python2.5/ctypes/test/test_returnfuncptrs.pyc
-lib/python2.5/ctypes/test/test_returnfuncptrs.pyo
-lib/python2.5/ctypes/test/test_simplesubclasses.py
-lib/python2.5/ctypes/test/test_simplesubclasses.pyc
-lib/python2.5/ctypes/test/test_simplesubclasses.pyo
-lib/python2.5/ctypes/test/test_sizes.py
-lib/python2.5/ctypes/test/test_sizes.pyc
-lib/python2.5/ctypes/test/test_sizes.pyo
-lib/python2.5/ctypes/test/test_slicing.py
-lib/python2.5/ctypes/test/test_slicing.pyc
-lib/python2.5/ctypes/test/test_slicing.pyo
-lib/python2.5/ctypes/test/test_stringptr.py
-lib/python2.5/ctypes/test/test_stringptr.pyc
-lib/python2.5/ctypes/test/test_stringptr.pyo
-lib/python2.5/ctypes/test/test_strings.py
-lib/python2.5/ctypes/test/test_strings.pyc
-lib/python2.5/ctypes/test/test_strings.pyo
-lib/python2.5/ctypes/test/test_struct_fields.py
-lib/python2.5/ctypes/test/test_struct_fields.pyc
-lib/python2.5/ctypes/test/test_struct_fields.pyo
-lib/python2.5/ctypes/test/test_structures.py
-lib/python2.5/ctypes/test/test_structures.pyc
-lib/python2.5/ctypes/test/test_structures.pyo
-lib/python2.5/ctypes/test/test_unaligned_structures.py
-lib/python2.5/ctypes/test/test_unaligned_structures.pyc
-lib/python2.5/ctypes/test/test_unaligned_structures.pyo
-lib/python2.5/ctypes/test/test_unicode.py
-lib/python2.5/ctypes/test/test_unicode.pyc
-lib/python2.5/ctypes/test/test_unicode.pyo
-lib/python2.5/ctypes/test/test_values.py
-lib/python2.5/ctypes/test/test_values.pyc
-lib/python2.5/ctypes/test/test_values.pyo
-lib/python2.5/ctypes/test/test_varsize_struct.py
-lib/python2.5/ctypes/test/test_varsize_struct.pyc
-lib/python2.5/ctypes/test/test_varsize_struct.pyo
-lib/python2.5/ctypes/test/test_win32.py
-lib/python2.5/ctypes/test/test_win32.pyc
-lib/python2.5/ctypes/test/test_win32.pyo
-lib/python2.5/ctypes/util.py
-lib/python2.5/ctypes/util.pyc
-lib/python2.5/ctypes/util.pyo
-lib/python2.5/ctypes/wintypes.py
-lib/python2.5/ctypes/wintypes.pyc
-lib/python2.5/ctypes/wintypes.pyo
lib/python2.5/curses/
lib/python2.5/curses/__init__.py
lib/python2.5/curses/__init__.pyc
@@ -1547,8 +1373,6 @@ lib/python2.5/lib-dynload/_codecs_jp.so
lib/python2.5/lib-dynload/_codecs_kr.so
lib/python2.5/lib-dynload/_codecs_tw.so
lib/python2.5/lib-dynload/_csv.so
-lib/python2.5/lib-dynload/_ctypes.so
-lib/python2.5/lib-dynload/_ctypes_test.so
lib/python2.5/lib-dynload/_curses.so
lib/python2.5/lib-dynload/_curses_panel.so
lib/python2.5/lib-dynload/_functools.so
@@ -2031,3 +1855,4 @@ lib/python2.5/zipfile.pyo
share/doc/python2.5/
share/doc/python2.5/CHANGES.OpenBSD
%%mm%%
+%%ctypes%%