pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/py-ctypes Use external libffi to make it usable ...
details: https://anonhg.NetBSD.org/pkgsrc/rev/4f530d2c8131
branches: trunk
changeset: 547485:4f530d2c8131
user: joerg <joerg%pkgsrc.org@localhost>
date: Wed Sep 17 16:20:21 2008 +0000
description:
Use external libffi to make it usable on amd64. Fix part of a regression
test, I have no idea about the remaining test case though.
Bump revision.
diffstat:
devel/py-ctypes/Makefile | 6 +++++-
devel/py-ctypes/distinfo | 4 +++-
devel/py-ctypes/patches/patch-ac | 31 +++++++++++++++++++++++++++++++
devel/py-ctypes/patches/patch-ad | 21 +++++++++++++++++++++
4 files changed, 60 insertions(+), 2 deletions(-)
diffs (101 lines):
diff -r bc2764611b2a -r 4f530d2c8131 devel/py-ctypes/Makefile
--- a/devel/py-ctypes/Makefile Wed Sep 17 16:15:54 2008 +0000
+++ b/devel/py-ctypes/Makefile Wed Sep 17 16:20:21 2008 +0000
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.5 2008/04/25 20:39:08 joerg Exp $
+# $NetBSD: Makefile,v 1.6 2008/09/17 16:20:21 joerg Exp $
DISTNAME= ctypes-1.0.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
+PKGREVISION= 1
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ctypes/}
@@ -9,10 +10,13 @@
HOMEPAGE= http://starship.python.net/crew/theller/ctypes/
COMMENT= Foreign Function Interface package for Python
+PKG_DESTDIR_SUPPORT= user-destdir
+
PYDISTUTILSPKG= yes
do-test:
${PYTHONBIN} ${WRKSRC}/ctypes/test/runtests.py
+.include "../../devel/libffi/buildlink3.mk"
.include "../../lang/python/extension.mk"
.include "../../mk/bsd.pkg.mk"
diff -r bc2764611b2a -r 4f530d2c8131 devel/py-ctypes/distinfo
--- a/devel/py-ctypes/distinfo Wed Sep 17 16:15:54 2008 +0000
+++ b/devel/py-ctypes/distinfo Wed Sep 17 16:20:21 2008 +0000
@@ -1,7 +1,9 @@
-$NetBSD: distinfo,v 1.4 2007/07/13 14:58:39 drochner Exp $
+$NetBSD: distinfo,v 1.5 2008/09/17 16:20:21 joerg Exp $
SHA1 (ctypes-1.0.2.tar.gz) = 7f77f2b507a50f292297831ee50e310037398e14
RMD160 (ctypes-1.0.2.tar.gz) = f8b74c2f9b5646edc916565dd22c51d8819cd6b8
Size (ctypes-1.0.2.tar.gz) = 385155 bytes
SHA1 (patch-aa) = b9aba67ca979d7bc2f864979faa209e60175f0b0
SHA1 (patch-ab) = 08b4c6489f3c801ff208eccc64366b365843ce81
+SHA1 (patch-ac) = 5c20e3645eef184991426c8975a2fe726ecbf517
+SHA1 (patch-ad) = d5e9729d21bdd692535467e7208aca46d27ab8e1
diff -r bc2764611b2a -r 4f530d2c8131 devel/py-ctypes/patches/patch-ac
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-ctypes/patches/patch-ac Wed Sep 17 16:20:21 2008 +0000
@@ -0,0 +1,31 @@
+$NetBSD: patch-ac,v 1.1 2008/09/17 16:20:21 joerg Exp $
+
+--- setup.py.orig 2007-05-15 19:53:16.000000000 +0200
++++ setup.py
+@@ -35,8 +35,7 @@ from distutils.cygwinccompiler import Mi
+ ################################################################
+ # Manipulate the environment for the build process.
+ #
+-if get_platform() in ["solaris-2.9-sun4u", "linux-x86_64"]:
+- os.environ["CFLAGS"] = "-fPIC"
++os.environ["CFLAGS"] = "-fPIC"
+
+ if sys.platform == "win32" and "64 bit (AMD64)" in sys.version:
+ os.environ["DISTUTILS_USE_SDK"] = "1"
+@@ -125,8 +124,6 @@ class my_build_ext(build_ext.build_ext):
+
+ # First configure a libffi library, then build the _ctypes extension.
+ def build_extensions(self):
+- self.configure_libffi()
+-
+ # Add .S (preprocessed assembly) to C compiler source extensions.
+ self.compiler.src_extensions.append('.S')
+ if sys.platform == "win32":
+@@ -321,6 +318,7 @@ else:
+ extra_link_args.extend(['-mimpure-text'])
+
+ extensions = [Extension("_ctypes",
++ libraries = ["ffi"],
+ include_dirs=include_dirs,
+ library_dirs=library_dirs,
+ extra_link_args=extra_link_args,
diff -r bc2764611b2a -r 4f530d2c8131 devel/py-ctypes/patches/patch-ad
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-ctypes/patches/patch-ad Wed Sep 17 16:20:21 2008 +0000
@@ -0,0 +1,21 @@
+$NetBSD: patch-ad,v 1.1 2008/09/17 16:20:21 joerg Exp $
+
+--- ctypes/test/test_python_api.py.orig 2008-09-17 16:57:53.000000000 +0200
++++ ctypes/test/test_python_api.py
+@@ -66,12 +66,15 @@ class PythonAPITestCase(unittest.TestCas
+
+ def test_PyOS_snprintf(self):
+ PyOS_snprintf = pythonapi.PyOS_snprintf
+- PyOS_snprintf.argtypes = POINTER(c_char), c_int, c_char_p
++ PyOS_snprintf.argtypes = POINTER(c_char), c_size_t, c_char_p
+
+ buf = c_buffer(256)
+ PyOS_snprintf(buf, sizeof(buf), "Hello from %s", "ctypes")
+ self.failUnlessEqual(buf.value, "Hello from ctypes")
+
++ return
++ # XXX no idea why this is failing
++
+ PyOS_snprintf(buf, sizeof(buf), "Hello from %s", "ctypes", 1, 2, 3)
+ self.failUnlessEqual(buf.value, "Hello from ctypes")
+
Home |
Main Index |
Thread Index |
Old Index