summaryrefslogtreecommitdiff
path: root/lang/python27/files/extra-patch-setup.py
diff options
context:
space:
mode:
authorRuslan Makhmatkhanov <rm@FreeBSD.org>2013-05-17 04:17:22 +0000
committerRuslan Makhmatkhanov <rm@FreeBSD.org>2013-05-17 04:17:22 +0000
commit11bf569497858a71d84e85105a6248a789725bc8 (patch)
tree2d90e75b4dd432723e621b65ad4e2e51b8a4e421 /lang/python27/files/extra-patch-setup.py
parent- Change option OCC (build with opencascade libraries) to default to on. (diff)
- update to latest upstream versions:
. lang/python27: 2.7.3 -> 2.7.5 . lang/python32: 3.2.3 -> 3.2.4 . lang/python33: 3.3.0 -> 3.3.1 - update Mk/bsd.python.mk with new versions - mark lang/python26 and lang/python31 as deprecated (set them to upstream EoL dates) - update docs (lang/python-doc-html) - align databases/py-bsddb patch for python27 - most of it was applied upstream. Raise BDB version to 4.3 atleast, according to upstream requirements. Many thanks to Martin (miwi) for his time on this update. PR: 178506 Submitted by: rm (myself) Exp-run by: portmgr (miwi) - revert erroneous threads patch in lang/python26 and lang/python27, that was added after ports/131080. It was rejected upstream, because it's not actually a bug, but misuse. Gabor Pali (pgj) in collaboration with Kubilay Kocak (koobs) did an independent investigation regard the issue. See here for details: http://lists.freebsd.org/pipermail/freebsd-python/2013-April/005376.html PR: 153167 Submitted by: Duncan Findlay <duncan@duncf.ca> Reported by: pgj/koobs (at python@ ML) Exp-run by: portmgr (miwi)
Diffstat (limited to 'lang/python27/files/extra-patch-setup.py')
-rw-r--r--lang/python27/files/extra-patch-setup.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/lang/python27/files/extra-patch-setup.py b/lang/python27/files/extra-patch-setup.py
index 98fd1a8b3621..63e7f032e336 100644
--- a/lang/python27/files/extra-patch-setup.py
+++ b/lang/python27/files/extra-patch-setup.py
@@ -1,11 +1,11 @@
---- setup.py.bak 2010-08-15 14:57:00.347134100 +0800
-+++ setup.py 2010-08-15 15:00:06.019643300 +0800
-@@ -1402,10 +1402,22 @@
+--- setup.py.orig 2013-04-07 11:07:43.000000000 +0400
++++ setup.py 2013-04-07 11:16:36.000000000 +0400
+@@ -1544,10 +1544,22 @@
macros = dict()
libraries = []
-- elif platform in ('freebsd4', 'freebsd5', 'freebsd6', 'freebsd7', 'freebsd8', 'freebsd9', 'freebsd10'):
-+ elif platform in ('freebsd4', 'freebsd5', 'freebsd6'):
+- elif host_platform in ('freebsd4', 'freebsd5', 'freebsd6', 'freebsd7', 'freebsd8', 'freebsd9', 'freebsd10'):
++ elif host_platform in ('freebsd4', 'freebsd5', 'freebsd6'):
# FreeBSD's P1003.1b semaphore support is very experimental
# and has many known problems. (as of June 2008)
- macros = dict()
@@ -16,7 +16,7 @@
+ )
+ libraries = []
+
-+ elif platform in ('freebsd7', 'freebsd8', 'freebsd9', 'freebsd10'):
++ elif host_platform in ('freebsd7', 'freebsd8', 'freebsd9', 'freebsd10'):
+ macros = dict( # FreeBSD 7+
+ HAVE_SEM_OPEN=1,
+ HAVE_SEM_TIMEDWAIT=1,
@@ -24,4 +24,4 @@
+ )
libraries = []
- elif platform.startswith('openbsd'):
+ elif host_platform.startswith('openbsd'):