diff options
author | joerg <joerg@pkgsrc.org> | 2013-09-10 14:22:29 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2013-09-10 14:22:29 +0000 |
commit | c813f1100c0c766919e7427b017d70d4d13f3995 (patch) | |
tree | 16c9b2bb05d2aa3b5f9996730ab61cddf5e3089a /lang/python33 | |
parent | 29b8e2b19b149eaa52698859c6d3c6ef21f62fdc (diff) | |
download | pkgsrc-c813f1100c0c766919e7427b017d70d4d13f3995.tar.gz |
Always pass rpath argument with -Wl prefix, especially if clang is not called
gcc. Bump revision.
Diffstat (limited to 'lang/python33')
-rw-r--r-- | lang/python33/Makefile | 4 | ||||
-rw-r--r-- | lang/python33/distinfo | 3 | ||||
-rw-r--r-- | lang/python33/patches/patch-Lib_distutils_unixccompiler.py | 13 |
3 files changed, 17 insertions, 3 deletions
diff --git a/lang/python33/Makefile b/lang/python33/Makefile index 24d54b079eb..9fd26f51309 100644 --- a/lang/python33/Makefile +++ b/lang/python33/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.10 2013/08/09 10:54:17 drochner Exp $ +# $NetBSD: Makefile,v 1.11 2013/09/10 14:22:30 joerg Exp $ .include "dist.mk" -PKGREVISION= 1 +PKGREVISION= 2 PKGNAME= python33-${PY_DISTVERSION} CATEGORIES= lang python diff --git a/lang/python33/distinfo b/lang/python33/distinfo index a3c2160e5e9..b2e18790474 100644 --- a/lang/python33/distinfo +++ b/lang/python33/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.5 2013/08/09 10:54:17 drochner Exp $ +$NetBSD: distinfo,v 1.6 2013/09/10 14:22:30 joerg Exp $ SHA1 (Python-3.3.2.tar.bz2) = b28c36a9752b690059dc6df4fb9b4ec9d6c5708a RMD160 (Python-3.3.2.tar.bz2) = 7383734cbbd9e15b5d883063e1266abf368fd8e4 Size (Python-3.3.2.tar.bz2) = 13983134 bytes +SHA1 (patch-Lib_distutils_unixccompiler.py) = 39cb8d1e1e3e76e2b6b5dbc1a6b5e0815300b2ce SHA1 (patch-aa) = 99ebcbbfc53b855a32b424dec27012e1e969c3d0 SHA1 (patch-ab) = 1c0a25bf7ec6ee76e84c799619ec7cd8910f16e1 SHA1 (patch-ah) = bb43aaab260935a5a0d5e7ce1ccc30f4832cab1d diff --git a/lang/python33/patches/patch-Lib_distutils_unixccompiler.py b/lang/python33/patches/patch-Lib_distutils_unixccompiler.py new file mode 100644 index 00000000000..2bfd3e0fb29 --- /dev/null +++ b/lang/python33/patches/patch-Lib_distutils_unixccompiler.py @@ -0,0 +1,13 @@ +$NetBSD: patch-Lib_distutils_unixccompiler.py,v 1.1 2013/09/10 14:22:30 joerg Exp $ + +--- Lib/distutils/unixccompiler.py.orig 2013-05-15 16:32:54.000000000 +0000 ++++ Lib/distutils/unixccompiler.py +@@ -232,7 +232,7 @@ class UnixCCompiler(CCompiler): + elif sys.platform[:7] == "irix646" or sys.platform[:6] == "osf1V5": + return ["-rpath", dir] + else: +- if self._is_gcc(compiler): ++ if True: + # gcc on non-GNU systems does not need -Wl, but can + # use it anyway. Since distutils has always passed in + # -Wl whenever gcc was used in the past it is probably |