[146201] trunk/dports/lang

blair at macports.org blair at macports.org
Tue Mar 1 14:57:07 PST 2016


Revision: 146201
          https://trac.macports.org/changeset/146201
Author:   blair at macports.org
Date:     2016-03-01 14:57:07 -0800 (Tue, 01 Mar 2016)
Log Message:
-----------
python{24,25,26,27,31,32,33,34,35: bump revision to recompile after openssl deleted _SSLv2_method symbol.

I observed this with Python 2.7 and 3.5, so assuming it affects all
Python versions:

$ /opt/local/bin/python
Python 3.5.1 (default, Dec 13 2015, 13:03:13) 
[GCC 4.2.1 Compatible Apple LLVM 7.0.2 (clang-700.1.81)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
Setting tab completion.
>>> import ssl
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/opt/local/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/ssl.py", line 98, in <module>
    import _ssl             # if we can't import it, let the error propagate
ImportError: dlopen(/opt/local/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_ssl.cpython-35m-darwin.so, 2): Symbol not found: _SSLv2_method
  Referenced from: /opt/local/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_ssl.cpython-35m-darwin.so
  Expected in: /opt/local/lib/libssl.1.0.0.dylib
 in /opt/local/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/lib-dynload/_ssl.cpython-35m-darwin.so

Modified Paths:
--------------
    trunk/dports/lang/python24/Portfile
    trunk/dports/lang/python25/Portfile
    trunk/dports/lang/python26/Portfile
    trunk/dports/lang/python27/Portfile
    trunk/dports/lang/python31/Portfile
    trunk/dports/lang/python32/Portfile
    trunk/dports/lang/python33/Portfile
    trunk/dports/lang/python34/Portfile
    trunk/dports/lang/python35/Portfile

Modified: trunk/dports/lang/python24/Portfile
===================================================================
--- trunk/dports/lang/python24/Portfile	2016-03-01 22:54:20 UTC (rev 146200)
+++ trunk/dports/lang/python24/Portfile	2016-03-01 22:57:07 UTC (rev 146201)
@@ -5,7 +5,7 @@
 
 name                    python24
 version                 2.4.6
-revision                10
+revision                11
 set major               [lindex [split $version .] 0]
 set branch              [join [lrange [split ${version} .] 0 1] .]
 categories              lang

Modified: trunk/dports/lang/python25/Portfile
===================================================================
--- trunk/dports/lang/python25/Portfile	2016-03-01 22:54:20 UTC (rev 146200)
+++ trunk/dports/lang/python25/Portfile	2016-03-01 22:57:07 UTC (rev 146201)
@@ -6,7 +6,7 @@
 
 name                    python25
 version                 2.5.6
-revision                5
+revision                6
 
 set branch              [join [lrange [split ${version} .] 0 1] .]
 categories              lang

Modified: trunk/dports/lang/python26/Portfile
===================================================================
--- trunk/dports/lang/python26/Portfile	2016-03-01 22:54:20 UTC (rev 146200)
+++ trunk/dports/lang/python26/Portfile	2016-03-01 22:57:07 UTC (rev 146201)
@@ -7,7 +7,7 @@
 name                    python26
 # Remember to keep py26-tkinter and py26-gdbm's versions sync'd with this
 version                 2.6.9
-revision                3
+revision                4
 set major               [lindex [split $version .] 0]
 set branch              [join [lrange [split ${version} .] 0 1] .]
 categories              lang

Modified: trunk/dports/lang/python27/Portfile
===================================================================
--- trunk/dports/lang/python27/Portfile	2016-03-01 22:54:20 UTC (rev 146200)
+++ trunk/dports/lang/python27/Portfile	2016-03-01 22:57:07 UTC (rev 146201)
@@ -8,7 +8,7 @@
 epoch               2
 # Remember to keep py27-tkinter and py27-gdbm's versions sync'd with this
 version             2.7.11
-revision            1
+revision            2
 
 set major           [lindex [split $version .] 0]
 set branch          [join [lrange [split ${version} .] 0 1] .]

Modified: trunk/dports/lang/python31/Portfile
===================================================================
--- trunk/dports/lang/python31/Portfile	2016-03-01 22:54:20 UTC (rev 146200)
+++ trunk/dports/lang/python31/Portfile	2016-03-01 22:57:07 UTC (rev 146201)
@@ -8,7 +8,7 @@
 epoch                   1
 # Remember to keep py31-tkinter and py31-gdbm's versions sync'd with this
 version                 3.1.5
-revision                3
+revision                4
 set major               [lindex [split $version .] 0]
 set branch              [join [lrange [split ${version} .] 0 1] .]
 categories              lang

Modified: trunk/dports/lang/python32/Portfile
===================================================================
--- trunk/dports/lang/python32/Portfile	2016-03-01 22:54:20 UTC (rev 146200)
+++ trunk/dports/lang/python32/Portfile	2016-03-01 22:57:07 UTC (rev 146201)
@@ -8,7 +8,7 @@
 epoch                   20120412
 # Remember to keep py32-tkinter and py32-gdbm's versions sync'd with this
 version                 3.2.6
-revision                2
+revision                3
 
 set major               [lindex [split $version .] 0]
 set branch              [join [lrange [split ${version} .] 0 1] .]

Modified: trunk/dports/lang/python33/Portfile
===================================================================
--- trunk/dports/lang/python33/Portfile	2016-03-01 22:54:20 UTC (rev 146200)
+++ trunk/dports/lang/python33/Portfile	2016-03-01 22:57:07 UTC (rev 146201)
@@ -8,7 +8,7 @@
 
 # Remember to keep py33-tkinter and py33-gdbm's versions sync'd with this
 version                 3.3.6
-revision                5
+revision                6
 
 epoch                   20141012
 

Modified: trunk/dports/lang/python34/Portfile
===================================================================
--- trunk/dports/lang/python34/Portfile	2016-03-01 22:54:20 UTC (rev 146200)
+++ trunk/dports/lang/python34/Portfile	2016-03-01 22:57:07 UTC (rev 146201)
@@ -8,6 +8,7 @@
 
 # Remember to keep py34-tkinter and py34-gdbm's versions sync'd with this
 version                 3.4.4
+revision                1
 
 epoch                   20151221
 

Modified: trunk/dports/lang/python35/Portfile
===================================================================
--- trunk/dports/lang/python35/Portfile	2016-03-01 22:54:20 UTC (rev 146200)
+++ trunk/dports/lang/python35/Portfile	2016-03-01 22:57:07 UTC (rev 146201)
@@ -8,6 +8,7 @@
 
 # Remember to keep py35-tkinter and py35-gdbm's versions sync'd with this
 version                 3.5.1
+revision                1
 
 epoch                   20151206
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20160301/a906ef31/attachment.html>


More information about the macports-changes mailing list