FreeBSD Bugzilla – Attachment 169596 Details for
Bug 208486
lang/python27 lang/python33 lang/python34 lang/python35: correct __FreeBSD_version check for ctype UTF-8 bug workaround
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Fix python issue 10910 for lang/python[27,33,34,35], with bump
lang__pythonXY-fix-issue10910-3.diff (text/plain), 5.92 KB, created by
Dimitry Andric
on 2016-04-23 12:27:38 UTC
(
hide
)
Description:
Fix python issue 10910 for lang/python[27,33,34,35], with bump
Filename:
MIME Type:
Creator:
Dimitry Andric
Created:
2016-04-23 12:27:38 UTC
Size:
5.92 KB
patch
obsolete
>Index: lang/python27/Makefile >=================================================================== >--- lang/python27/Makefile (revision 413606) >+++ lang/python27/Makefile (working copy) >@@ -2,7 +2,7 @@ > > PORTNAME= python27 > PORTVERSION= ${PYTHON_PORTVERSION} >-PORTREVISION= 1 >+PORTREVISION= 2 > CATEGORIES= lang python ipv6 > MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} > DISTNAME= Python-${PORTVERSION} >Index: lang/python27/files/patch-Include__pyport.h >=================================================================== >--- lang/python27/files/patch-Include__pyport.h (nonexistent) >+++ lang/python27/files/patch-Include__pyport.h (working copy) >@@ -0,0 +1,13 @@ >+--- Include/pyport.h.orig 2015-12-05 20:46:54.000000000 +0100 >++++ Include/pyport.h 2016-04-03 17:14:53.047412000 +0200 >+@@ -702,7 +702,9 @@ >+ >+ #ifdef __FreeBSD__ >+ #include <osreldate.h> >+-#if __FreeBSD_version > 500039 >++#if (__FreeBSD_version >= 500040 && __FreeBSD_version < 602113) || \ >++ (__FreeBSD_version >= 700000 && __FreeBSD_version < 700054) || \ >++ (__FreeBSD_version >= 800000 && __FreeBSD_version < 800001) >+ # define _PY_PORT_CTYPE_UTF8_ISSUE >+ #endif >+ #endif > >Property changes on: lang/python27/files/patch-Include__pyport.h >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: lang/python33/Makefile >=================================================================== >--- lang/python33/Makefile (revision 413606) >+++ lang/python33/Makefile (working copy) >@@ -2,7 +2,7 @@ > > PORTNAME= python33 > PORTVERSION= ${PYTHON_PORTVERSION} >-PORTREVISION= 3 >+PORTREVISION= 4 > CATEGORIES= lang python ipv6 > MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} > DISTNAME= Python-${PORTVERSION} >Index: lang/python33/files/patch-Include__pyport.h >=================================================================== >--- lang/python33/files/patch-Include__pyport.h (nonexistent) >+++ lang/python33/files/patch-Include__pyport.h (working copy) >@@ -0,0 +1,13 @@ >+--- Include/pyport.h.orig 2014-10-12 09:03:52.000000000 +0200 >++++ Include/pyport.h 2016-04-03 19:26:20.938539000 +0200 >+@@ -686,7 +686,9 @@ >+ >+ #ifdef __FreeBSD__ >+ #include <osreldate.h> >+-#if __FreeBSD_version > 500039 >++#if (__FreeBSD_version >= 500040 && __FreeBSD_version < 602113) || \ >++ (__FreeBSD_version >= 700000 && __FreeBSD_version < 700054) || \ >++ (__FreeBSD_version >= 800000 && __FreeBSD_version < 800001) >+ # define _PY_PORT_CTYPE_UTF8_ISSUE >+ #endif >+ #endif > >Property changes on: lang/python33/files/patch-Include__pyport.h >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: lang/python34/Makefile >=================================================================== >--- lang/python34/Makefile (revision 413606) >+++ lang/python34/Makefile (working copy) >@@ -3,7 +3,7 @@ > > PORTNAME= python34 > PORTVERSION= ${PYTHON_PORTVERSION} >-PORTREVISION= 1 >+PORTREVISION= 2 > CATEGORIES= lang python ipv6 > MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} > DISTNAME= Python-${PORTVERSION} >Index: lang/python34/files/patch-Include__pyport.h >=================================================================== >--- lang/python34/files/patch-Include__pyport.h (nonexistent) >+++ lang/python34/files/patch-Include__pyport.h (working copy) >@@ -0,0 +1,13 @@ >+--- Include/pyport.h.orig 2015-12-21 07:00:57.000000000 +0100 >++++ Include/pyport.h 2016-04-03 19:29:17.797369000 +0200 >+@@ -680,7 +680,9 @@ >+ >+ #ifdef __FreeBSD__ >+ #include <osreldate.h> >+-#if __FreeBSD_version > 500039 >++#if (__FreeBSD_version >= 500040 && __FreeBSD_version < 602113) || \ >++ (__FreeBSD_version >= 700000 && __FreeBSD_version < 700054) || \ >++ (__FreeBSD_version >= 800000 && __FreeBSD_version < 800001) >+ # define _PY_PORT_CTYPE_UTF8_ISSUE >+ #endif >+ #endif > >Property changes on: lang/python34/files/patch-Include__pyport.h >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: lang/python35/Makefile >=================================================================== >--- lang/python35/Makefile (revision 413606) >+++ lang/python35/Makefile (working copy) >@@ -3,7 +3,7 @@ > > PORTNAME= python > DISTVERSION= ${PYTHON_PORTVERSION} >-PORTREVISION= 1 >+PORTREVISION= 2 > CATEGORIES= lang python ipv6 > MASTER_SITES= PYTHON/ftp/python/${PYTHON_PORTVERSION} > PKGNAMESUFFIX= ${PYTHON_SUFFIX} >Index: lang/python35/files/patch-Include__pyport.h >=================================================================== >--- lang/python35/files/patch-Include__pyport.h (nonexistent) >+++ lang/python35/files/patch-Include__pyport.h (working copy) >@@ -0,0 +1,13 @@ >+--- Include/pyport.h.orig 2015-12-07 02:39:07.000000000 +0100 >++++ Include/pyport.h 2016-04-03 19:31:36.801717000 +0200 >+@@ -677,7 +677,9 @@ >+ >+ #ifdef __FreeBSD__ >+ #include <osreldate.h> >+-#if __FreeBSD_version > 500039 >++#if (__FreeBSD_version >= 500040 && __FreeBSD_version < 602113) || \ >++ (__FreeBSD_version >= 700000 && __FreeBSD_version < 700054) || \ >++ (__FreeBSD_version >= 800000 && __FreeBSD_version < 800001) >+ # define _PY_PORT_CTYPE_UTF8_ISSUE >+ #endif >+ #endif > >Property changes on: lang/python35/files/patch-Include__pyport.h >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 208486
:
168932
|
169578
| 169596