summaryrefslogtreecommitdiff
path: root/lang/python23
diff options
context:
space:
mode:
authorjoerg <joerg>2005-11-16 19:18:58 +0000
committerjoerg <joerg>2005-11-16 19:18:58 +0000
commit9043e1fdd47075d6bd1a7953cf56f29cc0ec5378 (patch)
treeeaca766da8d53d558f6f53610587f0f7bd170794 /lang/python23
parent4ea5015db5997b9bd6863a006f465307bf33b61c (diff)
downloadpkgsrc-9043e1fdd47075d6bd1a7953cf56f29cc0ec5378.tar.gz
Fix Python's makesetup script to treat -pthread as linker flag.
This is needed for databases/py-psycopg at least to compile properly. Since the installed version changed, bump revision.
Diffstat (limited to 'lang/python23')
-rw-r--r--lang/python23/Makefile4
-rw-r--r--lang/python23/distinfo3
-rw-r--r--lang/python23/patches/patch-ac12
3 files changed, 16 insertions, 3 deletions
diff --git a/lang/python23/Makefile b/lang/python23/Makefile
index e875065fd46..128224f9730 100644
--- a/lang/python23/Makefile
+++ b/lang/python23/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.30 2005/10/01 19:36:01 recht Exp $
+# $NetBSD: Makefile,v 1.31 2005/11/16 19:18:59 joerg Exp $
#
PKGNAME= python23-2.3.5
-PKGREVISION= 3
+PKGREVISION= 4
CONFLICTS+= python-[0-9]*
diff --git a/lang/python23/distinfo b/lang/python23/distinfo
index c5046c64b6a..315e5310a0e 100644
--- a/lang/python23/distinfo
+++ b/lang/python23/distinfo
@@ -1,10 +1,11 @@
-$NetBSD: distinfo,v 1.35 2005/10/23 20:05:33 rillig Exp $
+$NetBSD: distinfo,v 1.36 2005/11/16 19:18:59 joerg Exp $
SHA1 (Python-2.3.5.tgz) = 2729d068f5d1abe7b743f32012d4f7c4b0508a3c
RMD160 (Python-2.3.5.tgz) = 2104a393ca7c91b72b990ced53a0da752ccf42ef
Size (Python-2.3.5.tgz) = 8535749 bytes
SHA1 (patch-aa) = dd8f89952d7f40c9a979e362758775f093e047bc
SHA1 (patch-ab) = 111d7fa8adbb7001bacad36e3bdbe23ae6ce8b9b
+SHA1 (patch-ac) = 0ae5b3d547c7dbe1366c5ae6c60c11516e4550b8
SHA1 (patch-ad) = c8f6ea08e68dae3bd9ad639c38e74cf654c0b41e
SHA1 (patch-ae) = 3dcf150147333342b333871b41fe6fa92bced2d9
SHA1 (patch-af) = f161ce64bb1b318926bd9c534fe7050d7ddb636f
diff --git a/lang/python23/patches/patch-ac b/lang/python23/patches/patch-ac
new file mode 100644
index 00000000000..6384ad96ed5
--- /dev/null
+++ b/lang/python23/patches/patch-ac
@@ -0,0 +1,12 @@
+$NetBSD: patch-ac,v 1.3 2005/11/16 19:18:59 joerg Exp $
+
+--- Modules/makesetup.orig 2002-03-29 19:00:18.000000000 +0100
++++ Modules/makesetup
+@@ -164,6 +164,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' |
+ -rpath) libs="$libs $arg"; skip=libs;;
+ --rpath) libs="$libs $arg"; skip=libs;;
+ -[A-Zl]*) libs="$libs $arg";;
++ -pthread) libs="$libs $arg";;
+ *.a) libs="$libs $arg";;
+ *.so) libs="$libs $arg";;
+ *.sl) libs="$libs $arg";;