summaryrefslogtreecommitdiff
path: root/devel/py-ctypes
AgeCommit message (Collapse)AuthorFilesLines
2009-06-14Remove @dirrm entries from PLISTsjoerg1-4/+1
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2009-03-20Retire two patches for the internal libffi, the module is patched tojoerg3-46/+1
built against pkgsrc libffi instead.
2009-03-20Include pyversion.mk include the protected part of the buildlink3.mkjoerg1-3/+3
files, not over and over again.
2008-09-17Use external libffi to make it usable on amd64. Fix part of a regressionjoerg4-2/+60
test, I have no idea about the remaining test case though. Bump revision.
2008-04-25Update PYTHON_VERSIONS_COMPATIBLEjoerg1-2/+1
- assume that Python 2.4 and 2.5 are compatible and allow checking for fallout. - remove PYTHON_VERSIONS_COMPATIBLE that are obsoleted by the 2.3+ default. Modify the others to deal with the removals.
2007-07-13-update to 1.0.2drochner4-7/+31
changes: bugfixes -add a bl3 file
2006-12-06Doesn't support Python < 2.3.joerg1-1/+2
2006-12-04Enable to compile on powerpc-*-netbsd, fixes PR 35181.obache2-3/+12
2006-12-01Add DragonFly support.joerg3-1/+37
2006-10-17add test targetdrochner1-1/+4
2006-10-13ctypes is an advanced ffi (Foreign Function Interface) package for Pythonepg4-0/+254
2.3 and higher. ctypes allows to call functions exposed from dlls/shared libraries and has extensive facilities to create, access and manipulate simple and complicated C data types in Python - in other words: wrap libraries in pure Python. It is even possible to implement C callback functions in pure Python.